let's say I'm working at SDSF then I need to go 3.4 (panelid:ISRUDLP) then I want to return my last panel in SDSF when I exit 3.4
I do not want to do:
* =3.4
* press F9 (swap)
* Start (for new session to swap)
Just wanna type a shortcut for 3.4 like sc34 from any panel of ISPF or SDSF then would like to go 3.4 . When I leave the 3.4 panel I want to return my last panel.
Joined: 10 Mar 2005 Posts: 478 Location: Milan, Italy
Try to catalog this little rexx:
Code:
/*Rexx*/
trace n
parm = arg(1)
say ' Utility Section Menu'
address 'ISPEXEC'
'SELECT PANEL(ISRUTIL) OPT('PARM') NEWAPPL(ISP)'
When you do it you will able to call 3.4 with the command:
Code:
UT 4
or
Code:
UT 3
To go to 3.3 and so on.
When you will press PF3 to return, you will go back to the original screen.(If you were in SDSF you will return there after a PF3)