Search Results old_object_id
Overview
The OE_UPGRADE_PC_SCOPE table is a technical data object within the Oracle E-Business Suite (EBS) Order Management (ONT) module. As explicitly defined in the ETRM documentation, its primary purpose is to function as a "Processing constraints upgrade table." This indicates it is a supporting table used during system upgrade or patching processes, specifically for managing the migration or transformation of processing constraint data. Processing constraints are critical business rules within Order Management that control the progression of order lines through various workflow statuses. The table's role is to ensure the integrity and correct scoping of these constraints when moving from an older system version or configuration to a newer one, such as during an upgrade to EBS 12.1.1 or 12.2.2.
Key Information Stored
The table's structure is designed to map old constraint identifiers to their new scoped definitions. Based on the documented primary key constraint OE_UPGRADE_PC_SCOPE_PK, the table's critical columns are SCOPE_CODE and OLD_OBJECT_ID. The SCOPE_CODE column likely defines the application context or classification for a group of processing constraints (e.g., by operating unit, transaction type, or module). The OLD_OBJECT_ID column stores the identifier for the processing constraint object from the pre-upgrade environment. Together, this key pairing enables the upgrade process to accurately identify and transition specific business rules into the upgraded system's new framework, preventing data loss or misalignment of critical order workflow controls.
Common Use Cases and Queries
Direct interaction with this table is typically limited to automated upgrade scripts and administrative troubleshooting. Common scenarios involve verifying the upgrade data population pre-go-live or diagnosing post-upgrade issues with processing constraints. A database administrator or functional consultant might run queries to audit the upgrade mapping. A fundamental sample query would be:
SELECT scope_code, old_object_id, COUNT(*)— This identifies potential duplicate mapping records that could cause upgrade conflicts.
FROM ont.oe_upgrade_pc_scope
GROUP BY scope_code, old_object_id
HAVING COUNT(*) > 1;SELECT COUNT(*) FROM ont.oe_upgrade_pc_scope;— Provides a simple count of total constraint records staged for upgrade, useful for validation against a source system extract.
Direct data manipulation (INSERT, UPDATE, DELETE) is strongly discouraged outside of Oracle's provided upgrade utilities.
Related Objects
This table is intrinsically linked to the core Processing Constraints functionality within Order Management. Its primary relationship is with the main processing constraint definition tables, such as OE_PC_OBJECTS and OE_PC_ACTIONS. The OLD_OBJECT_ID column in OE_UPGRADE_PC_SCOPE most likely corresponds to the OBJECT_ID in OE_PC_OBJECTS from the pre-upgrade environment. Furthermore, it is related to other upgrade-specific tables in the ONT schema that handle the transition of other OM entities. The table's operation is governed by upgrade programs or database packages provided by Oracle, which utilize this mapping data to reconfigure processing constraints in the upgraded application tables.
-
Table: OE_UPGRADE_PC_SCOPE
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_UPGRADE_PC_SCOPE, object_name:OE_UPGRADE_PC_SCOPE, status:VALID, product: ONT - Order Management , description: Processing constraints upgrade table. , implementation_dba_data: ONT.OE_UPGRADE_PC_SCOPE ,
-
Table: OE_UPGRADE_PC_SCOPE
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_UPGRADE_PC_SCOPE, object_name:OE_UPGRADE_PC_SCOPE, status:VALID, product: ONT - Order Management , description: Processing constraints upgrade table. , implementation_dba_data: ONT.OE_UPGRADE_PC_SCOPE ,
-
Table: OE_UPGRADE_PC_CONDNS
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_UPGRADE_PC_CONDNS, object_name:OE_UPGRADE_PC_CONDNS, status:VALID, product: ONT - Order Management , description: Stores the Conditions to be upgraded to 11i. , implementation_dba_data: ONT.OE_UPGRADE_PC_CONDNS ,
-
Table: OE_UPGRADE_PC_CONDNS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_UPGRADE_PC_CONDNS, object_name:OE_UPGRADE_PC_CONDNS, status:VALID, product: ONT - Order Management , description: Stores the Conditions to be upgraded to 11i. , implementation_dba_data: ONT.OE_UPGRADE_PC_CONDNS ,