Previous Topic: 7.2.1 Record Identifiers and JCL – Account Data

Next Topic: 7.2.3 Record Identifiers and JCL - VM Monitor Data

7.2.2 Record Identifiers and JCL - CA VM:Account Data


When you press the PF4 key (Create/Edit Select File) from the
CA VM:Account Data Parameters panel, the CAVMACT SELECT File
is displayed.  Figure 7-4c is a sample of the XEDIT panel for
the CAVMACT SELECT file showing the distributed defaults.


+----------------------------------------------------------------------------+
|                                                                            |
|                           CA VM:Account Data Select File Edit              |
|                                                                            |
|    * * * Top of File * * *                                                 |
|    *                                                                       |
|    * VM:ACCOUNT SELECT/EXCLUDE OVERRIDE TABLE                              |
|    *                                                                       |
|    * FORMAT:                                                               |
|    *  MODE TYPE TYPE ....                                                  |
|    *                                                                       |
|    * WHERE:                                                                |
|    * MODE = SELECT OR EXCLUDE                                              |
|    * TYPE = ACCOUNT RECORD TYPE CODE                                       |
|    *                                                                       |
|    * EXAMPLE:                                                              |
|    *  SELECT *                                                             |
|    *  EXCLUDE C0          ! EXCLUDE ALL USER RECORDS (EVEN RSCS)           |
|    *                                                                       |
|    * IN THIS EXAMPLE RECORD 1 CAUSES ALL RECORD TYPES TO BE INCLUDED,      |
|    * RECORD 2 CAUSES ALL SCHEDULE AND RESPONSE DATA TO BE EXCLUDED         |
|    *                                                                       |
|    * NOTE: THE '*' INDICATES ALL.                                          |
|    *                                                                       |
|      SELECT  *                      ! SELECT ALL RECORDS                   |
|      EXCLUDE 04 05 06 02            ! EXCLUDE JOURNAL RECORDS              |
|      UNKNOWN SELECT                 ! SELECT THE UNRECOGNIZED RECORDS      |
|    *                                                                       |
|  * * * End of File * * *                                                   |
|               PF1: Help              PF4: Syntax Check File                |
+----------------------------------------------------------------------------+


 Figure 7-4c.  CA VM:Account Data Select File Edit Panel

Record identifiers for Account data are two characters long.
Record identifiers coded as one character long are padded
with a leading zero.  Alphabetic characters in the identifier
must be in the same case (upper or lower) as the input data.
Currently, all IBM records use uppercase letters in the
identifier.

To specify all Account record types, code an asterisk (*) as
the record identifier.  See Figure 3-1, Account Data
Selection Report, for the available record identifiers.

EXAMPLE: Select resource usage, device usage, and RSCS (user)
records.

    EXCLUDE *           ! drop everything
    SELECT  1 2 3       ! normal resource and device data
    SELECT  C1 C2 C3    ! batch resource and device data
    SELECT  C0          ! RSCS and all other user records
    UNKNOWN EXCLUDE     ! drop all custom records
VM:ACCOUNT DATA JCL

When you use PF key 5 to create or edit the JCL from the CA
VM:Account Data Parameters panel, use the following screen.


+-----------------------------------------------------------------------------+
|                       CA VM:Account Data Transfer JCL Edit                  |
|                                                                             |
|                         Press PF1 for HELP                                  |
|                                                                             |
| * * * Top of File * * *                                                     |
| //*                                                                         |
| //* CA VM:Account DATA TRANSMISSION VIA SPOOL                               |
| //*                                                                         |
| //         EXEC PGM=VMTRCV,REGION=1024K                                     |
| //STEPLIB  DD   DISP=SHR,DSN=sharedprefix.MICS.LOAD                         |
| //PRINT    DD   SYSOUT=*,DCB=LRECL=81                                       |
| //SYSUDUMP DD   SYSOUT=*                                                    |
| //OUTPUT   DD   DISP=(NEW,CATLG),SPACE=(CYL,(15,15),RLSE),                  |
| //              UNIT=SYSINT,DSN=prefix.CAVM.ACCOUNT.DATA,                   |
| //              DCB=(BLKSIZE=23440,RECFM=VB)                                |
| //INPUT    DD   DATA,DLM='++'                                               |
| ++                                                                          |
| //                                                                          |
| * * * End of File * * *                                                     |
+-----------------------------------------------------------------------------+

 Figure 7-4d.  CA VM:Account Data Transfer JCL Edit Panel