During CICS Startup, the PLT processing will first connect to the Datacom MUF to establish the Datacom CICS Services environment. In this process, any databases that are not listed in the AUTO= or DEFER= lists of the DBCVTPR module will be opened. DEFER-defined databases will only be opened when an explicit DBOC OPEN=### command is issued, and AUTO-defined databases will be opened when the first request is received in the CICS region.
Following the Datacom CICS Services processing, if Ideal is installed in this CICS region, the PLT process will build an in-core table of Ideal modules. In order to do this, the PLT program needs to access the Datadictionary, which is typically DBID 2, so this database needs to be open.
If the Datadictionary is not open, the PLT process will produce error messages:
IDAEPLTP01F - IDEAL PLT TASK TO BUILD IN-CORE MODULE TABLE FAILED
IDAEPLTP17F - DATADICTIONARY DETECTED DATABASE ERROR, RC=05-01
All supported releases
If the CICS region produces the IDAEPLT* error messages at startup, it is likely that the Datadictionary database was not opened, and it must be manually opened.
Every company has their method for defining and scheduling databases to open in the CICS region. A common philosophy is to have Datacom system databases, like the Datadictionary for example, opened during PLT processing by not including them in the AUTO= and DEFER= lists. If the Datadictionary database is opened during the PLT processing for Datacom CICS Services, then the Ideal PLT processing should run without error.
If the Datadictionary is not opened, and these errors are received, issue the DBOC OPEN=### transaction to open the Datadictionary, and then the next Ideal RUN command processed will cause the in-core module table to be built. Alternatively, the IDPI transaction, if defined, will also cause the table to be built.
For more information about the DBCVTPR definition of AUTO= and DEFER= databases, please see the following:
Datacom Tools 15.1, in the section, Customizing Datacom CICS Services > Specifying Generation Options (DBCVTPR)
As always, please contact Broadcom support for Datacom if you have further questions.