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 |
Have you code any new programs in COBOL ? What is the functionality of the programs?
Write a program that uses move corresponding.
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
how can u redefine picx(10) with pic 9(6).
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
What is report-item?
study the following code 01 A1 05 B PIC 99 05 C PIC X(4) 01 A2 05 B PIC 99V99 05 C PIC A(4) pick out the valid statement from the following a.A1 and A2 can not have sub-ordinates b.A1 and A2 can have the same sub-ordinates but must have same PIC clause c.there is nothing wrong d.A1 and A2 can have same sub-ordinates provided they are not at 01 level
When would you use in-line perform?
What are some examples of command terminators?
if a pic 9(3) value 354,b pic x(2) value '46' then a)a>b 2)a<b 3)error
What is the difference between Perform para and perform asaection in cobol?
Write the code implementing the perform … varying.