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 SkipVought 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.
Oct 10, 2002
4
0
0
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?
 
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.
 
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