z/OS MVS Programming: Writing Transaction Programs for APPC/MVS
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Enabling an LU for User-Level TP Profiles

z/OS MVS Programming: Writing Transaction Programs for APPC/MVS
SA23-1397-00

When testing a TP either under a TSO/E user ID or under APPC/MVS scheduling, you must ensure that the associated local LU is defined to handle a user-level TP profile, which is described in Requesting a User-Level or Group-Level TP Profile. To enable an LU for user-level TP profiles, specify the TPLEVEL(USER) parameter on the LUADD statement in the APPCPMxx parmlib member that defines the local LU.

The following example shows how to create an LUADD statement that enables user-level TP profiles for TPs associated with LU MVSC6LU1:

  LUADD ACBNAME(MVSC6LU1)    /* Add LU to APPC/MVS configuration   */
        SCHED(ASCH)          /* Specify that APPC/MVS transaction  */
                             /* scheduler is associated with LU    */
        TPDATA(APPC.APPCTP)  /* The VSAM data set APPC.APPCTP is   */
                             /* permanent repository for the TP    */
                             /* profiles for this LU.              */
        TPLEVEL(USER)        /* Indicates that this LU can process */
                             /* incoming requests at all audience  */
                             /* levels, including those that limit */
                             /* use of a TP to individual users.   */

For more information about how to set processing levels for LUs, see the "Planning Sessions" chapter in z/OS MVS Planning: APPC/MVS Management.

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014