what is the meaning of keyword in jcl?what is is opposite?
Answer Posted / 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 |
Post New Answer View All Answers
List in order the hierarchical levels of jcl?
How does the jcl specify the job to os?
Suppose I have five jobs to do. But I want to hold one?
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
What is the function of the dd mgmtclas keyword in sms datasets?
Is it possible to left uncode disp?
what are the various stages of job processing?
Where can program checkpoints be stored for use in a restart?
A dd statement consists of 4 fields. Name them?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
How to do automated restart when a job abend?
which utility is used a dummy utility?
Why include statement is used in a jcl?
what sort card you will use to copy the data from one dataset to another dataset?
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.