How can you pass values from COBOL program to non-COBOL
programs?
Answers were Sorted based on User's Feedback
Answer / guest
you can pass values from cobol to JCL by using return code
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / latha
Through Stored Procedures the values can be passed to and
from the cobol to non-cobol programs (eg java program)
| Is This Answer Correct ? | 0 Yes | 0 No |
in a indexed file what is procedure for read the records from 12 to 18. please give the code example
Why would you use find and get rather than to obtain?
How do we get current date from system with century in COBOL?
How do you code Cobol to access a parameter that has been defined in JCL?
Write a cobol program making use of the redefine clause.
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
Can you call an OS VS COBOL pgm from a VS COBOL II pgm ?
what is the advantage of using redefines instead of delaring the variables ?
what happens if we dont close cursor in db2-cobol pgm?
What is amode(24)?
which of the following can be used as a check protection symbol a.Z b.S c.* d.+
The following entries appear in the WORKING-STORAGE SECTION: 01 DATE-TODAY. 05 YY PIC XX VALUE "90". 05 MM PIC XX VALUE "12". 05 DD PIC XX VALUE :31". 01 DATE-EDIT PIC XX/XX/XX. MOVE DATE-TODAY TO DATE-EDIT. (a) 901231 (b) 90/12/31 (c) 31/12/90 (d) 311290