How to execute 300 steps in a Job?

Answers were Sorted based on User's Feedback



How to execute 300 steps in a Job?..

Answer / prashanth

In a job max no of step is 255 ,if we want more than this
we have to submit one more jcl with in the same job
by using 'internal reader' its a part of JES
ex..
// step1 exec...
.
.
.

//step255 exec pgm=IEBGENER
//sysut1 dd dsn=another jcl
//sysut2 dd dsn= (*.INTRDER)
//sysprint dd sysout=*

Is This Answer Correct ?    33 Yes 0 No

How to execute 300 steps in a Job?..

Answer / venkat

we can't execute more than 255 steps in one job, so it is
not possible with procs also indirectly

Is This Answer Correct ?    15 Yes 4 No

How to execute 300 steps in a Job?..

Answer / vimal kumar

Write a jcl like the below. Two jobs will be submitted from
the same jcl.

//JOBCARD1 .........
//STEP1 EXEC ...
......
.....
//STEP255 EXEC ...
...
//JOBCARD2 ....
//STEP256 ..
.........

Is This Answer Correct ?    8 Yes 3 No

How to execute 300 steps in a Job?..

Answer / ravi

give correct answers..

Is This Answer Correct ?    4 Yes 1 No

How to execute 300 steps in a Job?..

Answer / gowthami

we need to split the jcl into two jcls, at the end of first jcl check the condition code and initiate the second jcl.

Is This Answer Correct ?    3 Yes 0 No

How to execute 300 steps in a Job?..

Answer / harsha

I think its not possible.

Is This Answer Correct ?    5 Yes 3 No

How to execute 300 steps in a Job?..

Answer / guest

Hi Ravi,
prashanth answer is correct.

Is This Answer Correct ?    1 Yes 0 No

How to execute 300 steps in a Job?..

Answer / kumar swamy

Prasanths answer is absolutely correct, but so many are using more than one jobs indirectly, you have to recall the question. And one more thing job steps are counted including the procedure steps which is in that job.

Is This Answer Correct ?    1 Yes 0 No

How to execute 300 steps in a Job?..

Answer / brian

I don't suppose that practical versus possible is an option
here but it seems like a heavily loaded batch job to me.

Is This Answer Correct ?    0 Yes 0 No

How to execute 300 steps in a Job?..

Answer / pinky

Prasanth Answer is absolutely correct

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More JCL Interview Questions

what operation is performed by job statement?

0 Answers   IBM,


How many days does a job remain in spool

7 Answers   Syntel,


How do you submit JCL via a Cobol program?

4 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  


HOW TO CONVERT VARIABLE BLOCK TO FIXED BLOCK ?

1 Answers   IBM,






Whats error code s222?

7 Answers   Patni,


What is the difference b/w the CLASS,TIME,PRTY in jcl job card.

4 Answers   Syntel,


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

12 Answers   Bank Of America,


What is Automatic Restart ? EXEC PGM = PROG1, RD = R (Is it the Restart of a JOBSTEP or Restarting the execution of the program?) Do we Restart it or it automatically Restarts executing again and again ? Then when it will finish executing ? or After Abending, when we submit it again, then it is Restarted from the Last successful Checkpoint ? If some JOBSTEP is abending, what is the benifit to Restart it, WILL IT NOT ABEND AGAIN if you don't change the LOGIC ?

1 Answers   IBM,


Explain how can an in-stream dataset be terminated?

0 Answers  


we define the array like this 01 array 02 veg occurs 10 times 03 days occurs 6 times 04 cost pic 9(5). but why don't we write it as 01 array 02 veg occurs 10 times 03 days occurs 6 time 04 cost pic 9(5). is there any error will occur ,what is it? and why don't 01,02,03 not contain picture clause? if we put pic in those is there any error will occur what is it will occur?

1 Answers   Fidelity,


what is SOC4 error?

0 Answers  


Categories