proc1,proc2,up to proc5 is there if i want to call proc1 and
proc5how can u write the code
Answers were Sorted based on User's Feedback
Hi..............
we can call proc as following.
//COOLJCL JOB NOTIFY=&SYSUID
//PROCFILE JCLLIB ORDER='PROCEDURE-FILE-NAME'
//STEP1 EXEC PROC1
//SYSPRINT DD SYSOUT=*
.
. * OVERRIDE STATEMENT
.
//STEP2 EXEC PROC5
.
. * OVERRIDE STATEMENT
.
//
THANKS..........
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / harsha
1 You can use COND parameter as COND=(0,LE) on STEP2 till
STEP4.
2 You can comment out the step you do not want to execute.
3 You can use IEBEDIT to select the steps you want to
execute.
| Is This Answer Correct ? | 2 Yes | 0 No |
How to rename a VSAM file as well as it's index file?
how would you create a temporary dataset? And where will you use them?
How many instream we can write in single jcl?
How can a fb file convert to vb file using sort program?
What are the 4 fields in dd statement?
wht do u mean by internal reader in jcl ? wht is the use of internal reader ?
TIME parameter in JOB statement or EXEC statement specifies What type of time (CPU time or execution time)?
How can you execute a COBOL program via SYSIN in JCL?
Suppose I have five jobs to do. But I want to hold one?
what is XSUM in some fields= none, xsum ??
if the submitter of a job wants to inform another user about the job completion, how can it be done?
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