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
When I would use short names for documents like this: it gives me compile errors: Full mdal:
solution "Name" { Prefix = "PRE"; master "Container" { ShortName = "Cont."; fields { template("Name"; Name) template("Dimension"; Dimensions) } cardPage { group("General") { field("Name") } } listPage { field("Name") } } document "Shipment" { ShortName = "Ship"; header "Shipment Header" { ShortName = "Ship Header"; StatusCaptions = ["Open", "Released"]; fields { include("ContainerNo"; "Container"."No.") } } line "Shipment Line" { ShortName = "Ship Line"; fields { field("Quantity"; Decimal) } listPartPage { field("Quantity") } } } ledgerEntry "Container Ledger Entry" { ShortName = "Cont. Ledger Entry"; fields { include("ContainerNo"; "Container"."No.") field("Quantity"; Decimal) } listPage { field("Quantity") } } }
The text was updated successfully, but these errors were encountered:
2245ab0
Pushed a fix for this issue. It will be made available in the next release of mdAL (and its corresponding VS Code extension).
Sorry, something went wrong.
No branches or pull requests
When I would use short names for documents like this:
it gives me compile errors:
Full mdal:
The text was updated successfully, but these errors were encountered: