Suppose there r total 10 steps. Out of which i want to
execute only the 7th step. How can i do that....????
Answers were Sorted based on User's Feedback
Answer / vatsa
In the job card mention the restart step name as
//jobname JOB (1234),class=a,msgclass=x,restart=step7
// notify=&sysuid.
| Is This Answer Correct ? | 1 Yes | 2 No |
Answer / mithun suresh
Give COND=(0,LE) in the jobcard. By this only the 7th step
will be executed. No need to change any other statements in
JCL.
//jobname JOB (abcd),CLASS=B,MSGCLASS=J,
// RESTART=STEP7,COND=(0,LE)
| Is This Answer Correct ? | 6 Yes | 8 No |
Answer / shailendra
in job statement put restart=7th step name
and
in 8, 9,10th step cond=(0,GE)
else
in job statement put restart=7th step name
comment for remaining step
i think both will work
| Is This Answer Correct ? | 2 Yes | 6 No |
can u explain gdg with example wht happens if we give limit,empty,noempty,scartch and no scartch
I've one sequential file, that file size is LREC=100 (File contain Records like 1 to 100). Now I was increase the file size is LREC=102. My question is I want insert 00 (Two Zeros) in to the new file (That output file looks like : 00123 up to 100). How will write the SORT card in JCL. Please let me know.
If a job has 3 steps and step 1 and step 3 should get executed and step 2 should not get executed irrespective of the return code from the previous steps. How can it be done?
i want to see the jobs in skeleton queue in diff region. (eg. 7 regions are running means , i want to see all the jobs in 7 regions which are in skel queue using 1 command)
There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?
What 3 guidelines do we have to follow when concatenating DD statements?
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
What does a disposition of (MOD,DELETE,DELETE) mean ?
What do you understand by the term notcat 2 – gs?
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.
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
In my JCL 10 Steps Will Be there Now i want to execute step05 And step06. How to Give the Cond?