Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin

Sample Code

Anchor
Decision
Decision
Decision

Don't place decision to execute in the subroutine

perform get_start_end_date.

form get_start_end_date.

...

check

not

(

s_workdt

\

[

\

]

is

initial

).


...more

processing...

endform.

instead do:

Wiki Markup If not ( s_workdt\[\] is initial ). {quote}

perform

...

get_start_end_date.

endif.

Anchor
Case Statement
Case Statement
Case Statement

Use CASE statement instead of IF...ELSEIF when possible (It is only possible in equality tests) {quote} endif.