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/

Answers were Sorted based on User's Feedback



If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / shaik.apsar

While submitting the JCL, use RESTART=Step43.
And from steps 50 step complet i am close the //

Is This Answer Correct ?    13 Yes 1 No

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / 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

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / 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

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / vssd

While submitting the JCL, use RESTART=Step43
And from steps 51 thru 100, use COND=ONLY in step EXEC
statement.

Hope this helps, please correct me if wrong.

Is This Answer Correct ?    11 Yes 8 No

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / vinay sonar

Use IEBEDIT

//STEP2 EXEC PGM=IEBEDIT
EDIT TYPE=INCLUDE,STEPNAME=(STEP43-STEP 50)

Is This Answer Correct ?    3 Yes 0 No

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / astha mittal

I don't want to use COND=ONLY..then what will be the next
alternative..sorry to bug u as interviewer has aske me like
this...

Is This Answer Correct ?    3 Yes 1 No

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / vichu

asha , u can try using IF RC not equal 0 THEN --- ENDIF

Is This Answer Correct ?    3 Yes 2 No

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / sundar

While submitting the JCL, use RESTART=Step43.
And from steps 50 step complet i am close the /* is it
correct plz tell me

Is This Answer Correct ?    1 Yes 0 No

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / nitesh sethi

IEBEDIT can be used but the syntax needs to be bit modified.
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP10,STEP5,STEP15)
/*
//
Instead of this it will be

//SYSIN DD *
EDIT START=IEBEDITJ,TYPE=INCLUDE,
STEPNAME=(STEP10,STEP5,STEP15)
/*
//

Is This Answer Correct ?    1 Yes 1 No

If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how i..

Answer / yogesh s p

//jobname job , ,con=(4093,gt,step49)
//step1 exec pgm=
//step2
.
.
.
.
.
.
.
//step50 exec pgm=.....,
it will execute 49 th step before executing 50 step it will
check the return code of 49th it will satisfies the
condition so it wont execute the step50 it will come out of
the sequence.

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More JCL Interview Questions

Is there a limit of 3273 DD statements for a JCL or for every EXEC step in a JCL?

2 Answers  


what is alternate index?

1 Answers  


what is check pending option

1 Answers   Fujitsu,


what is use of dsn parameter in dd statement?

1 Answers   IBM,


what is the use of JCL?

1 Answers  


i have 6 steps in my jcl program after going to 5th step i want to execute 3rd step.....how can i do it....by using(RESTART) can i do it or not?

2 Answers   Wipro,


What do you understand by the term notcat 2 – gs?

1 Answers  


What is Uncatalog dataset? How can we access/use them?

1 Answers  


What are the valid DSORG values ?

3 Answers  


which utility is used to sort a file in jcl?

1 Answers   IBM,


Statement1 "We can not use UNCATLG in SMS managed VSAM datasets" Statement2 "We can not delete a SMS managed data set without UNCATLG it" (P-353, Saba Zameer book) Then how do we delete SMS managed VSAM datasets ?

1 Answers   IBM,


Where can program checkpoints be stored for use in a restart?

1 Answers  


Categories