Technical Considerations › CA Auditor as a Standard ISPF/PDF Application › Add CA Auditor Data Sets to the TSO Logon Procedures
Add CA Auditor Data Sets to the TSO Logon Procedures
Libraries that contain TSO logon procedures usually are update‑protected. You can make a copy of the logon procedure, update it as described next, and turn it over to the appropriate data center personnel for implementation.
Follow these steps:
- Identify your TSO logon procedure. If you do not know the name of your TSO logon procedure, invoke the following EXAMPROC CLIST to identify it:
EXEC 'prefix.EXAMINE.CLIST(EXAMPROC)'
If CA Auditor was installed using SMP/E, the data set is named prefix.CAICLS0 rather than prefix.EXAMINE.CLIST.
- Identify the procedure library (proclib) that contains your TSO logon procedure.
- Update the ISPF/PDF message data set list. The data sets concatenated under the ISPMLIB ddname are searched to locate messages that ISPF/PDF applications, including CA Auditor, generate. Add the library named prefix.EXAMINE.MESSAGES (prefix.CAJ0MSG0 for SMP/E installations) to the ISPMLIB concatenation.
- Update the ISPF/PDF program library list. ISPF/PDF first searches the data sets concatenated under the ISPLLIB ddname to locate programs invoked under CA Auditor control. If this ddname is present in your logon procedure, add the library named prefix.EXAMINE.LOAD (prefix.CAJ0LOAD for SMP/E installations) to the concatenation list. If the ISPLLIB ddname is not present, add that library to the STEPLIB ddname concatenation.
If CA Auditor was installed with the CA Panvalet Access Method (PAM) add the CA Panvalet load library that contains the PVPVLAMS program to the ISPLLIB or STEPLIB concatenation.
- Update the ISPF/PDF panel data set list. The data sets concatenated under the ISPPLIB ddname are searched for the menus, data entry, and data display panels CA Auditor presents. Add the library named prefix.EXAMINE.PANELS (prefix.CAJ0PNL0 for SMP/E installations) to the ISPPLIB concatenation.
- Update the ISPF/PDF table data set list. The data sets concatenated under the ISPTLIB ddname are searched to locate permanent and saved command tables ISPF/PDF applications created. Add the prefix.EXAMINE.TABLES (prefix.CAJ0TBL0 for SMP/E installations) library to the ISPTLIB concatenation.
- Update the TSO CLIST data set list. TSO searches the data sets concatenated under the SYSPROC ddname to locate command lists (CLISTs). CLISTs invoke CA Auditor when an ISPF/PDF menu option is not provided. If you want to invoke CA Auditor using a CLIST, add the library named prefix.EXAMINE.CLIST (prefix.CAJ0CLS0 for SMP/E installations) to the SYSPROC concatenation.
- Add CA Auditor database data sets. CA Auditor uses two databases:
- The user profile database (DBASE1)
- The system knowledge database (DBASE2).
Add a DD statement for each database to the TSO logon procedure:
//DBASE1 DD DSN=prefix.EXAMINE.DBASE1,DISP=SHR
//DBASE2 DD DSN=prefix.PRODHLQ.CAJ0DATA,DISP=SHR
(For SMP/E installations, the data set names for DBASE1 and DBASE2 are prefix.CAIDBS1 and prefix.CAIDBS2.). If you are a CA Panvalet user, see the appendix “Interfacing with Other Products” for information about additional logon procedure requirements.