Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Calling PL/I

Status
Not open for further replies.

rexxhead

Programmer
Jul 31, 2002
611
US
I want to call a PL/I program from a REXX routine, but I want to avoid specifying the load library name. The library is NOT in the LINKLIST.

I tried using TSOLIB without much success: specifying "*" for the DSN appears to work only for modules in the LINKLIST. Not specifying any DSN resulted in some very weird-looking parameter strings.

Anyway, I seem to have gone brain-dead on this. Hopefully it's just the result of a long weekend...


Frank Clarke
Tampa Area REXX Programmers' Alliance
REXX Language Assn Listmaster
 
Big Bad Bill! Good to see your fingerprints again ;-)

I have a program in my own library that I want to call everytime someone exercises one of my tools. I pass it userid and toolname; the program opens a VSAM KSDS and does a READ-KEY; bump the counter; WRITE-KEY; close. A few tools are executed from READY-mode; most are executed from within ISPF; some will work anywhere. I want one solution for all of them. Right now I have this kludgy chunk of code that asks "TSO-or-ISPF?" and adjusts its behavior accordingly. It offends my tender sensibilities.

Frank Clarke
Tampa Area REXX Programmers' Alliance
REXX Language Assn Listmaster
 
Hello Rexxhead,

Can not you just change the logon proc and add your library ?

Regards,

Tzu
 
I can't think of any scenario in which an installation would change a logon proc to accommodate a user load library. In this case there are at least six (6) distinct procs serving six distinct user communities that would all have to be changed.

Frank Clarke
Tampa Area REXX Programmers' Alliance
REXX Language Assn Listmaster
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top