Hi,
Could I get DELAY syntax in a JCL? Where to put this? Is in part of the JOB card / parm CARD? I have got the below information, but not really helpful, I want the exact delay statement in the JCL.
My findings follows,
Delayed Job Execution:
To run a job at a specific time or on a specific date, use the deadline parameter of the JES3 MAIN statement. For a complete discussion, see the BookManager Shelf Name IEA2B630 - z/OS V1R4.0 MVS JCL Reference. In order for the deadline parameter to produce the desired result, you must use it in class DELAY. Since this job class is longer than a single character, you must specify it on the MAIN statement. The following example will run a job at 11:00 p.m.:
//*MAIN CLASS=DELAY,DEADLINE=(2300,A)
The A following the time of day in the above example specifies the algorithm that JES3 is to use to try to schedule the job into execution. A is the only value that you can specify.
DELAY
How to make a JOB execute at a later time and date.
Kota