Rexx calling clist

2014-03-31 Thread Micheal Butz
Hi I took many if your suggestion that in order to get my TSOLIB working have it sitting a clist I coded the simplest possible Rexx exec /* Rexx */ Call CLISTLIB Address TSO LISTALC The CLISTLIB Proc 0 TSOLIB The clist fails horribly it is called by the Rexx exec as I turn on tracing But

Re: Rexx calling clist

2014-03-31 Thread Dave Salt
It's been a long time since I coded CLIST but I think Proc should be PROC. Dave Salt SimpList(tm) - try it; you'll get it! http://www.mackinney.com/products/program-development/simplist.html Date: Mon, 31 Mar 2014 18:12:18 -0400 From: michealb...@optonline.net Subject: Rexx calling

Re: Rexx calling clist

2014-03-31 Thread Paul Gilmartin
On Mon, 31 Mar 2014 18:12:18 -0400, Micheal Butz wrote: Call CLISTLIB Address TSO LISTALC And the TSOLIB I get invalid syntax seems it thinks the clist is a Rexx exec even thought I don't have Yup. Try: address TSO '%CLISTLIB' (If I got the quotes right this time.) -- gil

Re: Rexx calling clist

2014-03-31 Thread Micheal Butz
it; you'll get it! http://www.mackinney.com/products/program-development/simplist.html Date: Mon, 31 Mar 2014 18:12:18 -0400 From: michealb...@optonline.net Subject: Rexx calling clist To: IBM-MAIN@LISTSERV.UA.EDU Hi I took many if your suggestion that in order to get my TSOLIB working

Re: Rexx calling clist

2014-03-31 Thread Micheal Butz
://www.mackinney.com/products/program-development/simplist.html Date: Mon, 31 Mar 2014 18:12:18 -0400 From: michealb...@optonline.net Subject: Rexx calling clist To: IBM-MAIN@LISTSERV.UA.EDU Hi I took many if your suggestion that in order to get my TSOLIB working have it sitting a clist I coded

Re: Rexx calling clist

2014-03-31 Thread Steve Comstock
On 3/31/2014 4:54 PM, Micheal Butz wrote: Clist calling Rexx works But isn't your example REXX calling CLIST? That doesn't work. -Steve Sent from my iPhone On Mar 31, 2014, at 6:53 PM, Steve Comstock st...@trainersfriend.com wrote: Try EXEC'ing your CLIST, maybe exec 'library

Re: Rexx calling clist

2014-03-31 Thread Micheal Butz
Right !!! Sent from my iPhone On Mar 31, 2014, at 7:03 PM, Steve Comstock st...@trainersfriend.com wrote: On 3/31/2014 4:54 PM, Micheal Butz wrote: Clist calling Rexx works But isn't your example REXX calling CLIST? That doesn't work. -Steve Sent from my iPhone On Mar 31

Re: Rexx calling clist

2014-03-31 Thread Steve Comstock
/products/program-development/simplist.html Date: Mon, 31 Mar 2014 18:12:18 -0400 From: michealb...@optonline.net Subject: Rexx calling clist To: IBM-MAIN@LISTSERV.UA.EDU Hi I took many if your suggestion that in order to get my TSOLIB working have it sitting a clist I coded the simplest possible

Re: Rexx calling clist

2014-03-31 Thread Micheal Butz
...@trainersfriend.com wrote: On 3/31/2014 4:54 PM, Micheal Butz wrote: Clist calling Rexx works But isn't your example REXX calling CLIST? That doesn't work. -Steve Sent from my iPhone On Mar 31, 2014, at 6:53 PM, Steve Comstock st...@trainersfriend.com wrote: Try EXEC'ing your CLIST

Re: Rexx calling clist

2014-03-31 Thread Jon Perryman
Just remove CALL because that implies you are calling a REXX function or REXX exec.  The clist name is unquoted. Since that variable name is not a defined REXX variable, you won't have a problem but you should get into the habit of quoting.  Jon Perryman.