If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?
Answer Posted / sreelatha
//jobname positional parms,keyword parms,.... Restart=step3
//..
//..
//..
//step3 exec=xxxx
//...
//step4 exec=yyyy,cond=(0,Le,step3)
//..
//step5 exec=zzzz
Restart =step 3 executes step3.Step 3 gives some return
code.In step 4,the test is passed as 0 is less than step
3.So step 4 is bypassed and is not executed. and the
program is responsible for issuing the return code that
was not even loaded in the main storage.
The result: no return code can exist
In the steps that follow any test of COND parameter tat
attempts to interrogate this non-existent return
code will be ignored . Step 5 will be e executed.
| Is This Answer Correct ? | 34 Yes | 2 No |
Post New Answer View All Answers
Mention the types of job control statements?
What do you understand by the terms: joblib and steplib?
Explain how can values be passed from the job stream to an executable program?
What do you know about jcl?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
How does jcl act on code(if you take a cobol program)?
Why block size is multiple of lrecl in jcl?
How to pass the parameter in parm using linkage section ? (syntax)?
How do you access an uncatalogued dataset in a jcl?
When space is allocated for an output dataset, what units can be used?
Is their any set of rules for dd? Explain.
IIN APITUDE THEY GAVE ONLY 10 QUESTIONS.. THEY ARE SIMPLE ONE FROM NUMBER SERIES,BOATS,TIME & DISTANCE,PROFIT &LOSS,FIND OUT THE NUMBER ? 9 25 4 36 81 64 49 AND surveillance SPELLINGS E.T.C
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
How to override loadlib?
How to alter the parameters for the existing gdg?