We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support adding a prefix for Fields with arrays as value: e.g. for Dimensions.
field(ShortcutDimCode3; ShortcutDimCode[3]) { ApplicationArea = Dimensions; CaptionClass = '1,2,3'; TableRelation = "Dimension Value".Code WHERE("Global Dimension No." = CONST(3), "Dimension Value Type" = CONST(Standard), Blocked = CONST(false)); Visible = DimVisible3; trigger OnValidate() begin ValidateShortcutDimension(3); end; } field(ShortcutDimCode4; ShortcutDimCode[4]) { ApplicationArea = Dimensions; CaptionClass = '1,2,4'; TableRelation = "Dimension Value".Code WHERE("Global Dimension No." = CONST(4), "Dimension Value Type" = CONST(Standard), Blocked = CONST(false)); Visible = DimVisible4; trigger OnValidate() begin ValidateShortcutDimension(4); end; }
The text was updated successfully, but these errors were encountered:
waldo1001#260 Add Support for Arrays on Page Extensions
8f36db3
#260 Add Support for Arrays on Page Extensions (#261)
04bf557
* #260 Add Support for Arrays on Page Extensions * remove spaces
No branches or pull requests
Support adding a prefix for Fields with arrays as value:
e.g. for Dimensions.
The text was updated successfully, but these errors were encountered: