I have multiple jobs ( JCLs with several JOB cards ) in a
member. What happens if I submit it?
Answer Posted / praveen kumar bejjanki
We can have several job card's in a single JCL. when you
submit this jcl it won't give any abend. the jobs are
executed based on the jobname, suppose if all the jobs have
the same name then they are executed on the way they are
submitted, if the job names are unique then they are
executed based on the class, priority assigned to that job.
even if both the class, priority is same for all the jobs
which have a unique jobnames then they are executed in the
way each job is submitted.
Correct me if i am wrong....
mail me to prvnkmrbejjanki@gmail.com
Thanks!!!!
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what are JCLLIB and STEPLIB in JCL?
How gdg are concatenated?
How is the record format of an output dataset specified?
is there any way to execute more than one proc in the same exec statement at the same time..?
What is the significance of addrspc parameter in the exec statement?
Where can program checkpoints be stored for use in a restart?
What are hierarchy levels in jcl?
What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?
Define concatenating?
How can a stopped job be started again?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
List the different components of jcl statement?
What do you know about jcl?
What is job control language?
I have many files which i am receiving from client everyday. I have one step for every file to check for empty or not. Here client gives 30 files i need to check for every file for empty or not and i need to perform 30 steps. Can I do it in single step. Dynamically i need to change the File name in my step.