Submit more than one Job from a JCL.

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :rofl: :x :cry: :P :oops: :!: :twisted: :roll: :evil: :?: :idea: :arrow: :| :good: :mrgreen: :sorry: :unknown: :yes: :lol:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Submit more than one Job from a JCL.

Re: Submit more than one Job from a JCL.

by Robert Sample » Sun May 17, 2015 10:48 pm

Create your data set like:

Code: Select all

//JOB1 JOB ...
...
//JOB2 JOB ...
...
//JOB3 JOB ...
...
//JOB4 JOB ...
...
//JOB5 JOB ...
...
Unless you are asking about a specific situation you have not yet explained, why is it so hard for you to just test this yourself?

Re: Submit more than one Job from a JCL.

by JCLQuestion » Sun May 17, 2015 6:34 pm

Can you please share some example with me so that it will help me.

Re: Submit more than one Job from a JCL.

by William Collins » Tue Mar 17, 2015 2:56 pm

Depends what you think "a JCL" is.

If you have a sequential file (can be a member of a PDS/PDSE) it can contain multiple JOBs. Just specify multipl JOB cards.

Submit more than one Job from a JCL.

by JCLQuestion » Tue Mar 17, 2015 2:05 pm

Hi,

I want to submit 5 Jobs from a single JCL, is it possible? If yes, can you please give me a sample to build on?

Top