I have 5 steps in my job. say s1, s2, s3, s4, s5
//s1 exec .............
//s2 exec ............
//s3 exec ..........
//s4 exec ........
//s5 exec ...............
my question is i want to exeute only s2 and s4 steps...
please advice me how to do this:
Answer Posted / kiran kumar
code always true condition on s1 s3 s5 steps using cong
parameter Ex: //s1 exec..... cond=(4096,gt)
or
by using iebedit utility
//job exec pgm=iebedit
//s1
//s2
//
//
//s5
//sysin dd *
start jobname type=include (s2,s4)
//
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
i want to store 20 digits . how will u do it in cobol ?
when does a dataset go uncataloged?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
what is use of dcb parameter in dd statement?
what is a jcl?
Suppose I have a program in cobol name ”careerride” and want to execute the program by jcl. Specify the process?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
how do you access an uncataloged dataset in a jcl?
Explain the function of dd disp parameter?
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
How can a fb file convert to vb file using sort program?
Is their any limit for data sets?
What are the rules employed while naming the steps in a job?