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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ISPS102 Invalid Service Name 1

Status
Not open for further replies.

Mottus

Programmer
Jun 7, 2004
2
GB
Hi I'm new to REXX.

I have a piece of REXX which reads an MVS PDS using EXECIO. This works happily - however, I've added a LIBDEF to temporarily allocate a new ISPPLIB dataset. Now I get an ISPS102 Invalid Service Name against the EXECIO.

Any ideas anyone?
 
??? maybe you have switched to a different environment e.g.
Code:
address ispexec;
'LIBDEF blah blah';
..
..
'EXECIO * DISKR.....';
maybe you should change back to
Code:
address TSO;
before issuing the EXECIO? Or just
Code:
address ispexec 'LIBDEF blah blah';
all on one line so it only switches for the duration of the libdef?
 
Many thanks. the ADDRESS TSO worked like a charm.

Cheers
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top