What does the statements: typrun=scan and typrun=hold do in
a JCL statement
Answers were Sorted based on User's Feedback
Answer / shesha
TYPRUN=SCAN will check the JCL for syntax errors alone, the
job is not executed
whereas
TYPRUN=HOLD will hold this JCL without executing it, until
a further notice is given to run it.
| Is This Answer Correct ? | 36 Yes | 4 No |
Answer / guest
typrun=scan checks the JCL for errors, typrun=hold holds the
job until further notice.
| Is This Answer Correct ? | 33 Yes | 4 No |
how to resolve the soc4 error?
COND -> step1 . . step2, Step2, Executes if the CC of step1 is 0. But even if it is NOT 0 and if we dont give COND, will step2 be executed ?
how can you check if a file is empty using jcl?
Can there be 2 job statements in a JCL? If yes what is the purpose of doing tha?
What is the purpose of dd?
what is the difference between perform varying and perform
Explain the function of dd disp parameter?
Explain the function of the dd dcb keyword?
i have 6 steps in my jcl program after going to 5th step i want to execute 3rd step.....how can i do it....by using(RESTART) can i do it or not?
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE
What is the exact difference between PRTY and DPRTY