How to change the Late time for all events in a batch job.
Release: 5.1
Component: FAQS-Automated Systems Operation
Use JCLEVENT.
// EXEC JCLEVNT,SIZE=JCLEVNT
FILE MASTER
UPDATE=YES
SELECT *
REPLACE LATE : 3700
REPLACE ABORT : 3900
SELECT * means ALL events
SELECT GSA* (GROUP EQ GLA435): Change all events starting with GSA in group GLA435.
SELECT * (GROUP EQ GLA435): Change all events in group GLA435
This job can be run with UPDATE=NO. The output will show what changes will be made.