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 |
Describe the DD statement, its meaning, syntax and keywords?
Explain the function of dd name parameter with a 2 part structure; audit.report?
How many JOB statements a JCL can have ? If there are more than one JOB statements in a JCL, are they submitted in succession or in parallel ?
What is RESTART? How is it invoked?
How do you handle empty files in a JCL ?
What are three parameters you can specify on Job statement as well as on exec stmt ?
whats the difference between empty and noempty of GDG?
How can I write the joblog in the spool on normal end of a job step and direct the joblog to a dataset only if the step abends?
There is a procedure in A.B.PROCS(PROC1) (member name is PROC1) //PROCA... There is a call to a procedure PROCA from a JOB. //STEP01 EXEC PROCA ... Here "PROCA" in JOB refers to the actual PROC name or the member name of the PDS where this PROCA is stored.
How to create delta file using JCL
Suppose i have a file with 10 recs and i want to skip only the 7 th record and copy the rest into another file. How do i do it using SORT?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?