View previous topic :: View next topic |
Author |
Message |
tidda Beginner

Joined: 02 Dec 2002 Posts: 24 Topics: 6 Location: India
|
Posted: Wed Dec 11, 2002 10:07 am Post subject: how to execute a rexx program from a clist ? |
|
|
I need to execute a rexx program from a clist. But don't know how.
thanks. |
|
Back to top |
|
 |
tidda Beginner

Joined: 02 Dec 2002 Posts: 24 Topics: 6 Location: India
|
Posted: Thu Dec 12, 2002 7:53 am Post subject: |
|
|
Hi Ravi,
that helped, thanks.
tidda |
|
Back to top |
|
 |
Dibakar Advanced

Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Sun Apr 11, 2004 11:27 pm Post subject: |
|
|
Hi,
I have a rexx routine to find jobid as below
Code: |
/* Main REXX */
...
parse value getjobinfo() with jobname'/'jobid'/'msgclass'/'class .
say jobname
...
exit
getjobinfo: procedure
...
return jctjname'/'ssibjbid'/'jctjmgpo'/'jctjcsmf
|
Now one of my colleague want's to use this getjobinfo routine in CLIST. Can anyone tell me what should be clist to use this rexx.
Thanks,
Diba. |
|
Back to top |
|
 |
|
|