Comment statement in ESP Workload Automation.
search cancel

Comment statement in ESP Workload Automation.

book

Article ID: 23768

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

How to code a comment statement in a ESP Workload Automation event, procedure or init parm.

 

Environment

Release: All Releases
Component: ESP Workload Automation

Resolution

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