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


Please Help Members By Posting Answers For Below Questions

If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?

1008


How can a jobs execution priority be modified?

990


Is automatic restart possible in jcl? If yes, how?

826


I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK

1689


What is concatenating?

837






What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?

2001


what are the types of abends that occur on job failure? And explain the possible causes of these

1314


Which statement is used to identify the private libraries in job?

888


How do you access an uncatalogued dataset in a jcl?

917


Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?

2421


what are JCLLIB and STEPLIB in JCL?

871


How can values be passed from the job stream to an executable program?

1074


What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?

854


Explain about LMFREE�free data set from its association with data ID

1264


What is multithreading in jcl?

1163