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 |
wht do u mean by notify parameter, how can u give acess to multiple users ?
If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how it can be coded in JCL/
how you will define a temporary dataset in jcl?
Explain the function of //jcllib statement?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
suppose i have 10 job steps and i want to execute only step 6.How to write?
My requirement is : How to populate a empty PS/flat file with ONLY spaces in the first line. You should not use any input dataset to do this. I'm not sure whether you may use any utility for this purpose?
Is CPU time (TIME parameter) assigned to a JOB and JOBSTEP BOTH, by default ?
I have two input SORTIN files and We need to create one SORTOUT file which contains data of both input files. What is the SortCard for this?. Suppose the length of the both files are different, then How we do it? Please reply ASAP
In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides
How to send different PARM values based on the any condition to the program in a JCL? For example :- If the time is before 12:00 pm, I want to send "A" to some program and if it past 12:00 pm , I want to send "B" as a PARM value to that program. How to do it thur JCL only?
What is the difference between primary and secondary allocations for a dataset?