Can you execute a PROC from another PROC?

Answers were Sorted based on User's Feedback



Can you execute a PROC from another PROC?..

Answer / sivakumar sekharannair

We can execute a proc from another proc. I tried and
executed sucessfully.
my job steps:
//PROCLIB JCLLIB ORDER=PROGMR.SIVANAIR.JCLLIB
//JOBLIB DD DSN=UAUT.NDVR.PGMLOAD,DISP=SHR
//STEP001 EXEC AUT001

first proc steps:
//AUT001 PROC
//STEP001 EXEC PGM=AUT0EMP,COND=(0,LE)
//EMPLOY1 DD DSN=PROGMR.SBPD.EMP.DATA.SAMPLE1,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//STEP002 EXEC AUT002


Second proc steps:
//AUT002 PROC
//STEP001 EXEC PGM=AUT0EMP
//EMPLOY1 DD DSN=PROGMR.SBPD.EMP.DATA.SAMPLE1,DISP=SHR
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*


JOb log:
JOBNAME STEPNAME PROCSTEP RC EXCP CPU SRB CLOCK
AAUT001D STEP001 STEP001 00 48 .00 .00 .00
VS0010I AAUT001D 08.206 C STEP002 STEP001 ** R0000 **
AAUT001D STEP002 STEP001 00 48 .00 .00 .00
EF404I AAUT001D - ENDED -

Is This Answer Correct ?    20 Yes 2 No

Can you execute a PROC from another PROC?..

Answer / satyasivaji.ch

yha we can excute proc with in a proc(nested procedures),you
can code up to 15 levels of procedure we can execute.

Is This Answer Correct ?    6 Yes 3 No

Can you execute a PROC from another PROC?..

Answer / tanji

Answer to #5:
Need to give the lib of all the proc in the jcllib,With
that the second and subsequent proc will be identifies the
the executing proc.

Is This Answer Correct ?    3 Yes 0 No

Can you execute a PROC from another PROC?..

Answer / guest

I did not know the answer and my interviewer said NO. Later
I tried and executed PROC from a PROC, three levels deep.
Manuals do not state any limit on PROC calling PROC, or nesting.

Is This Answer Correct ?    6 Yes 5 No

Can you execute a PROC from another PROC?..

Answer / sachin

Please tell me shive
job knows where is first proc reside using JCLLIB

but how the proc2 will know where is proc3 reside.

Is This Answer Correct ?    0 Yes 0 No

Can you execute a PROC from another PROC?..

Answer / guest

yes

Is This Answer Correct ?    0 Yes 0 No

Can you execute a PROC from another PROC?..

Answer / kingmanish

First of all what is a PROC.

Its just a set of reusable JCL statements.

Now calling PROC within a PROC will defeat the concept of
PROCs itself.

So if we call a PROC within a PROC it would work and we can
do that.
But that is not a good practice.

Is This Answer Correct ?    1 Yes 1 No

Can you execute a PROC from another PROC?..

Answer / nikhil

You can code only exec pgm=pgm-name in a PROC but not exec
procname in any kind of PROC.

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More JCL Interview Questions

if we have a job consist of two steps and each step calling a proc having 10 steps each then how many steps are counted only 2 or 22(10+10+1+1)? can we have more than 255 steps in a single job?

5 Answers   Accenture,


in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?

0 Answers   IBM,


Can we give TIME = (1440, 59) also ? or is TIME = (1439, 59) is the last one ?

5 Answers   IBM,


I have a File that has duplicate records. I need only those records that occur more than thrice.

3 Answers  


What is one line to pass PARM from JCL to COBOL?

0 Answers  






What are some jcl statements that are not allowed in procedures?

0 Answers  


How to find in aparticular step how many versions a paricular gdg base have?

4 Answers   TCS,


I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?

10 Answers   iGate,


What is COND=EVEN ?

9 Answers   IBM,


In Job, there are 10 steps. If I want to execute the first 6 steps and don't want to execute from 7th to 10th step. What is the solution for this ?

7 Answers  


how you can access an uncataloged dataset in a JCL?

0 Answers  


How do you override a parameter in Positional parameters?

4 Answers   Thomson Reuters,


Categories