what is the meaning of keyword in jcl?what is is opposite?
Answer Posted / krithiga hari
There are two types of parameters in JCL. They are keyword
parameters and positional parameters. Keyword parameters
follow the positional parameters. Keyword parameters should
be specified in the same order. Positional parameters need
not be specified in a fixed order.
| Is This Answer Correct ? | 0 Yes | 15 No |
Post New Answer View All Answers
Differentiate between addressing mode and run mode.
How do you overcome this limitation ?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
Which dd parameters are required?
what is DSN parameter and DISP parameter is used for?
How can a jobs execution priority be modified?
Why block size is multiple of lrecl in jcl?
in ways data can be passed to a COBOL program from JCL?
how you can access an uncataloged dataset in a JCL?
Explain dd statement in jcl?
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.
Explain the function of //cntl statement?
how do you code a null statement?
what is use of disp parameter in dd statement?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?