what is the meaning of keyword in jcl?what is is opposite?
Answers were Sorted based on User's Feedback
Answer / praveen kumar bejjanki
In jcl, there are two types of parameters, positional and
keyword, Positional the name itself indicates that it
should follow some position. keywords should follow after
the positional parameters. Keyword parms can be in any
order, but they should be seperated by commas.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / preeti shinde
In JCl there are two types of parameter:
1- positional parameter. 2-keyword parameter.
positional parameter : in this there are two prarameters
i.e., accounting information and programmer name these two
parameters are mandatory. positional parameter are
identified by there position so they should be coded in
specific order. these are coded after operation field..
keyword parameters: these are coded after the positional
parameter and there is no specific order so we can code in
any order.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / 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 |
If we have 100 job steps in JCL and we want to excute steps only starting from 43 to 50, then how it can be coded in JCL/
what are the various stages of job processing?
How to pass values in jcl to cobol?
What is the purpose and meaning of the TIME keyword and what JCL statement is it associated with?
Why block size is multiple of lrecl in jcl?
restart logic ?
what is use of space parameter in dd statement?
what happens in execution stage in job processing?
How we can code in a jcl to execute a job in a particular time and date without using any job shudular?. (Eg) i want to execute a particular job at 8 am on 01/01/2010.
Is automatic restart possible in jcl? If yes, how?
What is SORT ? How do we eliminate duplicate records ? How do I select some records using SORT ?
In order to continue a job after a return code of 12 in step1, what the step2 exec statement include?