Search Results model_ps_node_id




Overview

The CZ_XFR_PROJECT_BILLS table is a core technical object within the Oracle E-Business Suite Configurator (CZ) module, specifically in versions 12.1.1 and 12.2.2. It functions as a control table for the import process of project bills. In the context of Oracle Configurator, a project bill represents a structured list of components, options, and logic that defines a configurable product model. This table manages the state and history of data transfers for these models from external or staging environments into the active runtime repository, ensuring data integrity and tracking the synchronization process between development and deployment phases.

Key Information Stored

While the full column list is not detailed in the provided metadata, the primary and foreign key relationships reveal its critical structure. The primary key, MODEL_PS_NODE_ID, uniquely identifies the specific project bill (or model) being imported. The LAST_IMPORT_RUN_ID column references a record in the CZ_XFR_RUN_INFOS table, which logs execution details of import runs, thereby tracking the most recent import operation for each model. The SOURCE_SERVER column, linked to the CZ_SERVERS table, identifies the source system or server from which the project bill data originates. Collectively, these columns store metadata that controls the import lifecycle, including model identification, source system, and import execution history.

Common Use Cases and Queries

This table is primarily accessed during and after data migration or synchronization operations. Administrators and technical consultants query it to diagnose import failures, verify the synchronization status of configurator models, or audit data lineage. A common reporting query would join to related tables to list all project bills and their last import status. For example:

  • Identifying models pending import or with failed runs by checking the LAST_IMPORT_RUN_ID against the CZ_XFR_RUN_INFOS table for run status.
  • Determining the source of all imported models for a given project by joining CZ_XFR_PROJECT_BILLS to CZ_DEVL_PROJECTS via MODEL_PS_NODE_ID.
  • Purging or archiving control records for completed import cycles as part of system maintenance scripts.

Direct manipulation of data in this table is typically performed by the Configurator's proprietary import engines and utilities, not manually.

Related Objects

The table maintains defined foreign key relationships with three other core Configurator tables, as documented:

  • CZ_DEVL_PROJECTS: Joined via MODEL_PS_NODE_ID. This links the import control record to the actual development project and model definition within the Configurator repository.
  • CZ_XFR_RUN_INFOS: Joined via LAST_IMPORT_RUN_ID. This provides detailed metadata about the specific import run, such as timestamps, initiating user, and completion status.
  • CZ_SERVERS: Joined via SOURCE_SERVER. This identifies the source server or system from which the project bill data was extracted for import.

These relationships position CZ_XFR_PROJECT_BILLS as a central hub in the data transfer architecture, connecting the model definition, the transfer execution log, and the source system identifier.