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 |
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3
what is the use of IEBGENER utility?
Give the syntax of job specifying jcl statement.
what is the meaning of keyword in jcl?what is is opposite?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
What does IEBGENER do?
How to use COND Parameter in jcl
What is the difference between primary and secondary allocations for a dataset?
how to resolve soc-7 ? please tell me
Is it possible to define dd statements as you want?
what is the difference between perform varying and perform
how to count the number of members in pds?