What is the difference between a symbolic and an override in
executing a PROC?
Answer Posted / s.sivarajan
overriding parameter:
In the overriding parameter we can override the existing
statements by dd statements after giving the data set name.
symbolic parameter:
In the symbolic parameter we can override the parameter by
giving the assign statement.
example:
ASSIGN PROC SIVA=SHR.
after statements
in the DISP parameter we can giving like this
DISP=&SIVA.
Then it take disposition is shareable(SHR).
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
Explain the function of //jcllib statement?
Must tape dataset definitions include vol=ser specifications?
What do you know about jcl?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
what JCL Procedures?
What statement can be used to send data to another mvs jes3 node?
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
How do you submit a job for execution?
A dd statement consists of 4 fields. Name them?
Explain the purpose of dd * statement in jcl?
how can you check if a file is empty using jcl?
what is the purpose of coding notify parameter in job statement?
In sms datasets, what is the function of the dd mgmtclas keyword?
What is the purpose of dd dummy statement?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.