Sample Code
Anchor | ||||
---|---|---|---|---|
|
Don't place decision to execute in the subroutine
perform get_start_end_date.
form get_start_end_date. Wiki Markup
check
...
not
...
(
...
s_workdt
...
[
...
]
...
is
...
initial
...
).
...
...more
...
processing...
endform.
instead do:unmigrated-wiki-markup
If not ( s_workdt\[\] is initial ).
perform
...
get_start_end_date.
endif.
Anchor | ||||
---|---|---|---|---|
|
Use CASE statement instead of IF...ELSEIF when possible (It is only possible in equality tests) endif.