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

endform.}}

instead do:

Wiki Markup
{{If not ( s_workdt\[\] is initial ).}}
{{  perform get_start_end_date.}}
{{endif.}}