Search Results cz_lce_load_specs
Overview
The CZ_LCE_LOAD_SPECS table is a core data object within the Oracle E-Business Suite Configurator (CZ) module, specifically for versions 12.1.1 and 12.2.2. It functions as a rules repository for logic file loading, a critical process in the Configurator runtime environment. The table defines the specific relationships and dependencies between different Explosion IDs (logical groupings of configuration data) that must be satisfied when loading configuration logic into memory. By storing these loading specifications, it ensures that all requisite data components are correctly and efficiently loaded to support a valid configuration session, thereby enforcing data integrity and completeness for the Configurator engine.
Key Information Stored
The table's structure centers on defining a ternary relationship between a logic container and two model reference explosions. Its primary key is a composite of three columns, which also serve as foreign keys to related master tables. The key columns are:
- LCE_HEADER_ID: A foreign key to CZ_LCE_HEADERS. This identifies the specific Logic Container (LCE) or logic file header to which this loading rule applies.
- ATTACHMENT_EXPL_ID: A foreign key to CZ_MODEL_REF_EXPLS. This identifies the primary model reference explosion or data component that is being attached or loaded.
- REQUIRED_EXPL_ID: A foreign key to CZ_MODEL_REF_EXPLS. This identifies a secondary model reference explosion that is a prerequisite or dependency for the ATTACHMENT_EXPL_ID. The rule dictates that the REQUIRED_EXPL_ID must be loaded for the ATTACHMENT_EXPL_ID to function correctly.
Common Use Cases and Queries
This table is primarily accessed during the initialization and loading phases of a Configurator session. A common operational query is to retrieve all dependency rules for a specific logic container to validate and prepare the load order. For example, to find all dependencies for a logic container with ID 1000:
SELECT attachment_expl_id, required_expl_id FROM cz_lce_load_specs WHERE lce_header_id = 1000 ORDER BY attachment_expl_id;Another critical use case is impact analysis during model updates. Developers or administrators might query to understand which logic containers are affected by a change to a specific model reference explosion (EXPL_ID 500):
SELECT DISTINCT lce_header_id FROM cz_lce_load_specs WHERE attachment_expl_id = 500 OR required_expl_id = 500;Reporting on load specifications for auditing or documentation purposes is also a typical scenario, often involving joins to the related CZ_LCE_HEADERS and CZ_MODEL_REF_EXPLS tables to translate IDs into meaningful names.
Related Objects
The CZ_LCE_LOAD_SPECS table maintains integral relationships with two other key Configurator tables, as defined by its foreign key constraints:
- CZ_LCE_HEADERS: Joined via
CZ_LCE_LOAD_SPECS.LCE_HEADER_ID = CZ_LCE_HEADERS.LCE_HEADER_ID. This table stores metadata about the logic containers or files themselves. - CZ_MODEL_REF_EXPLS: Joined via two separate foreign keys:
CZ_LCE_LOAD_SPECS.ATTACHMENT_EXPL_ID = CZ_MODEL_REF_EXPLS.MODEL_REF_EXPL_IDCZ_LCE_LOAD_SPECS.REQUIRED_EXPL_ID = CZ_MODEL_REF_EXPLS.MODEL_REF_EXPL_ID
-
Table: CZ_LCE_LOAD_SPECS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LCE_LOAD_SPECS, object_name:CZ_LCE_LOAD_SPECS, status:VALID, product: CZ - Configurator , description: Logic-file loading rules table. , implementation_dba_data: CZ.CZ_LCE_LOAD_SPECS ,
-
Table: CZ_LCE_LOAD_SPECS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LCE_LOAD_SPECS, object_name:CZ_LCE_LOAD_SPECS, status:VALID, product: CZ - Configurator , description: Logic-file loading rules table. , implementation_dba_data: CZ.CZ_LCE_LOAD_SPECS ,
-
APPS.CZ_UPGRADE dependencies on CZ_LCE_LOAD_SPECS
12.1.1
-
APPS.CZ_PB_MGR dependencies on CZ_LCE_LOAD_SPECS
12.1.1
-
APPS.CZ_LOGIC_GEN dependencies on CZ_LCE_LOAD_SPECS
12.2.2
-
APPS.CZ_LOGIC_GEN dependencies on CZ_LCE_LOAD_SPECS
12.1.1
-
APPS.CZ_UPGRADE dependencies on CZ_LCE_LOAD_SPECS
12.2.2
-
APPS.CZ_PB_MGR dependencies on CZ_LCE_LOAD_SPECS
12.2.2
-
VIEW: CZ.CZ_LCE_LOAD_SPECS#
12.2.2
owner:CZ, object_type:VIEW, object_name:CZ_LCE_LOAD_SPECS#, status:VALID,
-
APPS.CZ_LOGIC_GEN dependencies on CZ_LCE_HEADERS_S
12.1.1
-
SYNONYM: APPS.CZ_LCE_LOAD_SPECS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CZ_LCE_LOAD_SPECS, status:VALID,
-
APPS.CZ_LOGIC_GEN dependencies on CZ_LCE_HEADERS_S
12.2.2
-
APPS.CZ_LC_MGR dependencies on CZ_BASE_MGR
12.1.1
-
VIEW: CZ.CZ_LCE_LOAD_SPECS#
12.2.2
-
Table: CZ_MODEL_REF_EXPLS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_REF_EXPLS, object_name:CZ_MODEL_REF_EXPLS, status:VALID, product: CZ - Configurator , description: Model-reference explosions table , implementation_dba_data: CZ.CZ_MODEL_REF_EXPLS ,
-
SYNONYM: APPS.CZ_LCE_LOAD_SPECS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CZ_LCE_LOAD_SPECS, status:VALID,
-
Table: CZ_MODEL_REF_EXPLS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_MODEL_REF_EXPLS, object_name:CZ_MODEL_REF_EXPLS, status:VALID, product: CZ - Configurator , description: Model-reference explosions table , implementation_dba_data: CZ.CZ_MODEL_REF_EXPLS ,
-
APPS.CZ_LOGIC_GEN dependencies on CZ_SECURITY_PVT
12.2.2
-
APPS.CZ_LC_MGR dependencies on CZ_LCE_HEADERS
12.1.1
-
APPS.CZ_PS_MGR dependencies on CZ_LCE_HEADERS
12.1.1
-
APPS.CZ_PB_MGR dependencies on CZ_LCE_HEADERS
12.1.1
-
APPS.CZ_PB_MGR dependencies on CZ_LCE_HEADERS
12.2.2
-
Table: CZ_LCE_HEADERS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LCE_HEADERS, object_name:CZ_LCE_HEADERS, status:VALID, product: CZ - Configurator , description: Compiled logic record headers , implementation_dba_data: CZ.CZ_LCE_HEADERS ,
-
APPS.CZ_LC_MGR dependencies on CZ_BASE_MGR
12.2.2
-
APPS.CZ_LOGIC_GEN dependencies on CZ_SECURITY_PVT
12.1.1
-
TRIGGER: APPS.CZ_LCE_LOAD_SPECS_T1
12.1.1
owner:APPS, object_type:TRIGGER, object_name:CZ_LCE_LOAD_SPECS_T1, status:VALID,
-
APPS.CZ_LC_MGR dependencies on CZ_LCE_HEADERS
12.2.2
-
APPS.CZ_PS_MGR dependencies on CZ_LCE_HEADERS
12.2.2
-
Table: CZ_LCE_HEADERS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LCE_HEADERS, object_name:CZ_LCE_HEADERS, status:VALID, product: CZ - Configurator , description: Compiled logic record headers , implementation_dba_data: CZ.CZ_LCE_HEADERS ,
-
APPS.CZ_LOGIC_GEN dependencies on CZ_LCE_HEADERS
12.1.1
-
APPS.CZ_LOGIC_GEN dependencies on CZ_LCE_HEADERS
12.2.2
-
TABLE: CZ.CZ_LCE_LOAD_SPECS
12.2.2
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LCE_LOAD_SPECS, object_name:CZ_LCE_LOAD_SPECS, status:VALID,
-
TRIGGER: APPS.CZ_LCE_LOAD_SPECS_T1
12.2.2
owner:APPS, object_type:TRIGGER, object_name:CZ_LCE_LOAD_SPECS_T1, status:VALID,
-
PACKAGE BODY: APPS.CZ_UPGRADE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_UPGRADE, status:VALID,
-
TRIGGER: APPS.CZ_LCE_LOAD_SPECS_T1
12.1.1
-
TRIGGER: APPS.CZ_LCE_LOAD_SPECS_T1
12.2.2
-
TABLE: CZ.CZ_LCE_LOAD_SPECS
12.1.1
owner:CZ, object_type:TABLE, fnd_design_data:CZ.CZ_LCE_LOAD_SPECS, object_name:CZ_LCE_LOAD_SPECS, status:VALID,
-
PACKAGE BODY: APPS.CZ_UPGRADE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_UPGRADE, status:VALID,
-
PACKAGE BODY: APPS.CZ_LOGIC_GEN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_LOGIC_GEN, status:VALID,
-
PACKAGE BODY: APPS.CZ_LOGIC_GEN
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_LOGIC_GEN, status:VALID,
-
APPS.CZ_LOGIC_GEN dependencies on FND_API
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CZ_PB_MGR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CZ_PB_MGR, status:VALID,
-
APPS.CZ_LOGIC_GEN dependencies on FND_API
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2