How can you pass values from COBOL program to non-COBOL programs?

Questions by mftechrao

Showing Answers 1 - 4 of 4 Answers

angadala

  • Apr 17th, 2006
 

If u want to pass values from jcl to cobol use "parm" parameter in the exec statement and in the cobol program declare the linkage section for the values to be passed.If u want to pass values from cobol to other non-cobol programs this can be done by call by reference or call by value.ex: call pgma using ws-name, ws-sex.

kiran

  • Apr 18th, 2006
 

hi,

in the call statement use the USING class to pass values to the calling program. The calling program may be of any language. Receive the passed values in the called program according to the syntax rules of that program.

  Was this answer useful?  Yes

mark

  • Oct 23rd, 2006
 

1. IBM-MQ series are designed to arrange a communications between different platforms and can also be used to pass parameters to programs with different languages.

NDM on mainfraime side and FTP on Client Server arrange a data communication.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions