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 ?    32 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

Can we Execute a job without specifying Job Name in the Job Card?

2 Answers  


What is the difference between joblib and jcllib statements

7 Answers   IBM, Maples,


What is the maximum length of a single line of jcl?

0 Answers  


suppose i have job it contains 10 steps after exicution of job failuer at 3 and 7 th steps i want exicute step 3 and step 7 only how we specify condition ?

5 Answers  


Is CPU time (TIME parameter) assigned to a JOB and JOBSTEP BOTH, by default ?

6 Answers   IBM,






What all are the changes to be made in JCL so as to do testing?

2 Answers   TCS,


What is job control language?

0 Answers  


Explain how can the disposition of sysout datasets be set for an entire jobstream?

0 Answers  


with out sorting how to copy records from one file to another file using jcl.Mean I have one input file in which the record are like 1,6,5,4,2,3(for example) and i want to copy to output file from top to bottom(without sorting) like 3,2,4,5,6,1.so I want the JCL for this.cna any one can answers?

1 Answers   TCS,


Given a input file with duplicates how to remove the duplicate records from the file using JCL?

6 Answers   CDS, Convergys, TCS,


what is static and dynamic call with examples?

4 Answers   IBM,


What do you understand by the term notcat 2 – gs?

0 Answers  


Categories