Can we use COND=EVEN on a job card, when jobs are scheduled
through scheduler?
Answers were Sorted based on User's Feedback
Answer / sushree mohanty
yes, condition codes can be given for JCL statements even
if job is scheduled thru a scheduler, since Cond parameters
is used in steps and not job level statement.
| Is This Answer Correct ? | 13 Yes | 6 No |
Answer / santy
yes i can.
COND parameters is mainly used in steps level execuition
not for the JOB levle.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / bala
Yes we can. If COND=EVEN is specified in Job card it
applies to all steps in that job and it overrides the COND
parameters coded on the EXEC statements if any.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / muttaiah
Coding Cond=even is one of the best way in case if you want
to execute all the steps in your job irrespective of any
abend..But make sure the functionality doesn't miss here.
| Is This Answer Correct ? | 0 Yes | 1 No |
In all our JOB Statement we have always COND=(4,LT) defined. Nevertheless when a Job failed the last step should then be executed (send a message to an user). Due to we don't like to change all our JOB's (ca. 2000), we are looking for a simply solution.
How to check empty file in jcl?
how to see the latest generation in gdg?
What does the statements: typrun=scan and typrun=hold do in a JCL statement
if time parameter is not coded on the job card and job step then what is the default time assigned to the entire job and for each step in the job by the systyem ?
Can we use empty VSAM as input?
1) SORT FIELDS=(20,4,CH,D,10,3,CH,D) OUTREC FIELDS=(7:20,4,C' FUTURE ',20,2,10,3,1Z,1,9,13,7, 24,57,TRAN=LTOU,6X'FF') This example illustrates how a fixed-length input data set can be sorted and reformatted for output. The SORTIN LRECL is 80 bytes. The reformatted output records are fixed length with a record size of 103 bytes. SOLRF (the IBM-supplied default) is in effect, so unless the SORTOUT LRECL is specified or available, it will automatically be set to the reformatted record length of 103. in the above example i have some doubts that a) sort fields=(20,4,CH,D,10,3,CH,D) -what exactly it does and this fields related to output record fields or input record fields b)outrec used to refprmat the records after sorting that means could please reply me as soon as possible Thanks. Venkat
State the uses of syspring, sysin, sort fields, sum fields and dummy.
IN MY JCL I VE 8 STEPS I WANT TO EXCUTE STEP 8 FIRST THEN EXCUTE STEP 4 ,HOW WILL EXCUTE STEP 8 BEFORE STEP 4?
7 Answers Cognizant, IBM, IGT,
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
How to point my proc to production dataset always though i keep jcllib order=development.dataset? Is it possible?