I have a JCL with 10 steps, want to execute first 5 steps
only, what are ways of doing it?is it possible to control
through JOB card?
Answers were Sorted based on User's Feedback
Answer / vidya
From 5th to 10th step, give COND parameter. Give the
condition as COND=(0,LE). As 0 is always less than or equal
to the return code of executing step it will bypass.
| Is This Answer Correct ? | 14 Yes | 2 No |
Answer / kaarthik
USE IEBEDIT utility to just execute the steps you want to
execute in it.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / zos13
One more Answer:
If you are good with IDCAMS, then in step5 or (add 1 more step
With name step5r after step 5 and before step6) supply
//step5r exec pgm=IDCAMS
//sysin dd *
SET MAXCC = 16
/*
in Job card, use : COND=(16,EQ).
It will execute till step5 successfully, at step5r it will acquire MAXCC=16, Condition in JOB card is true, all steps will be bypassed after5.
**If you can't create new STEP5r, then please use SYSIN DD * in step5, it is same thing*****
You may also use RC in place of MAXCC.
Please reply here if it works for you or at: thespider390@hotmail.com
| Is This Answer Correct ? | 0 Yes | 0 No |
There are two input sorting files and there is a need to create one sort out file which contains data of both input files. What is the sort card for this. Write a sample JCL for this using a control card?
How to find out the number of records in a file using JCL
CAN ANYONE TELL ME WHAT IS "JOB-CARD"
My JCL have five steps & I created new versions of GDG in first step through fourth step & fifth step I was refered Step one GDG version. My JCL got abend at 4th step and how I can restart my JCL Please let me know the answers. //STEP1 EXEC GDG1(+1) DISP=(NEW) //STEP2 EXEC GDG1(+2) DISP=(NEW) //STEP3 EXEC GDG1(+3) DISP=(NEW) //STEP4 EXEC GDG1(+4) DISP=(NEW) //STEP5 EXEC GDG1(+1) DISP=(OLD)
11 Answers HCL, IBM, L&T, TCS,
How to submit a jcl from cics?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
Is there a way to check for an empty file in JCL other than using IEBCOMPR and the command PRINT COUNT(1)?
Explain about LMCOPY -
wht is step lib n job lib ? where can we code joblib n steplib ?
In my JCL 10 Steps Will Be there Now i want to execute step05 And step06. How to Give the Cond?
Write a jcl to execute a job by 7 a.m on Jan 20,1986 ?
How is the record format of an output dataset specified?