what are the symbolic parameters? why do we use symbolic
parameters ?

Answer Posted / abha

Example: If symbolic parameter is defined as CLASS=H
and later on in JCL we use SYSOUT=&&CLASS

At runtime SYSOUT=&&CLASS will be relaced by SYSOUT=H.

Hence here we have used CLASS as a symbolic paramter and
its usage is to increase maintainability because if later
we need to change the class it can be changed just at one
place instead of changing it at all the palces of it's
usage.

Is This Answer Correct ?    38 Yes 16 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to run batch program without jcl?

10037


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

844


Is there any command to check wether the ps file is in sorted order?

2416


Explain how can the submitting users racf authority be overridden in a job stream?

661


how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?

784






What is the motivation behind coding class parameter in job statement?

670


What is the purpose of the dd keylen parameter?

705


Explain the purpose of dd dummy statement?

658


What is the function of the dd dcb keyword?

810


what is DD statement is used in JCL?

669


what is the use of IEBGENER utility?

648


what is “Cond= even” and “Cond=only”?

728


What do you understand by the terms: joblib and steplib?

610


Why block size is multiple of lrecl in jcl?

898


What do we mean by 'Virtual storage' for a dataset and for a JOBSTEP ? What is the significance of the following statement for a programmer 'Virtual storage results in program addresses being independent of the addresses that actually exist in a computer' ?

1570