You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
A warning should come up when a FlowField (which is Editable = false) got modified in code.
FlowField
field(10; "Some FlowField"; Integer) { Editable = false; FieldClass = FlowField; CalcFormula = [...]; }
(1) Bad code
Rec.ModifyAll("Some FlowField",1337);
(2) Bad code
Rec."Some FlowField" := 1337;
(3) Bad code
Rec.Validate("Some FlowField",1337);
Warning message something like:
"Do not define, validate or modify a FlowField which is not editable."
Beta Was this translation helpful? Give feedback.
All reactions