wht is the d/f between positional parameter n keyword parameter ?
Answer Posted / ranjith
Positional Parameter: where the position of the parameters
cannot be changed and it has to follow as it is..
eg: let us say a,b,c are the parameters in jobcard
correct: //jobname job a,b,c
incorrect: //jobname job b,a,c
//jobname job a,c,b
Keyword parameter: where the position of the parameters be
changed/or an optional. Can be placed after Positional
parameters, if req.
eg: let us say a,b are positional parameters
c,d are keyword parameters
correct: //jobname job a,b,c,d
//jobname job a,b,d,c
incorrect: //jobname job a,c,b,d
//jobname job c,d,a,b
//jobname job acct-info(PP), 'pgrname'(PP),
// RESTART(KP), TYPRUN(KP), TIME(KP),
// REGION(KP)
| Is This Answer Correct ? | 22 Yes | 2 No |
Post New Answer View All Answers
which parameter is use to declare the name of dataset in dd statement?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
what is the use of IEBGENER utility?
Explain dfsort utility?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
How gdg are concatenated?
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
How jcl work to handle various input output file operations?
What is the function of //cntl statement?
Explain about ISPF/TSO Commands
What dd statement is used to supply the name of a dataset?
What are the 4 fields in dd statement?
can any one plzzzzzz tell the jcl code for creating ps using idcams
How to run cobol program using jcl?
List the different components of jcl statement?