alguidelines/content/docs/NAVPatterns/3-cal-coding-guidelines/ux/confirm/index.md
2022-02-24 14:45:35 +01:00

555 B

+++ title = "CONFIRM" weight = 380 tags = ["C/AL"] categories = ["Best Practice"] +++ Always end CONFIRM with a question mark.

Bad code

ChangeAllOpenedEntriesQst@1000 : TextConst 'ENU=Do you want to change all open entries for every customer and vendor that are not blocked';
...
IF CONFIRM(ChangeAllOpenedEntriesQst,TRUE) THEN

Good code

ChangeAllOpenedEntriesQst@1000 : TextConst 'ENU=Do you want to change all open entries for every customer and vendor that are not blocked?';
...
IF CONFIRM(ChangeAllOpenedEntriesQst,TRUE) THEN