I would like to increase the field length of the "Jurisdiction Code" field (Standard field in BC 365).
I thought that I could create a table extension as below and it would do it,
tableextension 50608 "DetlVendLedg" extends "Detailed Vendor Ledg. Entry"
{
fields
{
modify("Tax Jurisdiction Code")
{
Width = 15;
}
}
var
myInt: Integer;
}
This does not increase the field of the Jurisdiction code.
Am I missing a property ? I thought this was doable in the latest version of BC 365.
Thanks