In My job I have 15 procs.and in each proc i have 3 steps.
i want to execute 3 step in proc 10.is it possible?
if possible how?

Answers were Sorted based on User's Feedback



In My job I have 15 procs.and in each proc i have 3 steps. i want to execute 3 step in proc 10.is..

Answer / mainframe moddu

Restart=proc10.step3

Is This Answer Correct ?    15 Yes 1 No

In My job I have 15 procs.and in each proc i have 3 steps. i want to execute 3 step in proc 10.is..

Answer / madhavi chava

yes u can run the 3rd step of 10th proc by coding

exec=procstepname.stepname

procstepname is the step name where the 10th proc is used
and stepname is 3.

Is This Answer Correct ?    8 Yes 3 No

Post New Answer

More JCL Interview Questions

Must tape dataset definitions include vol=ser specifications?

0 Answers  


Suppose I have 5 dataset listed under a single DD name in a catlogued PROC. How can I override one of those 5 dataset (say 3rd dataset)?

5 Answers   Cognizant,


If there are five steps in a JCL i have to execute the 3rd step, bypass the 4th step and execute the 5th step how do i do this?

13 Answers   Cognizant, Convergys, IBM, TCS, Wipro,


please could u tell me the difference between SORT, SYNCSORT,CA-SORT, DFSORT,

1 Answers   IBM,


Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?

4 Answers  






What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?

0 Answers  


what is symbolic parameters in jcl, what is a temparary data set ? where do u use ?

2 Answers   Verizon,


At what stage, operator can change the class and priority of a submitted job?

2 Answers  


a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?

0 Answers   IBM,


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

0 Answers  


Explain about SYSVAR

1 Answers  


what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.

1 Answers  


Categories