in production region 100 steps are running,but i need to
run only step5 without changing code how can i do it?
Answer Posted / prasad raju
Below example codeing for 10 steps job,For example, how to
execute step4 and step9 of 10 steps JCL,
//M665235C JOB (MVSQuest),'IEBEDIT TEST',
// CLASS=B,MSGCLASS=X,NOTIFY=V665235,REGION=28M
//*
//SUBMIT EXEC PGM=IEBEDIT
//SYSUT1 DD DSN=TEST.MUTHU.JCL(JCLINP),DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
EDIT START=M665235C,TYPE=INCLUDE,STEPNAME=
(STEP0004,STEP0009)
//*
In the above JCL, JCLINP is the 10 steps JCL. M665235C is
the job-name in the JCL.
If TYPE is exclude, then the mentioned steps will not be
copied/submitted.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
Is it possible to left uncode disp? If yes, how?
which parameter is use to declare the name of dataset in dd statement?
what is use of space parameter in dd statement?
what is use of dcb parameter in dd statement?
which parameter is used to check the syntax of a jcl without executing it?
Brief description of inline procedure of jcl.
when does a dataset go uncataloged?
What is NOTCAT ?
how you can direct the data to spool using SYSOUT option?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
How does the jcl specify the job to os?
How can a jobs execution priority be modified?
Is automatic restart possible in jcl?