wht do u mean by (*,intrdr) wht is * used for ?
Answers were Sorted based on User's Feedback
Answer / shaan
(*,intrdr) is used to submit jcl from cobol program by
coding it as
//seqflo dd sysout=(*,intrdr),where seqflo is the file name
which contains the jcl statements to be submitted.
Here * represents the same msgclass coded in the job step.
| Is This Answer Correct ? | 9 Yes | 2 No |
What is the output generated by the following code? 01 GRP-I. 05 SUBFLD1 PIC XX VALUE "AB". 05 FILTER PIC X(6) VALUE SPACES. 01 GRP-2 REDEFINED GRP-1. 05 SUB-FLD2 PIC XX. 05 SUB-FLD3 PIC XX. 05 FILTER PIC X(4). IF SUB-FLD1 NOT = SPACES DISPLAY "SUBFLD1" MOVE "ABBCCD" TO GRP-1 IF SUB-FLD3 = SPACES DISPLAY "SPACES" ELSE DISPLAY "SUBFLD3" DISPLAY "END" ELSE DISPLAY "SPACES" DISPLAY "END". (a) SUBFLD1 SUBFLD3 END (b) SPACES END (c) SUBFLD1 END (d) SUBFLD1 SPACES
Differentiate cobol and cobol-ii. (Most of our programs are written in cobolii, so, it is good to know, how, this is different from cobol)?
how to code in cobol while using variable block file?
How do u find the programs calling the given module, without having doing 3.13 on loadlib/source library?
Whats the use of Examine command? can someone help me?
What is the difference between structured cobol programming and object alternativelyiented cobol programming?
2)Where the Plan is located in CICS-DB2?
What does the IS NUMERIC clause establish ?
what is record label is empty or standard in file description of data division?
How to display the index.(displacement from an array)
What is COMP-1? COMP-2?
Hi, My interviewer ask A calls B and C calls B, a and b are static c and b are dynamic.what happens if they compile and execute at same time.