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 QSAM error usually when it is occurs?
A. Job Abended in STEP03. Now run job again to execute STEP03, STEP04 (STEP01,STEP02 should not execute again)
3 Answers Cap Gemini, CSC, Xchanging,
If I update one or more members in a pds in the step 1, how can I reach these new contents to be used in the step 2 of the same job? To start a new job via intrdr is not satisfactory, because I must solve this problem in one job.
How many types of libraries are there in JCL ?
GDGs can be CREATED (not COPIED) only on DASD and NOT on tape drives ? Is it True ?
can we modify the code in copy book? if it possible how to submit ofter the modification.
Is there any command to check wether the ps file is in sorted order?
a jcl has 2 steps. How to code the jcl such that if step1 abends, then step2 runs. Else, job terminates with step1?
I have 5 steps in my job. say s1, s2, s3, s4, s5 //s1 exec ............. //s2 exec ............ //s3 exec .......... //s4 exec ........ //s5 exec ............... my question is i want to exeute only s2 and s4 steps... please advice me how to do this:
Explain about REXX
When cursor is not closed what is the error?
How to pass the temp dataset form one JOB step to another?