Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

...

instead do:

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

{quote}
perform get_start_end_date.

...


{quote}
endif.