in step1 of a jcl,disp=(mod,delete,delete)
step02 exec pgm=ccc,cond=(0,le)
will step02 be executed?
i)never
ii)always
iii)
iv)...
i dont remember options
Answers were Sorted based on User's Feedback
Answer / y@$w@nth
disp=(mod,delete,delete)
will tells that if the file is not previously created create
it if it is already created then use that file.
the two delete statements will tell that delete the file
after norml and abnormal termination.
step02 exec pgm=ccc,cond=(0,le)
Here step02 was coded as condition code which always falls
to true so this step wont execute in any situation......
| Is This Answer Correct ? | 26 Yes | 0 No |
Answer / vinay sonar
Step2 will not execute because always true condition is
coded in step2.
condition code(cc) 0 will be always less than any previous
step cc say 0,4,8,4095 etc. so condition is always true.So
step2 wont execute
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / sowmya
step2 will be executed.the steps after the step2 will be by-
passed
| Is This Answer Correct ? | 1 Yes | 9 No |
How do you override a parameter in Positional parameters?
How can the submitting users racf authority be overridden in a job stream?
how to create gdg with out using idcams utility
In my JCL 10 Steps Will Be there Now i want to execute step05 And step06. How to Give the Cond?
What is the exact difference between PRTY and DPRTY
What is the purpose of include statement in a JCL?
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?
how can you check if a file is empty using jcl?
lines(1,cancel)??What is meant by that??Plz explain it....
How to find in aparticular step how many versions a paricular gdg base have?
What is one line to pass PARM from JCL to COBOL?
Can we have a JOBSTEP without any EXEC ?