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 |
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
How to identify where file is empty or not? How many ways are there to identifying?
Explain the purpose of the dd keylen parameter?
I have a File that has duplicate records. I need only those records that occur more than thrice.
which utility is used to sort a file in jcl?
Can we delete the data using IEFBR14 , IEBGENER??
Is stepname is a MUST and should be unique also for each JOBSTEP ? or system can supply the stepname for a step which is not given a name by the programmer ?
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
Explain about LMMLIST�list a library's members
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
What is the difference between IEBGENER, IEBCOPY and REPRO in IDCAMS utility?
What is the difference between the positional and keyword parameters? Give examples.