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
Matching Logic in Jcl not in cobol.Could any one please answer this question
Name a few IBM utility programs, and explain its function.
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?
Which statement is used to identify the private libraries in job?
What is condition checking in jcl? Is this possible?
How can the disposition of sysout datasets be set for an entire jobstream?
What do you know about jcl?
how to run batch program without jcl?
Are there any set of rules for the names of the steps used in a job? What are they?
List in order the hierarchical levels of jcl?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.
What is the function of job statement in jcl?
How to alter the parameters for the existing gdg?
Can I send output of job to my remote device careerride123?
How jcl work to handle various input output file operations?