If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?
Answers were Sorted based on User's Feedback
Answer / santhosh g.j.
If A PROC HAS steps, which are like step2,step3,step4,step5
and i want to execute only step3 then how do we need to
code jcl using IEBEDIT.
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / samay simant
Hi,
I recommend the following steps:
1)Restart=step3 in the job card
2)cond=even in 4th step,what will happen it will bypass
this step even if 3rd step abends.
| Is This Answer Correct ? | 0 Yes | 2 No |
Answer / syntel
You can Use RESTART in job cards.
RESTART=JOBSTEPNAME.PROCSTEPNAME
Thanks
| Is This Answer Correct ? | 4 Yes | 31 No |
what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?
how to code instream data in procedure?
Is condition checking possible in jcl?
what are JCLLIB and STEPLIB in JCL?
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
Can we change a FB file to VB file in JCL? Please help
Please give me the coding for converting VB to FB and FB to VB
Explain about LMMLIST�list a library's members
there are 10 steps in jcl how to execute the steps from step2 to step8 only
wt will happen to the step of a job if u code COND=ONLY
Name the system library from which modules are retrieved at execution
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?