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 the purpose of the dd keylen parameter?
How to concatenate different LRECL of files?
what is the cond=even only
What is the difference between catalogue procedure and In-Stream procedure?
What is the improvement to COND= in the latest version of MVS?
I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?
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 ?
what's the significance of freespace(0 0) and freespace(100 100)
What you mean by skeleton JCl?
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
//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
what is full form of AIX