If we have 100 job steps in JCL and we want to excute steps
only starting from 43 to 50, then how it can be coded in JCL/
Answer Posted / aloke deb
A new and better way of doing this is by using the IEBEDIT
utility. The syntax is:
//IEBEDITJ JOB ACCT,'',CLASS=P,MSGCLASS=T,MSGLEVEL=
(1,1),NOTIFY=&SYSUID
//STEP0001 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=xxxxx.yyyyy.zzzzz,DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP10,STEP5,STEP15)
/*
//
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
How can a fb file convert to vb file using sort program?
Define concatenating?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
Explain how can return codes be tested before execution of a job step?
Explain the jcl exec statement?
what is “Cond= even” and “Cond=only”?
How gdg are concatenated?
What is the difference between the positional and keyword parameters? Give examples.
List the various advantages of using jcl language?
List the different jcl statements that are not permitted in the procedures?
is there any way to execute more than one proc in the same exec statement at the same time..?
What are the rules employed while naming the steps in a job?
How to override loadlib?
what is the JCL statement consists of?
Explain the function of dd disp parameter?