in cobol main pgm is calling sub pgm but sub pgm does not
exists , what abend i get if submit the job?
Answers were Sorted based on User's Feedback
Answer / kiran
i think it will be s806...ie load module not found
| Is This Answer Correct ? | 13 Yes | 0 No |
01 a pic x(4) value 'abcd' 01 b pic 9(3) can we move from a to b.if possible what would be stored in b.
How do you compile cobol program..?
Which mode is used to operate the sequential file?
Explain how you can characterize tables in cobol?
how to access vsam files in cobol and how to differentiate that this is ESDS file
Which of the following EDITind and PICTURE symbols is to be used if a minus(-) is to appear before the value if the value is -ve and a plus(+) is to appear before the value if the value is +ve? (a) + (b) - (c) + OR (d) It is not possible
what is the diff b/w select stsmt and cursor ?
which one is the best of com and com-3.using of real time ?
how to pass 100 to s9(4) how r they inserted ?
How to Pass table from a cobol program to another cobol program and how to use that table in called program
what happens when a copybook variables are declared using include statement ?
If A>B next sentence end-if display 1 display 2. display 3. If a>b, it will display only 3.(the next sentence, ie., after fullstop/period) ____________________________________ if a>b continue end-if display 1 display 2. display 3. If a>b, it Will display 1 2 3 (the next statement) ____________________________________ if a>b continue display 1 end-if display 2 display 3. display 4. If a>b, Will it display 2 3 4 (or) 1 2 3 4 ?