Closed jwikman closed 5 years ago
A variable of datatype Query ends up in the bottom instead of after other object type variables.
MyTable: Record "MyTable"; MyCodeunit: Codeunit "MyCodeunit"; MyBool: Boolean; MyQuery: Query "MyQuery";
Should reorder as
MyTable: Record "MyTable"; MyCodeunit: Codeunit "MyCodeunit"; MyQuery: Query "MyQuery"; MyBool: Boolean;
Fixed in next release
A variable of datatype Query ends up in the bottom instead of after other object type variables.
Should reorder as