DUEOUT EXEC is triggering unexpectedly
search cancel

DUEOUT EXEC is triggering unexpectedly

book

Article ID: 136454

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

A job runs at 5 AM for 40 seconds.  At 6 AM the job receives message ESP6638I APPLMGR: APPL applname.397 JOB jobname LATE ENDING

JOB jobname              
  RUN DAILY                     
  CCCHK RC(5:4095) FAIL CONTINUE
  EARLYSUB 5AM
  DUEOUT EXEC 6AM          
ENDJOB                        

Event definition: 

EVENT ID(CYBER.EVENT1)  SYSTEM(ESPM)  REPLACE
SCHEDULE 06.00 DAILY STARTING SAT 31ST AUG 2019   
INVOKE 'ESP.PROCLIB(PROCNAME)'           
ENDDEF             

                                
                                          


Environment

Release : All

Component: ESP WORKLOAD AUTOMATION

Cause

                              

Resolution

The event is triggering at 6 AM, and the new application is loaded. It is picking up the DUEOUT of 6 AM for the current application generation. It is not triggering for the application/job that had completed at 5 AM. To correct the behavior adjust the DUEOUT time prior to 6 AM.

 

JOB jobname HOLD              
  RUN DAILY                     
  CCCHK RC(5:4095) FAIL CONTINUE
  EARLYSUB 5AM
  DUEOUT EXEC 5:59         
ENDJOB