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 COBOL programming, what is PERFORM? What is VARYING?
What is the difference between write & move in COBOL?
i have two file one is ksds another one is esds i want store matching records in flat file how to you matching.
Which division and paragraphs are mandatory for a COBOL program?
What are the access modes of START statement?
In a COBOL II PERFORM statement, when is the conditional tested, before or after the perform execution?
How many maximum number of procedures can we write in one COBOL program?
hie everyone.i just completed my b.tech in electronics and joined mainframes course.am i doing right course for my better future?please help me with your suggestions.ill be very thankful to you guys.
01 var1 pic x(10) 01 var2 redefines var1 pic 9(10). then in procedure division move 'abcde' to var1 then waht is the value of var1 and var2
What is ASKTIME, SUSPEND
What is the size of s9(19)comp3? explain
I have two questions here. 1. How to read a flat file in reverse order? 2. How to read a VSAM KSDS file in reverse order? In both the cases we donot know the total number of records.