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 do you access an uncataloged dataset in a jcl?
In sms datasets, what is the function of the dd avgrec keyword?
which parameter is used to check the syntax of a jcl without executing it?
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
Name what parameter directs the output of the job log dataset?
How can a fb file convert to vb file using sort program?
How can the disposition of sysout datasets be set for an entire jobstream?
I had Records in file Like this Company Code IBM 2 IBM 1 IBM 4 WIPRO 3 WIPRO 2 WIPRO 9 TCS 4 TCS 6 TCS 3 i want the record of every company with highest code How can i do that?
Does jcl support automatic restart?
in ways data can be passed to a COBOL program from JCL?
What is NOTCAT ?
which parameter is use to declare the name of dataset in dd statement?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
How can values be passed from the job stream to an executable program?
what is the purpose of coding class parameter in job statement?