First pass conversion of NAV Patterns
This commit is contained in:
parent
1341938262
commit
6b32107a72
325 changed files with 11946 additions and 0 deletions
21
content/NAVPatterns/end-else-pair/index.md
Normal file
21
content/NAVPatterns/end-else-pair/index.md
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
+++
|
||||
title = "end-else-pair.md"
|
||||
weight = 540
|
||||
+++
|
||||
The END ELSE pair should always appear on the same line.
|
||||
Bad code
|
||||
|
||||
IF OppEntry.FIND('-') THEN
|
||||
IF SalesCycleStage.FIND('-') THEN BEGIN
|
||||
...
|
||||
END
|
||||
ELSE
|
||||
...
|
||||
|
||||
Good code
|
||||
|
||||
IF OppEntry.FIND('-') THEN
|
||||
IF SalesCycleStage.FIND('-') THEN BEGIN
|
||||
...
|
||||
END ELSE
|
||||
...
|
||||
Loading…
Add table
Add a link
Reference in a new issue