We have a job which is released by a predecessor being completed. However we never want the job to be submitted between 3am and 4am. Is there an ESP parm that could be added to a job definition that would control this?
Component: ESP Workload Automation
Release: ALL
Add a selfcompleting task that would be released by the predecessor job.
EXAMPLE:
JOB JOBB
RUN TODAY
RELEASE JOBTASK
ENDJOB
JOB JOBTASK TASK PROCESS SELFCOMPLETING
RUN TODAY
IF %ESPATIME >= '03.00.00' AND %ESPATIME <= '04.00.00' THEN DO
ESP AJ JOBE RESET EARLYSUB('14.00.00') APPL(%ESPAPPL..%ESPAPGEN)
ENDDO
RELEASE JOBE
ENDJOB
JOB JOBE
RUN TODAY
ENDJOB