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 |
A PROC has five steps. Step 3 has a condition code. How can you override/nullify this condition code?
what is the use of IEBGENER utility?
what modification we need to do in jcl if we use sort in cobol? I mean whether we need to include temporary file used for sorting in assign statement?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
hi,i have joined in mainframe course recently. ihave a doubt ragarding restart parameter.what is d use of it. and what is d syntax for it. any one give me d answer pls.
which utility is used a dummy utility?
What are the parameters that are used in creating a gdg?
What is the function of dd disp parameter?
Suppose I have seven jobs to do, but I want to hold one than how can I do this?
WORKING-STORAGE SECTION. 1 GROUP-ITEM. 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50. 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP. PROCEDURE DIVISION. MOVE ZERO TO GROUP-ITEM. ADD 50 TO AMOUNT-1. DISPLAY AMOUNT-1. STOP RUN.
what are JCLLIB and STEPLIB in JCL?
In my JCL 10 Steps Will Be there Now i want to execute step05 And step06. How to Give the Cond?