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

REXX syntax error

Status
Not open for further replies.
Joined
Oct 10, 2002
Messages
4
Location
US
I'm getting the following syntax error. The application is trying to launch a menu onto the user's desktop. Any ideas on how to correct this problem?

Code:
>>>   "SELECT CMD(%DMSUMAIN T30.V1P5 DEFAULT LOGO) NEWAPPL(DMS) PASSLIB"
INVALID COMMAND NAME SYNTAX ]
 
This looks a little like an ISPF Panel selection line. Is it?
 
was an ADDRESS ISPEXEC issued prior to this line?
 
From what I can understand, the SELECT command is supposed pass control to subroutine DMSUMAIN, passing 'T30.V1P5' and 'DEFAULT' and 'LOGO' parameters. But the SELECT command isn't working, so it never gets to Subroutine DMSUMAIN. Had the command worked, the program would have launched an ISPF menu panel.
 
Will the command work in ISPF ?

bobh
 
No, it won't work as a stand-alone command. The error message says it has to be done from within the calling program.
 
Yes, ADDRESS "ISPEXEC" was issued prior to that command.
 
It sure still looks like an ISPF Panel selection to me.

Try

ADDRESS TSO

"%DMSUMAIN T30.V1P5 DEFAULT LOGO"

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top