Previous Topic: 5.2.1.3 CICCAC Usage Considerations

Next Topic: 5.2.2 CICS Application Unit Activity File (CICCAU)

5.2.1.4 CICCAC Retrieval Examples



In the examples, a SAS macro variable is used to specify the
DDname part of the CA MICS file name. These macro variables
are a standard part of CA MICS and are available for all
files. The macro variable name has the form &diiit, where d
is the database identifier, iii is the information area
name, and t is the timespan.  For the examples, a database
identifier of P is used.  The identifier is installation
dependent, so you should find out what the identifiers are at
your installation.

1.  Generate a horizontal bar graph of application
    executions by the first level of user identification.

      PROC CHART DATA=&PCICD..CICCAC01;
      HBAR CICACT1 / SUMVAR=CACTRANS DESCENDING;
      RUN;

2.  Generate a frequency table of the occurrence of
    ABENDing applications by transaction group, where
    transaction group is identified by the second-level user
    identifier.  Use month-to-date data.

      PROC FREQ DATA=&PCICM..CICCAC00;
         TABLES CICACT2 / NOROW NOCOL; WEIGHT CACABEND;
         RUN;