Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


I have a JCL which 20 steps. How do I execute 17 th step
alone (It should execute only 17ths tep.and it should not
execute 18,19,20 steps??

Answers were Sorted based on User's Feedback



I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / khan

In job card code restart=17 and cond parameter as follows

restart=17,cond=(00,LE)

Is This Answer Correct ?    48 Yes 7 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / pradeep

There is a better way of doing it as given below:

//STEP001 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXX.GENERAL.STUDY(TEST001),DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP0017)
/*

Here, I have used the utility, IEBEDIT to execute only the
required step. You can also, given the syntax,

EDIT TYPE=INCLUDE,STEPNAME=(STEP0017,STEP0021,STEP0099) to
execute the reqd steps only.

Similarly, we can use TYPE=EXCLUDE to exclude the steps
from exec.

Is This Answer Correct ?    41 Yes 4 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / atul

Hi,

Code as: RESTART=PROCNAME.STEP17,COND=(4095,NE)

This executes 17th step only and no other step. For
successful execotuin, you will recieve message 'STEP17
PROCNAME - ENDED BY CC 0000 - TIME=nn' in JESMSGLG in SPOOL.

Is This Answer Correct ?    18 Yes 3 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / mohammad

code restart=17,cond=(00,le),
cond=(4095,ge) on job card.

This will execute only 17th step.

Is This Answer Correct ?    17 Yes 2 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / vishwa_nathan

COde RESTART = STEP17 in job and code a condition in step
18 ie

STEP18 EXEC PGM=XXXXX,COND=(0,eq)

Is This Answer Correct ?    10 Yes 2 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / anurag singh

At Job card level write Restart=step17(ddname) and put null
indicator (//) at the end of 17th step , so that while
executing the job will start form 17th step and after that
it will find the null indicator , so job execution will be
terminated.

Is This Answer Correct ?    16 Yes 9 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / atul

In addition to answer 5, RESTART parameter can be coded as:
RESTART=PRCNAME.STEP17,COND=(4095,GT) and another one has
already been mentioned in answer # 3.

Is This Answer Correct ?    4 Yes 2 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / david

1. In job card type restart=step17 and type // followed by spaces after the 17th Step.
2. Use IEBEDIT

JCL interview questions
https://youtu.be/VE6cTuFpsXc
https://youtu.be/bExB_Tjp9A4

COBOL interview questions:
https://youtu.be/_O6gPk6jjLE
https://youtu.be/pQumm7ueYik

Is This Answer Correct ?    0 Yes 1 No

I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.a..

Answer / ss

In job card type restart=step17 and comment after 17th step

Is This Answer Correct ?    12 Yes 24 No

Post New Answer

More JCL Interview Questions

What statement marks the end of an in-stream or catalogued procedure?

1 Answers  


How to find the length of variable length copybook using fileaid ??

1 Answers   CSC,


I have two input SORTIN files and We need to create one SORTOUT file which contains data of both input files. What is the SortCard for this?. Suppose the length of the both files are different, then How we do it? Please reply ASAP

4 Answers   CSC,


What does S0C4 error mean?

8 Answers  


is step name is compulsory in jcl ?

2 Answers  


How to resolve the error "WER488A JOIN CAPACITY EXCEEDED" I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem? I am using SYNCSORT with JOINKEYS to compare 2 files. I am Getting error - > WER488A JOIN CAPACITY EXCEEDED There are 2 files to be compared with about 2 million records each. LRECL is 3665. Can somebody give a pointer as to how to resolve this problem?

1 Answers  


what is use of disp parameter in dd statement?

0 Answers   IBM,


How do you designate a comment in JCL?

1 Answers  


Is their any set of rules for dd? Explain.

0 Answers  


Explain about ISPF/TSO Commands

0 Answers  


what are the statements that are not valid to be included in an include statement?

0 Answers   IBM,


Hi, Please clear me when COND=ONLY and COND=EVEN. Explain me with example.

2 Answers   GJ,


Categories