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

Explain dd statement in jcl?

0 Answers  


. What is the difference between the following statements : I) step#1 exec PGM=accpay ii) step#1 exec tbalance

1 Answers  


wht r different types of sorts ?

1 Answers   L&T,


There are a set of 10 files and a customer will be selecting random no of files(i.e they may be more than 2, may not be in the order).Sometimes he might just select one file or sometimes no files at all.How do you code a JCL for this? Is it possible to code just JCL alone for this problem?

9 Answers   Infosys,


Is there any command to check wether the ps file is in sorted order?

4 Answers  






What is concatenating?

0 Answers  


Current version of GDG is ID.GDG.FILE.G0001V00. JCL has procedure with 2 steps like below,  What will be the output file name in each step ?  PROC starts      Step 1 has ID.GDG.FILE(+1)      Step2 has  ID.GDG.FILE(+4) PEND Similarly, JCL has 2 steps in 2 separate procedure. What will be the output file names here ?  PROC starts      Step 1 has ID.GDG.FILE(+1) PEND PROC1 starts      Step2 has  ID.GDG.FILE(+4) PEND

2 Answers   FIS,


there are 10 steps in jcl how to execute the steps from step2 to step8 only

6 Answers   EDS,


what happens in execution stage in job processing?

0 Answers   IBM,


FOR a GDG, the book by 'SABA ZAMEER' says 'We can NOT ALTER the LIMIT parameter after it is defined'. (p-211). But many persons have written that it can be changed, which one is true ?

4 Answers   IBM,


How dummy is used in jcl?

0 Answers  


What is the function of the dd dcb keyword?

0 Answers  


Categories