wht is the d/f between positional parameter n keyword parameter ?
Answer / 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 |
Can we create VSAM file by using IEBGENER?
How to get cursor position from system in CICS environment ?
WHAT IS DUMMY IN JCL? HOW TO USE IT? CAN ANYBODY SEND PROGRAM ON THIS?
what is the alternative to model parameter?
In sms datasets, what is the function of the dd mgmtclas keyword?
What is DSNDB06 ?
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 ?
How to pass data to a program that is coded in an exec statement?
There are two steps in a JCl, the first one generates a report while the second step send an email saying the report has been generated, but the second steps should only be executed when the report file is non-empty. How can it be acheived. We may include steps in between.
What is GDG?
a input file contains 1000 records, how to move the first 500 record into one out put file and how to move to second 500 records to anothere output file
Explain the function of dd name parameter with a 2 part structure; audit.report?