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



in production region 100 steps are running,but i need to run only step5 without changing code how ..

Answer / kiran

U can use IebEdit utility

Is This Answer Correct ?    10 Yes 0 No

in production region 100 steps are running,but i need to run only step5 without changing code how ..

Answer / gangireddy

//sysin dd *
edit type=include, stepnmae=(step5)
/*
//

Is This Answer Correct ?    6 Yes 1 No

in production region 100 steps are running,but i need to run only step5 without changing code how ..

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

in production region 100 steps are running,but i need to run only step5 without changing code how ..

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

Post New Answer

More JCL Interview Questions

What is the purpose of the dd keylen parameter?

0 Answers  


How to concatenate different LRECL of files?

2 Answers   IBM,


what is the cond=even only

4 Answers   EDS,


What is the difference between catalogue procedure and In-Stream procedure?

2 Answers  


What is the improvement to COND= in the latest version of MVS?

3 Answers  






I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?

16 Answers  


A maximum of 100 chars can be passed to Cobol through Parm in JCL, If we want to pass more than 100 Chars how we can do it ?

4 Answers   IBM,


what's the significance of freespace(0 0) and freespace(100 100)

3 Answers  


What you mean by skeleton JCl?

2 Answers  


I have 5 steps in my jcl ,I need to execute first three steps and then 2nd step again ,4th and 5th steps if rc of 2nd step is zero

1 Answers   ABC,


//ERFDS JOB //STEP1 //STEP2 //STEP3...COND=(4,LT) //STEP4 1.CONDITION IN STEP3 REFERS TO WHICH STEP'S RETURN CODE (STEP1 OR STEP2)? 2.IN ABOVE PROGRAM IF CONDITION SATISFIES IN STEP3 WHICH STEPS WILL EXECUTE?? AND WHY? IF CONDITION IN STEP3 SATISFIES

5 Answers   IBM,


what is full form of AIX

3 Answers   Accenture,


Categories