what are the symbolic parameters? why do we use symbolic
parameters ?
Answer Posted / fayazsha.,
//MYJOB JOB(P,U202,SH1),'FRANK SMITH',CLASS=A
//STEP1 EXEC PGM=PROGRAM1,SYSTEM=PROD,DEPT=INV,TYPE=DATA
//FILEIN DD DSNAME=&SYSTEM..&DEPT..&TYPE,DISP=SHR
//FILEOUT DD DSNAME=&SYSTEM..&DEPT..DATA,DISP=
(NEW,CATLG,DELETE),
// AVGREC=U,SPACE=(80,(100,20),RLSE),
// DCB=(LRECL=80,RECFM=FB)
A.Referring to the above coding, what is the effective
dataset name for the data definition FILEOUT?
PROD.INV.DATA
Here we are referring the symbolic variable with single &
Ampersand.
| Is This Answer Correct ? | 51 Yes | 6 No |
Post New Answer View All Answers
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
What are the jcl procedures?
How can return codes be tested before execution of a job step?
Is their any set of rules for dd? Explain.
What is timing concept in mainframe?
how to compare two datasets without using superce because output is limited to 133 bytes
what is use of dcb parameter in dd statement?
Are there any set of rules for the names of the steps used in a job? What are they?
Name the statement which can be used to send data to another mvs jes3 node?
What is the function of the dd avgrec keyword in sms datasets?
What are the 4 fields in dd statement?
Explain about LMQUERY�give a dialog information about a data set
What is the motivation behind coding class parameter in job statement?
Does jcl support automatic restart?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you