Hi Thanks for sharing videos , I have one question . If I want to run any particular step in jcl every Monday of the month if the Monday is holiday then next day which is Tuesday ...how to write using JCL .. Same step I want to run every mid of month as well ..like 15 .. if 15 is holiday then next working day .. Can you please help me on this ...
@Muthu_Saravanan_S3 жыл бұрын
This is not JCL stuff but scheduling stuff. Your installation have scheduler. You need to schedule this job on two SCHID - one every monday and one on mid of month. Scheduler takes care of Tuesday run if Monday holiday. JCL can have JID specific step. This answer may be generic as this is your scheduler specific. Kindly check with scheduler group and they can help you more exactly.
@anuragmishra67213 жыл бұрын
@@Muthu_Saravanan_S thanks for replying .., but I want to run job everyday but on Monday and mid of month I want to run special step which is present in JCL only which won't be required to run every cycle .
@Muthu_Saravanan_S3 жыл бұрын
@@anuragmishra6721 I have given sample considering CA-7. Here STEP02 runs only SCHDID = 11 whereas STEP01 for both schedule IDs. Hope this sample helps. But check with your schedule team. #JI,ID=(10,11) //MUSAT1 JOB (MUSA,P),'MUTHU' - - - - - - - - - - - - - - - - 9 L //************************************************* //STEP01 EXEC PROC1 //************************************************* #JI,ID=11 //************************************************* //STEP02 EXEC PROC2 //************************************************* #JEND