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 / avinashn17
use the following,
//STEP1 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXXX(MEMBER),DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP43-STEP50)
/*
only steps 43-50 would be included and executed.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Name the parameters which can be used to limit the number of records written to a sysout dataset?
what is a jcl?
What is the function of a dd statement?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
Explain about LMFREE�free data set from its association with data ID
Explain how can the attributes of one sms dataset be copied to another dataset?
What are the parameter we cannot use in procedure?
What is multithreading in jcl?
a dd statement has 2 types of parameters. Name them?
What statement can be used to send data to another mvs jes3 node?
if the submitter of a job wants to inform another user about the job completion, how can it be done?
how you can access an uncataloged dataset in a JCL?
Explain dd statement in jcl?
by using cond parameter maximum 8 cond can be coded in single cond means ?explain
In job processing, what happens in execution stage?