Page 1 of 1

Running cobol from rexx program

PostPosted: Mon Jul 14, 2008 10:54 am
by fazillatheef
How can I run a cobol program from a rexx program? the cobol program is compiled and the load module is available to me in a data set named CACD213.COBOL.LOAD(PROG1).

Thanks in advance

Fazil Abdul Lathif

Re: Running cobol from rexx program

PostPosted: Mon Jul 14, 2008 12:14 pm
by dick scherrer
Hello,

This should work:
Address TSO "CALL 'CACD213.COBOL.LOAD(PROG1)' " 

Re: Running cobol from rexx program

PostPosted: Mon Jul 14, 2008 3:10 pm
by fazillatheef
@dick scherrer
thank you very much

Re: Running cobol from rexx program

PostPosted: Mon Jul 14, 2008 11:07 pm
by dick scherrer
You're welcome :)

d