IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Help with SELECT command


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
John Poulakos

Active User


Joined: 13 Jun 2012
Posts: 178
Location: United States

PostPosted: Tue Mar 18, 2014 1:06 am
Reply with quote

I'm not a CLIST/REXX expert, by any stretch of the imagination, but my interpretation of this statement is it will attempt to open a REXX or CLIST found in the normal search order:

"ISPEXEC SELECT CMD(CALL *(CAZPMSEL)) ",
" NEWAPPL(CAZ3) PASSLIB MODE(FSCR) "

My problem is, CAZPMSEL is in a load library, not a REXX or CLIST library.

Am I interpreting this statement correctly? I'm getting this error: MEMBER CAZPMSEL NOT FOUND WITHIN THE STANDARD SEARCH ORDER
Back to top
View user's profile Send private message
John Poulakos

Active User


Joined: 13 Jun 2012
Posts: 178
Location: United States

PostPosted: Tue Mar 18, 2014 2:57 am
Reply with quote

It was moved from Rexx/CLIST? I don't understand.
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Tue Mar 18, 2014 3:31 am
Reply with quote

It would help if you issued PROFILE MSGID before invoking the exec. It should provide a messages number that you can search for.

If you say: SELECT CMD(%myprog)
It searches rexx and clist only.

If you say: SELECT CMD(myprog)
It searches rexx and clist followed by load module search.

If you say: CALL *(myprog)
It searches load modules only. This is probably where you are failing. How are you adding your library to the standard search order. Perhaps you can get by by adding to the ISPLLIB concatenation before you start ISPF.

Consider using LIBDEF followed by: SELECT PGM(myprog)
You should read the discussion of 'User link libraries' in the ISPF Services manual, under LIBDEF.
Back to top
View user's profile Send private message
John Poulakos

Active User


Joined: 13 Jun 2012
Posts: 178
Location: United States

PostPosted: Tue Mar 18, 2014 4:01 am
Reply with quote

Thank you very much! That is just what I needed. I didn't know what it searched with this command. Now that I know, I found the problem. The library it needed to search should have been linklisted. It wasn't.
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts RACF - Rebuild SETROPTS command which... All Other Mainframe Topics 3
No new posts Routing command Address SDSF to other... TSO/ISPF 2
No new posts DTL - how to define key with stacked ... TSO/ISPF 3
No new posts LTJ command CA Products 4
No new posts Dynamically pass table name to a sele... DB2 2
Search our Forums:

Back to Top