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 |
What is the purpose of the PARM keyword in the EXEC statement?
What is the difference between primary and secondary allocations for a dataset?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
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?
What is the significance of addrspc parameter in the exec statement?
How to delete generations of gdg without deleting gdg base?
What is the difference between sb37,se37,sd37 each?
Can an individual step be restricted from using all the jobs allowed cpu time?
What is the difference b/w the CLASS,TIME,PRTY in jcl job card.
What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
List the different jcl statements that are not permitted in the procedures?
In my job I have 6 steps. Step01,02,03...step06. after executing step02 i want to skip step03 and want to execute step04. and once step04 is done then I want to go back and execute step03. once step03 is completed I want execute step05, 06 and so on... can any one tell me how do i do that???