How to code a comment statement in a ESP Workload Automation event, procedure or init parm.
Release: All Releases
Component: ESP Workload Automation
In a procedure or an application, a comment statement is represented by /* or it may be enclosed between /* and */. This can be coded anywhere in a ESP procedure or in the initialization parameter data set. Use the COM statement when placing comments in an Event.
Example1:
APPL myappl
/* this is a comment about appl myappl */
JOB myjob
/* this is a comment */
RUN ANY /* this is a comment */
ENDJOB
Example2:
In an event, use the COM statement.
EVENT ID(PROD.JOBX)
COM THIS IS A COMMENT
SUBMIT 'PROD.JCL.CNTL(JOBX)'
ENDDEF