in my jcl have 20 steps step1,step2,.... step20.and i have to
execute step1,step2,..and skip the step3 and remaing
step4,step5 are execute? i want skip step3 only? what code u
can write?
Answers were Sorted based on User's Feedback
Answer / piyush mani
most easy way to do it is to use "IEBEDIT" UTILITY LIKE BELOW
//JOBCARD
//STEPNAME EXEC PGM=IENEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=FSS345.PIYUSH.JOB1,DISP=SHR
//SYSIN DD *
EDIT START=JOBNAME OF DESIRED JOB, TYPE=EXCLUDE,
STEPNAME=(STEP3)
/*
//
GIVE UR FEEDBACK....
Is This Answer Correct ? | 13 Yes | 0 No |
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
What do you understand by the term notcat 2 – gs?
what happens in execution stage in job processing?
Can we write same stepname for one or more steps in on job ?
What is the function of dd name parameter with a 2 part structure; audit.report?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
Explain the purpose of dd dummy statement?
how can i code cond parameter in procedures ? i have a jclk calling a proc which has 10 steps i want to execute from step 5 to step 10 where can i code restrat parameter or cond parameter for ths
How do you submit a job for execution?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
How to identify in JCL that an input file is empty without reading it?
Is CPU time assigned to a JOB and JOBSTEP BOTH, by default ?