I have multiple jobs ( JCLs with several JOB cards ) in a
member. What happens if I submit it?
Answers were Sorted based on User's Feedback
Answer / guest
Multiple jobs are submitted (as many jobs as the number of
JOB cards).
Is This Answer Correct ? | 14 Yes | 2 No |
Answer / gaurav
We have put number of job card in a single JOb. It will
treat each Job card as a new Job. So if you put 10 Jobcard
statement,means you are submitting 10 Jobs
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / guest
It will not give any error .All the Jobs will be
submitted.If all the jobs are of same
job name then they will go one by after another in FIFO
bases.If their names are different,then dependin on
availability of initiator,multiple jobs can run concurrently
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / mohammadanis
All the Jobs will be submitted.If all the jobs are of same
job name then they will go one by after another in FIFO
bases.If their names are different,then dependin on
availability of initiator,multiple jobs can run concurrently
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / satish.m.s
all jobs will be submitted.if all the job name is same then
based on based on FIFO if job name is different then based
on avaliablity of initiator multiple jobs are submitted
Is This Answer Correct ? | 5 Yes | 0 No |
Answer / prashanthkodakani
all the jobs will submited.............
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / raghavendra
U can have any number of jobs in a memeber. All the jobs
with different JOB cards get submitted as long as u wont
code // at the end of each job
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / ekta agrawal
you can submit any nor of jobs in a jcl
but ther name should be unique they will be executed in the
order u specified them untill you sets the priority.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / siddhartha
whenever ur submitting multiple jobs @ a same time u'l hav
give the priority for the execution of jobs. according to
the priority the jobs will b executed 1 by 1.
Is This Answer Correct ? | 2 Yes | 1 No |
Answer / satyasivaji.ch
We can submitt as many number of jobs as we can,but each job
seperated by // statement.
Is This Answer Correct ? | 1 Yes | 1 No |
Describe the various parameters utilized in the creation of a gdg?
How to execute a set of JCL statements from a COBOL program ?
What is the difference between catalogue procedure and In-Stream procedure?
What statement can be used to send data to another mvs jes3 node?
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 ?
how to put a dependency on job in jcl using opc scheduler?
I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.and it should not execute 18,19,20 steps??
9 Answers IBM, Infosys, TCS, Xansa, Xchanging,
What is the purpose of include statement in a JCL?
While using SORT FILES =NONE,XSUM I am getting error "ICE172A E XSUM IS NOT SUPPORTED - USE ICETOOL SELECT IF APPROPRIATE"..I want to write duplicate records a a serparte file..how i can do tht?
what is pupose and meaning of the REGION keyword and what jcl statement is it associated with?
What do you understand by jcl?
One dataset is creating in the step1 with LRECL of 133 and the same dataset is used in the next step in DISP=SHR mode, but while scanning the JCL the following error is thrwon. Please verify the below JCL $/SEPP030.PROVIDER DD DSN=Z1225BT.F5750PG9.F5910PRV.QC#A6868 //ERRORRPT DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, --ERRORRPT DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=&DISNCD,UNIT=&DELQ, -- DISP= (NEW,CATLG,DELETE),UNIT=DELQ, // SPACE=(TRK, (30,15),RLSE), // DCB=&DCB2 -- DCB= (PPG.METMODEL,BLKSIZE=0,LRECL=133,RECFM=FB) $/SEPP030.ERRORRPT DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT //SEPP040 EXEC PGM=FILEAID,COND= (0002,EQ,SEPP030) //SYSPRINT DD SYSOUT=* //SYSLIST DD SYSOUT=* //DD01 DD DSN=SYSCMN.PROD.CCLIB (F5910EP1),DISP=SHR $/SEPP040.DD01 DD DSN=Z1225BT.TEST.CCLIB (F5910EP1) E1 - DSS20791E - DATA SET 'Z1225BT.F5910EPP.ERRORRPT.AOUTPUT' HAS AN LRECL OF 133 COULD NOT BE OPENED BECAUSE THE CODED LRECL WAS 80. // DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, -- DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=SHR $/ DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT please find the error code in the above mentioned lines and please suggest me about the error and the solution for that.