How can we execute only one step in a job
Answers were Sorted based on User's Feedback
Answer / sravanthi
We cannot specify COND parameter for the first step in JCL.
So if there are many steps in JCL, we need to restart the
job from the required step. A null statement at the end of
this step can be given for running this step alone. If any
other step also need sto be run, then we can go for the COND
parameter instead of the null statement
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / mohammad
I think we have to use restart and cond parameter
at job card.i.e restart=stapname,cond(00,le).
This will execute only the step u need.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / suresh
Hi,
This can be achieved by two ways.
1. As Sravanthi mentioned - A null (/*) statement at the
end of this step can be given for running this step alone.
2. By using COND parameter in the second step. Like
//STEP2 EXEC PGM=EXAMPLE,COND=(0,LE,STEP1)
| Is This Answer Correct ? | 6 Yes | 0 No |
Hi,
Use cond=(0,LE) in jobcard and also specify
Restart=Stepname,the step you want to execute.
| Is This Answer Correct ? | 8 Yes | 3 No |
Answer / ram g
Assume that job has 100 steps ... want to execute only the
step 89 then
just give the following stmt in job card..
restart = stepname, cond=(0,le)
can achieve this in multiple ways..!
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ankur
hi
kamal.
i know that by IEBEDIT IT can be done....
//sysin dd *
edit type=exclude, stepname=(step01)
//
but we should try with cond...
i know cond = only in first skip or flush the 1st step ..
just check it...
bye
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / prashanth
hi, laxhmi,
we can execute only one step in a job by using
cond parameter, IEBEDIT utility program,
thanks & regards
prashanth
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / chaitanya
in the proc call statement, EXEC PROC, we need to use
stepname.COND=(0,LE) option
| Is This Answer Correct ? | 4 Yes | 2 No |
Which dd parameters are required?
In My job I have 15 procs.and in each proc i have 3 steps. i want to execute 3 step in proc 10.is it possible? if possible how?
Suppose there are 10 steps in a PROC, I want to execute only step5. How do you give the condition in the JCL that calls this PROC?
How To get the last record in VSAM file in cluster? and How can u get the ksds file records into ur cobol program ? Pls tell me about these two questions.
do we need to mention the location of catalogued procedure for each it's call in a single job?
Can you code instream data in a PROC ?
Is there a limit of 3273 DD statements for a JCL or for every EXEC step in a JCL?
If the COND parameter is specified in both the JOB and EXEC statements, which one will take precedence? If JOB takes priority and if all the conditions evaluate to false, then will the conditions on the EXEC step be evaluated next?
Can a PS file be read in reverse order?If so,how
How can a job send a status message to a tso user at the completion of a job?
what is A-MODE and R-MODE?
COND -> step1 . . step2, Step2, Executes if the CC of step1 is 0. But even if it is NOT 0 and if we dont give COND, will step2 be executed ?