Installing the Dialog under Application Manager

The TSO/E Information Center Facility program ICQASLI0 which is used by the dialog must be added to the list of names of programs that must be authorized when called by the TSO/E Service Facility. The same IKJTSOxx member that follows shows this specification requirement.

Figure 1. Sample IKJTSOxx PARMLIB member
/*********************************************************************/
/*MVSAPPC                                                            */
/* 1.  Authorize the command list                                    */
/* 2.  Authorize the program list                                    */
/* 3.  Identify the list of commands that cannot be issued in the    */
/*     background.                                                   */
/* 4.  Create the defaults for SEND command                          */
/*********************************************************************/

AUTHCMD NAMES(                 /* AUTHORIZED COMMANDS */       +
   RECEIVE                     /*   TSO COMMANDS      */       +
   TRANSMIT XMIT               /*                     */       +

      .
      .
      .

AUTHPGM NAMES(                 /* AUTHORIZED PROGRAMS */       +
   GIMSMP                      /* S.M.P./E            */       +

      .
      .
      .

NOTBKGND NAMES(          /* COMMANDS WHICH MAY NOT BE */       +
                         /* ISSUED IN THE BACKGROUND  */       +
   OPER    OPERATOR            /*                     */       +
   TERM    TERMINAL)           /*                     */

AUTHTSF NAMES(      /* PROGRAMS TO BE AUTHORIZED WHEN */       +
                /* CALLED THROUGH TSO SERVICE FACILITY*/       +
   ICQASLI0      /* FOR APPC/MVS DIALOG */       +

      .
      .
      .

SEND                         /* SEND COMMAND DEFAULTS */       +
   OPERSEND(ON)                /*                     */       +

      .
      .
      .

Optionally, the default values used for allocation and selection fields in the dialog may be changed by updating member ICQASE00 in the Information Center Facility panel library. The sample member that follows illustrates some of the defaults that may be changed. For a complete description of these specifications, see z/OS TSO/E Customization.

Figure 2. Sample ICQASE00 ICF Member
/* NAME:  ICQASE00

)BODY
)INIT
/*******************************************************************/
/*The following customizable values are used in the allocation     */
/*of the datasets for APPC Administration:                         */
/*                                                                 */
/*  SYSSDIN  - Input to the APPC Administration Utility            */
/*  SYSSDOUT - Output from the APPC Administration Utility         */
/*  SYSSDPRT - Output from the APPC Administration Utility         */
/*  SYSSDATA - JCL for ASCH TP Profile or Non-ASCH scheduler data  */
/*                                                                 */
/*Recommendations:  Do not decrease space to less than 50,10       */
/*******************************************************************/
 &QASSDIN  = 'BLKSIZE(3120) SPACE(50,10)'
 &QASSDOUT = 'BLKSIZE(3120) SPACE(50,10)'
 &QASSDPRT = 'BLKSIZE(3120) SPACE(50,10)'
 &QASSDATA = 'BLKSIZE(3120) SPACE(50,10)'

 VPUT (QASSDIN QASSDOUT QASSDPRT QASSDATA) SHARED
       ⋮
/*******************************************************************/
/* QASCLASS is a customizable list containing values for the       */
/* scheduler class field of an "ASCH" TP Profile.                  */
/* These values represent the scheduler class when the TP is       */
/* attached.                                                       */
/*******************************************************************/
 &QASCLASS = 'A B'

 VPUT (QASCLASS) SHARED

/*******************************************************************/
/* Default dataset name for Model JCL                              */
/*******************************************************************/
 &QASMODDF = 'APPC.TPMODEL.JCL'

 VPUT (QASMODDF) SHARED

/*******************************************************************/
/*Default dataset names for the system data files.  If the system  */
/*file is blank, these names will be substituted.                  */
/*******************************************************************/
 &QASTPDEF = 'APPC.APPCTP'
 &QASSIDEF = 'APPC.APPCSI'
 &QASDBDEF = 'APPC.APPCTP'

 VPUT (QASTPDEF QASSIDEF QASDBDEF) SHARED
       ⋮
)PROC
)END