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 |
can u explain gdg with example wht happens if we give limit,empty,noempty,scartch and no scartch
What is the difference between the positional and keyword parameters? Give examples.
what are the various stages of job processing?
Say I have a file with 12 records. Each record has the name of the month. I have to append data in these 12 records into 1 record. How is it possible?
How many types we can give input to JCL
what are the technical terms for // /* in jcl
how to create a member or sequential dataset through tso command??
a job have 5 steps and it will executes a proc which have 5steps in it. now i have to execute step3 only when step2 of proc executes successfully
List some valid operation codes in JCL
What are the parameter we cannot use in procedure?
I have an job having three job steps.Suppose i want to call a pgm in step2 and aproc in step3.How to write the code?
What is the difference between specifying DISP=OLD and DISP=SHR for a dataset?