Page 1 of 1

Display panel in logon procedure

PostPosted: Fri May 06, 2016 2:01 pm
by rexxman
Hi!

I'm trying to display a panel in a logon procedure:

Address ISPEXEC
"LIBDEF ISPPLIB DATASET ID('xxxx.xxxx.xxxx')"
"DISPLAY PANEL(mypanel)"

However, it returns the next message:
ISPS118L SERVICE NOT INVOKED. A VALID ISPF ENVIRONMENT DOES NOT EXIST.

¿It is posible that ISPF environment is not available until the logon procedure ends?

Thanks

Re: Display panel in logon procedure

PostPosted: Fri May 06, 2016 2:40 pm
by willy jensen
It depends on your login script. Normally a login script ends with the 'PDF' or 'ISPSTART' command, but you can change that to 'ISPSTART CMD(whatever)'. The command will run for all users of the login script at each screen invocation, also when splitting screen.

Re: Display panel in logon procedure

PostPosted: Fri May 06, 2016 3:07 pm
by rexxman
.... it runs. Perfect. Thanks.