Search Results cst_pac_intorg_itms_temp
Overview
CST_PAC_INTORG_ITMS_TEMP is a transient staging table owned by the BOM schema within the Bills of Material product family of Oracle E-Business Suite. As its description in the ETRM documentation states, it is "used in the interorg transfer iteration procedure." The table supports Periodic Average Cost (PAC) processing, which computes item costs across a defined cost group and cost period. During the cost rollup iteration, Oracle must reconcile inventory balances that move between organizations through inter-organization transfers. Because an item's cost in a receiving organization depends on the cost in the shipping organization, the calculation is inherently iterative: the procedure loads affected item/cost-group/period combinations into this temporary table, cycles through successive iterations until costs converge within tolerance, and then posts the final results back to the permanent PAC cost tables.
The Data Vault classification supplied in the relationship metadata is standalone, based on a heuristic analysis of the foreign key structure. As a modeling suggestion, this table behaves as a standalone work table rather than a hub, link, or satellite: it carries a single natural key (the period/cost-group/item combination) and does not participate in a formal many-to-many relationship network, though it does reference two dimension-like parents. Its temporary, run-scoped nature means rows are effectively disposable once the PAC process completes.
Key Information Stored
The table exposes 14 documented columns. The business-key candidate is defined by the unique index CST_PAC_INTORG_ITMS_TEMP_U1 over (PAC_PERIOD_ID, COST_GROUP_ID, INVENTORY_ITEM_ID), which uniquely identifies one item's costing position within a given cost group and PAC period. No separate surrogate primary key is documented.
- INVENTORY_ITEM_ID – the item being costed; part of the unique key.
- COST_GROUP_ID – foreign key to
CST_COST_GROUPS, defining the cost group scope; part of the unique key. - PAC_PERIOD_ID – foreign key to
CST_PAC_PERIODS, identifying the PAC period; part of the unique key. - ITEM_COST – the item cost computed in the current iteration.
- PREV_ITR_ITEM_COST – the cost from the prior iteration, retained for convergence comparison.
- DIFFERENCE – the delta between the current and prior iteration cost, central to wrap-up tolerance testing.
- TOLERANCE_FLAG – indicates whether the current difference falls within acceptable tolerance.
- ITERATION_COUNT – the iteration in which the row was last computed.
- LOW_LEVEL_CODE – the item's low-level code, governing the order of cost propagation.
- ABSORPTION_LEVEL_CODE – the absorption level used in cost rollup sequencing.
- INTERORG_RECEIPT_FLAG and INTERORG_SHIPMENT_FLAG – mark whether the item is involved in inter-organization receipts or shipments in the period.
- DIVERGING_FLAG – flags items whose costs are not converging.
- SEQUENCE_NUM – ordering of processing within the iteration.
Common Use Cases and Queries
The primary use case is diagnostic and performance tuning of PAC cost runs. Because the table is populated only while the interorg transfer iteration procedure executes, it is most valuable for troubleshooting items whose costs fail to converge or for auditing the iteration history of a specific run.
A typical query inspects items still flagged as unresolved:
- Items exceeding tolerance:
SELECT INVENTORY_ITEM_ID, COST_GROUP_ID, PAC_PERIOD_ID, ITEM_COST, PREV_ITR_ITEM_COST, DIFFERENCE, ITERATION_COUNT FROM BOM.CST_PAC_INTORG_ITMS_TEMP WHERE TOLERANCE_FLAG = 'N' ORDER BY DIFFERENCE DESC; - Non-converging items: filter on
DIVERGING_FLAG = 'Y'or on a highITERATION_COUNT. - Interorg impact analysis: filter where
INTERORG_RECEIPT_FLAG = 'Y' OR INTERORG_SHIPMENT_FLAG = 'Y'to see which items drive the iteration.
Reports commonly join back to CST_PAC_PERIODS and CST_COST_GROUPS to present the period and group description alongside the item.
Related Objects
The following objects are most significant, derived from the documented foreign keys and PK relationships:
- CST_COST_GROUPS – joined on
COST_GROUP_ID. - CST_PAC_PERIODS – joined on
PAC_PERIOD_ID. - MTL_SYSTEM_ITEMS_B – master item definition, joined on
INVENTORY_ITEM_ID. - CST_ITEM_COSTS – permanent frozen/current item cost data, used for comparison against computed
ITEM_COST. - MTL_INTERORG_PARAMETERS and MTL_MATERIAL_TRANSACTIONS – source of inter-organization shipment and receipt activity underlying the
INTERORG_*_FLAGcolumns. - The PAC cost rollup concurrent program and its PL/SQL iteration procedure, which populate and consume this table during execution.
-
Table: CST_PAC_INTORG_ITMS_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_INTORG_ITMS_TEMP, object_name:CST_PAC_INTORG_ITMS_TEMP, status:VALID, product: BOM - Bills of Material , description: used in the interorg transfer iteration procedure , implementation_dba_data: BOM.CST_PAC_INTORG_ITMS_TEMP ,
-
Table: CST_PAC_INTORG_ITMS_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_INTORG_ITMS_TEMP, object_name:CST_PAC_INTORG_ITMS_TEMP, status:VALID, product: BOM - Bills of Material , description: used in the interorg transfer iteration procedure , implementation_dba_data: BOM.CST_PAC_INTORG_ITMS_TEMP ,
-
VIEW: BOM.CST_PAC_INTORG_ITMS_TEMP#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_PAC_INTORG_ITMS_TEMP#, status:VALID,
-
SYNONYM: APPS.CST_PAC_INTORG_ITMS_TEMP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CST_PAC_INTORG_ITMS_TEMP, status:VALID,
-
SYNONYM: APPS.CST_PAC_INTORG_ITMS_TEMP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CST_PAC_INTORG_ITMS_TEMP, status:VALID,
-
VIEW: BOM.CST_PAC_INTORG_ITMS_TEMP#
12.2.2
-
TABLE: BOM.CST_PAC_INTORG_ITMS_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_INTORG_ITMS_TEMP, object_name:CST_PAC_INTORG_ITMS_TEMP, status:VALID,
-
TABLE: BOM.CST_PAC_INTORG_ITMS_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_PAC_INTORG_ITMS_TEMP, object_name:CST_PAC_INTORG_ITMS_TEMP, status:VALID,
-
APPS.CST_PAC_ITERATION_PROCESS_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CST_PAC_ITERATION_PROCESS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_PAC_ITERATION_PROCESS_PVT, status:VALID,
-
PACKAGE BODY: APPS.CST_PERIODIC_AVERAGE_PROC_CP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_PERIODIC_AVERAGE_PROC_CP, status:VALID,
-
PACKAGE BODY: APPS.CST_PAC_ITERATION_PROCESS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_PAC_ITERATION_PROCESS_PVT, status:VALID,
-
APPS.CST_PAC_ITERATION_PROCESS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CST_PERIODIC_AVERAGE_PROC_CP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_PERIODIC_AVERAGE_PROC_CP, status:VALID,
-
PACKAGE BODY: APPS.CST_PERIODIC_ABSORPTION_PROC
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_PERIODIC_ABSORPTION_PROC, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CST_PERIODIC_ABSORPTION_PROC
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_PERIODIC_ABSORPTION_PROC, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA 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
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CST_PERIODIC_ABSORPTION_PROC SQL Statements
12.2.2
-
APPS.CST_PERIODIC_ABSORPTION_PROC SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CST_PAC_ITERATION_PROCESS_PVT
12.1.1
-
PACKAGE BODY: APPS.CST_PAC_ITERATION_PROCESS_PVT
12.2.2
-
APPS.CST_PERIODIC_AVERAGE_PROC_CP SQL Statements
12.1.1
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on CST_PAC_INTORG_ITMS_TEMP
12.2.2
-
APPS.CST_PERIODIC_AVERAGE_PROC_CP dependencies on CST_PAC_INTORG_ITMS_TEMP
12.1.1
-
APPS.CST_PERIODIC_AVERAGE_PROC_CP dependencies on CST_PAC_INTORG_ITMS_TEMP
12.2.2
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on CST_PAC_INTORG_ITMS_TEMP
12.1.1
-
APPS.CST_PERIODIC_ABSORPTION_PROC dependencies on CST_PAC_INTORG_ITMS_TEMP
12.1.1
-
APPS.CST_PERIODIC_ABSORPTION_PROC dependencies on CST_PAC_INTORG_ITMS_TEMP
12.2.2
-
APPS.CST_PERIODIC_AVERAGE_PROC_CP SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CST_PERIODIC_ABSORPTION_PROC
12.2.2
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on CST_PAC_ITEM_COSTS
12.2.2
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on CST_PAC_ITEM_COSTS
12.1.1
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on CST_PAC_INTERORG_TXNS_TMP
12.1.1
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on CST_PAC_INTERORG_TXNS_TMP
12.2.2
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on MTL_PAC_ACTUAL_COST_DETAILS
12.1.1
-
PACKAGE BODY: APPS.CST_PERIODIC_ABSORPTION_PROC
12.1.1
-
APPS.CST_PAC_ITERATION_PROCESS_PVT dependencies on MTL_PAC_ACTUAL_COST_DETAILS
12.2.2
-
APPS.CST_PERIODIC_ABSORPTION_PROC dependencies on CST_PAC_ITMS_ABSL_CODES
12.1.1
-
APPS.CST_PERIODIC_ABSORPTION_PROC dependencies on CST_PAC_ITMS_ABSL_CODES
12.2.2
-
PACKAGE BODY: APPS.CST_PERIODIC_AVERAGE_PROC_CP
12.1.1
-
PACKAGE BODY: APPS.CST_PERIODIC_AVERAGE_PROC_CP
12.2.2