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
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
when does a dataset go uncataloged?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
how to do automated restart when a job abends?
How do you overcome this limitation ?
Explain about LMQUERY�give a dialog information about a data set
what is SOC4 error?
what is JCL?
Explain how can return codes be tested before execution of a job step?
What parameter of the job statement is used to limit the cpu time consumed by the job?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
Is it possible to left uncode disp? If yes, how?
Can I send output of job to my remote device careerride123?
What methodology can be adapted to transfer data to a program that is coded using the exec statement?
which parameter is used to check the syntax of a jcl without executing it?