View previous topic :: View next topic |
Author |
Message |
pgorthi Beginner
Joined: 13 Sep 2004 Posts: 33 Topics: 16
|
Posted: Thu Oct 21, 2004 7:55 am Post subject: Exit ISPF |
|
|
Hi,
if we want come out of the ispf screen we need to give LOGOFF. if i will change in one programe we no need to type. with out typing we can come. please tell where i want change the code.
Regrads,
pgorthi |
|
Back to top |
|
|
ofer71 Intermediate
Joined: 12 Feb 2003 Posts: 358 Topics: 4 Location: Israel
|
Posted: Thu Oct 21, 2004 8:44 am Post subject: |
|
|
I realy didn't understand your question, but LOGOFF is a TSO command to end a session, not an ISPF command.
To leave an ISPF screen, you use END/CANCEL/EXIT.
O.
________
medical cannabis
Last edited by ofer71 on Sat Feb 05, 2011 11:20 am; edited 1 time in total |
|
Back to top |
|
|
Brian Beginner
Joined: 12 Aug 2003 Posts: 95 Topics: 6
|
Posted: Thu Oct 21, 2004 8:56 am Post subject: |
|
|
I guess i got what pgorthi wants. You could tweak your ISR@PRIM panel to include the logoff option (carefully) so that you need not exit from ISPF before logging off.
Cheers
Brian |
|
Back to top |
|
|
pgorthi Beginner
Joined: 13 Sep 2004 Posts: 33 Topics: 16
|
Posted: Thu Oct 21, 2004 9:00 am Post subject: |
|
|
Hi,
sorry. from TSO to ISPF when ever we go in that system will ask READY then we will type LOGOFF. insteed of typing logoff always whenever we want to go ISPF. if we will include this LOGOFF command if we write in a CLIST dataset then no need to type this LOGOFF. if u understand this ok othewise tell me i will send screen shots.
Regards,
Pgorthi |
|
Back to top |
|
|
Phantom Data Mgmt Moderator
Joined: 07 Jan 2003 Posts: 1056 Topics: 91 Location: The Blue Planet
|
Posted: Sat Oct 23, 2004 3:36 am Post subject: |
|
|
pgorthi,
It basically differs with every installation. All you need to do is go to your clist / rexx which is invoked during login. In our shop we have a member called INITIAL inside (TSOXXXX.CLIST) dataset. this is our logon script. If you r succesful in finding ur logon script then all you need to do is to code "LOGOFF" below the "iSPF" command.
Example:
Code: |
/* REXX */
--- Rexx Library allocations ----
...
"CONCAT (SYSEXEC SYSEXEC1 SYSEXEC2)"
.....
"ISPF"
"LOGOFF"
|
Any commands that you code below "ISPF" will be executed during Exit (In the REady prompt). So when u code "LOGOFF" there, u will automatically get logged off.
Hope this helps,
Thanks,
Phantom |
|
Back to top |
|
|
semigeezer Supermod
Joined: 03 Jan 2003 Posts: 1014 Topics: 13 Location: Atlantis
|
|
Back to top |
|
|
|
|