alguidelines/content/NAVPatterns/3-cal-coding-guidelines/design/findset-findfirst-findlast/index.md
2022-02-05 19:44:44 +01:00

29 lines
476 B
Markdown

+++
title = "FINDSET FINDFIRST FINDLAST"
weight = 600
+++
FINDSET, FIND('+') or FIND('-') should only be used when NEXT is used and vice versa.
Bad code
IF Cust.FIND('-') THEN
ERROR(CustIsBlockErr)
Good code
IF Cust.FINDFIRST THEN
ERROR(CustIsBlockErr)
Bad code
IF Cust.FINDFIRST THEN
REPEAT
...
UNTIL Cust.NEXT = 0;
Good code
IF Cust.FINDSET THEN
REPEAT
...
UNTIL Cust.NEXT = 0;