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?
Answers were Sorted based on User's Feedback
Answer / harsha
Use DPRTY parameter. With this parameter, we can change the
order of execution of each steps but we cannot skip the
execution.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / muttaiah
What i understand from question is
After executing 4th step you want to execute 3rd step.
In JCL.
We can execute steps only sequentially meaning steps mentioned in the job has to be executed in the way they are.
So as far as my knowledge this is impossible.
one way is if the job execution is stopped after 4th step. you can then execute from any step using restart.
| Is This Answer Correct ? | 2 Yes | 1 No |
hi iam learning mainframes,can anybody tell me how to check JCL errors.(after submiting the JCL we have check in spool or is there any other method)
Wrete a JCL to compare two files and mached records move to onc file & un mached rows wants to another file?
13 Answers CGI, DSRC, IBM,
What is default if we don't specify RD parameter at all ?
hello friends ,i have exam in Hsbc,pls any on send me placement papers and technical questions on mainframes,thank u
can we write a proc with in a proc
How jcl work to handle various input output file operations?
01 GROUP-ITEM 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP MOVE ZERO TO GROUP-ITEM ADD 50 TO AMOUNT-1 what will be the content of AMOUNT-1? a.50 b.100 c.0 d.unpredictable
in production region 100 steps are running,but i need to run only step5 without changing code how can i do it?
How to empty the records in jcl
how many types of sorts are there in jcl?
Please give me the coding for converting VB to FB and FB to VB
If a jcl has just 1 step and the input file to this does not exist, then what will happen if we submit this job?