This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Asynchronous RM/COBOL CALL

Hi -

 

I have situation .  I want to call RM/COBOL program B from RM/COBOL program A but donot want to wait for response. 

 

Am I able to do using RM/COBOL?

  • Verified Answer

    0

    Seems like the simplest way would be to use CALL "SYSTEM" to execute a runcobol command line, which will start another instance.  Simple parameters can be passed using the runcobol A option, or even the switches (as a throwback to the 1960s!).  More complex parameters can be passed by exporting data to a temp file and using the A parameter to specify the filename of the parameters.  (For the latter case, I would use XML Extensions to substantially reduce the burden of the export and import of complex parameters.)

  • 0 in reply to 

    Thanks