DUEOUT Input Propagation Enhancement for ESP Workload Automation
search cancel

DUEOUT Input Propagation Enhancement for ESP Workload Automation

book

Article ID: 266707

calendar_today

Updated On:

Products

ESP Workload Automation

Issue/Introduction

This enhancement introduces propagation of dueout start time instead of dueout end time if requested.

It optimizes your monitoring activities to ensure that service-level agreements are met.




Environment

Component: ESP WORKLOAD AUTOMATION
Release:   12.0

Resolution

To turn on the dueout start propagation, code the following statement on the Application level: 


OPTIONS DUEOUTPROPAGATION(INPUT)

With this statement in effect, the dueout time to start the predecessors of a job will be propagated by ESP with the dueout time set by the user.

APPL DUEOUT                            
JCLLIB  ‘<your library>'             
OPTIONS DUEOUTPROPAGATION(INPUT)       
/* Overdue will be sent 1 minute later for FIRST late start
/* OPTIONS DUEOUTPROPAGATION                
/* Overdue will be sent 3 minutes later for FIRST late end

NOTIFY OVERDUE USERS(#####) ALERT(TST)
JOB FIRST HOLD                         
    DURATION 2              /* run time of 2 minutes*/             
    REL LAST                         
    RUN ANY                              
ENDJOB                                   

JOB LAST CRITICAL                     
  DURATION  2            /* run time of 2 minutes*/                      
  DUEOUT INPUT NOW PLUS 3 minutes         
  RUN ANY
ENDJOB

Additional Information