z/OS MVS Programming: Resource Recovery
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Adding RRS as an ISPF menu option

z/OS MVS Programming: Resource Recovery
SA23-1395-00

To add the RRS panels as an option on your ISPF primary panel, you should make a copy of the ISPF primary option menu — ISR@PRIM. Then, add the following information to the processing section of the panel:
  RRS,'PANEL(ATRFPCMN) NEWAPPL(RRSP)'

Make sure you concatenate the library containing your customized primary panel before any others in your logon procedure or CLIST.

The following example shows the two lines added to a copy of the ISPF primary panel. The two lines are highlighted in the example.

Figure 1. Example: Adding RRS as an Option on your ISPF Menu
------------------------  ISPF/PDF PRIMARY OPTION MENU  ----------------
%OPTION  ===>_ZCMD
%                                                          +USERID    -
%  0 +ISPF PARMS  - Specify terminal and user parameters   +TIME      -
%  1 +BROWSE      - Display source data or output listings +TERMINAL  -
%  2 +EDIT        - Create or change source data           +PF KEYS   -
%  3 +UTILITIES   - Perform utility functions
%  4 +FOREGROUND  - Invoke language processors in foreground
%  5 +BATCH       - Submit job for language processing
%  6 +COMMAND     - Enter TSO/E command or CLIST
%  7 +DIALOG TEST - Perform dialog testing
%  8 +LM UTILITIES- Perform library management utility functions
%  C +CHANGES     - Display summary of changes for this release
%  R +RRS         - RRS resource recovery information
%  T +TUTORIAL    - Display information about ISPF/PDF
%  X +EXIT        - Terminate ISPF using log and list defaults
%
+Enter%END+command to terminate ISPF.
%
)INIT
  .HELP = ISR00003
  &ZPRIM = YES        /* ALWAYS A PRIMARY OPTION MENU      */
  &ZHTOP = ISR00003   /* TUTORIAL TABLE OF CONTENTS        */
  &ZHINDEX = ISR91000 /* TUTORIAL INDEX - 1ST PAGE         */
  VPUT (ZHTOP,ZHINDEX) PROFILE
)PROC
  &ZSEL = TRANS( TRUNC (&ZCMD,'.')
                0,'PANEL(ISPOPTA)'
                1,'PGM(ISRBRO) PARM(ISRBRO01)'
                2,'PGM(ISREDIT) PARM(P,ISREDM01)'
                3,'PANEL(ISRUTIL)'
                4,'PANEL(ISRFPA)'
                5,'PGM(ISRJB1) PARM(ISRJPA) NOCHECK'
                6,'PGM(ISRPTC)'
                7,'PGM(ISRYXDR) NOCHECK'
                8,'PANEL(ISRLPRIM)'
                C,'PGM(ISPTUTOR) PARM(ISR00005)'
                R,'PANEL(ATRFPCMN) NEWAPPL(RRSP)'
                T,'PGM(ISPTUTOR) PARM(ISR00000)'
              ' ',' '
                X,'EXIT'
                *,'?' )
  &ZTRAIL. = .TRAIL
)END

There is an alternative way to access the RRS panels from the ISPF Main Menu. You can achieve this method by doing the following steps:

  1. Go to your ISPF Main Menu and choose option 7.1 to perform dialog testing:
    Option ===> 7.1
  2. After the ISPF Dialogue Test Menu is displayed, you can invoke the selection panel by doing the following steps:
    1. Put atrfpcmn in the panel option.
    2. Use atrk as the ID.
    3. Press ENTER to display the RRS main panel.
    PANEL  . . atrfpcmn
    Note: This panel is longer than what you see on the screen, make sure to scroll down to enter the ID.
    ID . . . atrk

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014