in production region 100 steps are running,but i need to
run only step5 without changing code how can i do it?
Answers were Sorted based on User's Feedback
Answer / gangireddy
//sysin dd *
edit type=include, stepnmae=(step5)
/*
//
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / 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 |
Answer / anil
yes it is correct that we can use iebedit utility by using
internal reader init
| Is This Answer Correct ? | 1 Yes | 1 No |
What is QSAM error usually when it is occurs?
what are the ways of passing data to a cobol program from jcl?
How to ALTER the name of a GDG ?
i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?
how to eliminate the duplicates in sorting
What is Uncatalog dataset? How can we access/use them?
What is the function of a dd statement?
How can we execute only one step in a job
22 Answers MAHINDRA, Mind Tree, Tech Mahindra,
what is the meaning of keyword in jcl?what is is opposite?
wht is step lib n job lib ? where can we code joblib n steplib ?
Explain dd statement in jcl?
There are two steps in a JCl, the first one generates a report while the second step send an email saying the report has been generated, but the second steps should only be executed when the report file is non-empty. How can it be acheived. We may include steps in between.