A maximum of 100 chars can be passed to Cobol through Parm
in JCL, If we want to pass more than 100 Chars how we can
do it ?
Answer Posted / keerthi
We need to use TSQ so tat more data can be passed
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What is condition checking in jcl? Is this possible?
Is their any set of rules for dd? Explain.
Define concatenating?
what is use of dsn parameter in dd statement?
What is the function of job statement in jcl?
How to submit a jcl from cics?
How is the record format of an output dataset specified?
which utility is used to sort a file in jcl?
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 steplib and joblib?
what is the purpose of coding class parameter in job statement?
What is the use of disp parameter?
Mention the types of job control statements?
How to pass the parameter in parm using linkage section ? (syntax)?
What are the parameter we cannot use in procedure?