Previous Topic

Next Topic

Book Contents

Book Index

Defining Cabinets to Control-M/Tape

The CTTCTR1 conversion program, which is compiled by the CONVTASM job, builds the database work file from CA-TLMS reports 4 and 10. If you specified Y for the CABINET parameter in Step 1, you must define the appropriate cabinets in this program before running the CONVTASM job.

  1. Edit the CTTCTR1 member in the IOA SAMPEXIT library.
  2. Look for the CABINET symbol to locate the CABINET table. This is the table that is used to convert the CA-TLMS cabinets to Control-M/Tape slot numbers (see Figure 9).

    Figure 9 CABINET table format in CTTCTR1 member

CABINET  EQU *

LOC_ID   DC  C'LO'                  <=== CHANGE

CAB_ID   DC  C'ID'                  <=== CHANGE

CABSTART DC  FL4'1000'              <=== CHANGE

CABENTRY EQU *-CABINET

         DC  C'V1',C'AA',FL4'1100'  <=== CHANGE

         DC  C'V1',C'AB',FL4'1200'  <=== CHANGE

         DC  C'V2',C'AA',FL4'1300'  <=== CHANGE

         DC  C'V2',C'AB',FL4'1400'  <=== CHANGE

         DC  C'V3',C'AA',FL4'1500'  <=== CHANGE

         DC  C'V3',C'AC',FL4'1600'  <=== CHANGE

CABEND   DC  C'00',C'00',FL4'0'     END OF LIST

The CABINET table contains the following columns:

  1. Specify a Control-M/Tape starting slot number for each CA-TLMS cabinet identifier within each vault. The range of slot numbers must be unique in each vault.

    Example

    The following table shows one way to specify the Control-M/Tape starting slot numbers for each cabinet, with the resulting slot range:

    Table 14 Example specification of Control-M/Tape starting slot number

    Vault

    CA-TLMS cabinet and slot number

    Control-M/Tape starting slot number

    Resulting Control-M/Tape slot range

    V1

    AA (0-99)

    1100

    1100-1199

    AB (0-99)

    1200

    1200-1299

    V2

    AA (0-99)

    1300

    1300-1399

    AB (0-99)

    1400

    1400-1499

    V3

    AA (0-99)

    1500

    1500-1599

    AB (0-99)

    1600

    1600-1699

    V4

    AA (0-99)

    1700

    1700-1799

    AB (0-99)

    1800

    1800-1899

    The following figure shows how to edit the CABINET table to produce this result:

    Figure 10 Example format to convert CA-TLMS cabinet to Control-M/Tape cabinet

CABINET  EQU *

LOC_ID   DC  C'V1'                  VAULT V1

CAB_ID   DC  C'AA'                  CABINET AA

CABSTART DC  FL4'1100'              STARTING SLOT NUMBER 1100

CABENTRY EQU *-CABINET

         DC  C'V1',C'AB',FL4'1200'  V1 AB STARTING SLOT NUMBER 1200

         DC  C'V2',C'AA',FL4'1300'  V2 AA STARTING SLOT NUMBER 1300

         DC  C'V2',C'AB',FL4'1400'  V2 AB STARTING SLOT NUMBER 1400

         DC  C'V3',C'AA',FL4'1500'  V3 AA STARTING SLOT NUMBER 1500

         DC  C'V3',C'AB',FL4'1600'  V3 AB STARTING SLOT NUMBER 1600

         DC  C'V4',C'AA',FL4'1700'  V4 AA STARTING SLOT NUMBER 1700

         DC  C'V4',C'AB',FL4'1800'  V4 AB STARTING SLOT NUMBER 1800

CABEND   DC  C'00',C'00',FL4'0'     END OF LIST

In this example CABINET table

  1. After you have edited the CTTCRT1 member, submit job CONVTASM. All job steps must end with a condition code of 0.

Parent Topic

Step 2: Compile and Link Conversion Programs