IF we are calling a PROC from Jcl...This Proc have 3 steps
in it and we want to execute only the second step using the
JCL, How to do it??

Please give the answer ASAP:)

Answers were Sorted based on User's Feedback



IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / biswajit

Sorry there is little modification on JOB CARD to my
earlier answer.
In Job card RESTART = Proc stepname.stepname ie
STEP2.Stepname of job that invokes the proc This will result
to start at STEP2 of proc.
In Exec statement of the job that invoking the proc u can
code COND.STEP3 = (0,LE),The result of this is the STEP3
of proc will have COND=(0,LE).Whcih is allways true so this
step will be always bypassed.As a result of both only STEP2
of proc will be excuted.

Is This Answer Correct ?    13 Yes 2 No

IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / chandra babu

In job card : RESTART=Step name of the PROC.Step02,
COND=(0,LE, Step name of the PROC .Step03)

Is it correct?

Is This Answer Correct ?    4 Yes 1 No

IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / biswajit jena

In Job card RESTART = Procname.STEP2.This will result the
to start at STEP2 proc.And
In Exec statement of the job that invoking the proc u can
code COND.STEP3 = (0,LE),The result of this is the STEP3
of proc will have COND=(0,LE).Whcih is allways true so this
step will be always bypassed.As a result of both only STEP2
of proc will be excuted.

Is This Answer Correct ?    3 Yes 2 No

IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / muttaiah

Hi,
I have executed the jcl as per answer#4, it worked f9.
I have a question here, if there are three steps we are
giving cond parm as cond.step3=(0,le)
If there are 5 steps in proc, how to specify the cond parm
in exec step which is calling that proc.
Please suggest me how to accomplish this.

Immediately reply would be greatful.

Is This Answer Correct ?    0 Yes 1 No

IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / gani.....

in job card give restart=jobstename.procstepname

Is This Answer Correct ?    0 Yes 1 No

IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / rahul singh

On Job card : Restart=jobstep(step that calls the proc).step2
On Jobstep(step that calls the proc): COND=(0,LE)

Is This Answer Correct ?    0 Yes 2 No

IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / ch.mohan

using cond=even
even use to only perticular step was executed indipendently

Is This Answer Correct ?    0 Yes 2 No

IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the s..

Answer / sowdamini

we can override step1 and 3 by dd dummy statements.

Is This Answer Correct ?    1 Yes 4 No

Post New Answer

More JCL Interview Questions

What are three major types of JCL statements? What are their functions?

1 Answers  


How to execute only th 15th step of JCL consisting of 50 steps?

12 Answers   Bank Of America,


How to concatenate different LRECL of files?

2 Answers   IBM,


i have two flat files.i want to select one record from that file by using jcl.for example file1 contains emp no,name,joining date. file2 has same details.emp no is primary key. i will give empno.that emp details send to outfile.please let me know if any one knows it.give sample code.

1 Answers   TCS,


what is the default region size if I dont specify region parametre in my job card ( I know that if I specify region=0k or 0M, then the job will occupy all he available resources at the time of job execution), but I want to know the defult value for "region" paramatre.

5 Answers   BirlaSoft, Infosys,






what is a cataloged procedure ?

1 Answers   Xansa,


Please give me the coding for converting VB to FB and FB to VB

3 Answers   HP,


In a proc i will concatinate 4 dd statements.i want to overide 3 dd statement through jcl how?

3 Answers  


How system will identify whether user wants to create PS or PDS? If answer is SPACE parameter then why we need to pass ps or po as dataset organisation while creation

1 Answers  


in jcl you are having JCLLIB and STEPLIB what happens

10 Answers   EDS, Wipro,


How to find the number of duplicates in a file using Sort?

4 Answers   Fidelity,


consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above

1 Answers  


Categories