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.unmigrated-wiki-markup

form get_start_end_date. quote}

check

...

not

...

(

...

s_workdt

...

[

...

]

...

is

...

initial

...

).

...


...more

...

processing...

quote} endform.

instead do:

Wiki MarkupIf 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.