Previous Topic: Update the Message Table

Next Topic: Start CA-L-Serv

Copy and Customize the Startup Procedure

The installation of CA‑L‑Serv places the startup procedure, LSVPROC, into the target procedure library YourdeployHLQ.CCCCSPROC. Copy the procedure to SYS1.PROCLIB or any of the system procedure libraries so that it can be accessed when CA‑L‑Serv is started.

The following template is provided:

//LSVPROC PROC PLIB='CAI.CCCSOPTN', (1)/* CA‑L‑Serv PARMLIB    */
//  AUTHLIB='CAI.CCCSLOAD',           (2)/* CA‑L‑Serv LOADLIB    */
//  MEMB=LDMPARM,                   (3)/* CA‑L‑Serv parm member*/
//  JCL='CAI.CCCSJCL,                (4)/* CA‑L‑Serv jcl lib    */
//  REUSE=YES,                      (5)/* Reuse CSA            */
//  SSN=LSRV                        (6)/* Subsystem name       */
//*
//********* CA‑L‑Serv *******************************************
//*
//* Use this procedure to start up L‑Serv using a console command
//*
//***************************************************************
//*
//LSERV    EXEC PGM=LDMMAIN,REGION=8M,DPRTY=(15,15),TIME=1440,
//         PARM=('ME=&MEMB','REU=&REUSE','SSNM=&SSN')
//*
//STEPLIB  DD DSN=&AUTHLIB,DISP=SHR
//LDMCMND  DD DSN=&PLIB,DISP=SHR
//SYSPRINT DD SYSOUT=A
//SYSTERM  DD SYSOUT=A
//SYSUDUMP DD SYSOUT=A
//INTRDR   DD SYSOUT=(A,INTRDR)
//ERRORLOG DD SYSOUT=A
//JCLLIB   DD DSN=&JCL,DISP=SHR

To customize the startup procedure

  1. Update the LDMCMND DD to reflect the name chosen for the CA‑L‑Serv parameter data set.
  2. Update the STEPLIB DD to reflect the name chosen for the CA‑L‑Serv Load Library.
  3. Specify the LDMPARM member of the LDMCMND PARMLIB that will be read by CA‑L‑Serv when it initializes.
  4. Update the JCLLIB DD to reflect the name chosen for the CA‑L‑Serv JCL Library.
  5. Specify REUSE=YES unless directed otherwise by CA Support.
  6. Specify a unique subsystem name.

Important! Do not define CA-L-Serv z/OS subsystems using the active IEFSSNxx member of SYS1.PARMLIB because doing so prevents CA-L-Serve and the associated products from initializing successfully.