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 automatic restart possible in jcl? If yes, how?
what is use of dsn parameter in dd statement?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
What is use of restart and how to use it?
What do you know about jcl?
How can the attributes of one sms dataset be copied to another dataset?
Brief description of inline procedure of jcl.
What is concatenating?
Explain the function of a dd statement?
what is DSN parameter and DISP parameter is used for?
Explain dd statement in jcl?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
How to submit jcl through a cobol program?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
What is the maximum length of a single line of jcl?