Search Results old_unit_cost
Overview
APPS.CST_STD_WIP_ADJ_VIEW is a reporting and integration view in the Oracle E-Business Suite Cost Management module. It aggregates the financial impact of standard cost changes on Work in Process (WIP) balances. When a standard cost is updated, existing WIP entities are revalued, and the resulting gain or loss must be isolated by cost element and by adjustment direction. This view performs that isolation by summing the difference between the new and old unit cost, multiplied by the adjustment quantity, across the records held in the standard cost adjustment values table.
The view is a critical data source for the Standard Cost Adjustment reconciliation and for any custom report that needs to explain the revaluation of WIP inventory caused by a cost update. Because it presents one row per cost update, organization, WIP entity, and inventory item, it provides the granularity required for both transactional inquiry and downstream general ledger analysis.
Underlying Base Objects
The only documented referenced base object is CST_STD_COST_ADJ_VALUES, accessed through an APPS synonym. The view reads the adjustment quantity, new unit cost, and old unit cost columns from this table and applies a series of DECODE-based aggregations to them. The base table stores the pre-computed adjustment values generated when a standard cost update is processed, so the view is a transformation layer rather than a stored structure. It does not introduce new persistence; it derives a normalized result set from the raw adjustment values.
Key Columns
The view exposes a compact set of grouping keys alongside the aggregated cost amounts:
- COST_UPDATE_ID — Identifier of the standard cost update that produced the adjustment.
- ORGANIZATION_ID — Inventory organization affected by the revaluation.
- WIP_ENTITY_ID — The WIP job or repetitive schedule whose balance was revalued.
- INVENTORY_ITEM_ID — The item associated with the WIP entity.
- Aggregated cost columns — The SUM(DECODE(...)) expressions, which produce eight buckets combining LEVEL_TYPE (1 or 2), COST_ELEMENT_ID (1 through 5), and IN_OUT_FLAG (1 for increases, -1 for decreases). Each bucket computes (NEW_UNIT_COST - OLD_UNIT_COST) * ADJUSTMENT_QUANTITY, so every output column represents the dollar value of the revaluation for one element and direction.
The LEVEL_TYPE discriminator distinguishes the cost rollup level, while COST_ELEMENT_ID maps to the standard cost elements such as material, material overhead, resource, outside processing, and overhead. The IN_OUT_FLAG separates upward from downward adjustments, ensuring revaluation gains and losses are not netted together.
Common Use Cases and Queries
Typical usage centers on reconciling WIP revaluation after a cost update and on feeding detailed analysis of the old_unit_cost versus new_unit_cost movement. A representative query selecting the core grouping keys and adjustment amounts is:
SELECT COST_UPDATE_ID, ORGANIZATION_ID, WIP_ENTITY_ID, INVENTORY_ITEM_ID FROM APPS.CST_STD_WIP_ADJ_VIEW WHERE COST_UPDATE_ID = :p_update_id;SELECT ORGANIZATION_ID, SUM(column1) ... FROM APPS.CST_STD_WIP_ADJ_VIEW GROUP BY ORGANIZATION_ID;to summarize the revaluation by organization.
Analysts also filter by WIP_ENTITY_ID to trace the effect of a single cost update on an individual job, or restrict the aggregation to specific cost element buckets to explain the composition of the revaluation to the general ledger. Because the old_unit_cost term appears only inside the SUM(DECODE(...)) expressions, any inquiry that needs the raw old and new unit costs should query CST_STD_COST_ADJ_VALUES directly; the view itself returns only the net revaluation amounts per bucket.
-
VIEW: APPS.CST_STD_WIP_ADJ_VIEW
12.1.1
-
VIEW: APPS.CST_STD_WIP_ADJ_VIEW
12.2.2
-
View: CST_STD_WIP_ADJ_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_WIP_ADJ_VIEW, object_name:CST_STD_WIP_ADJ_VIEW, status:VALID, product: BOM - Bills of Material , description: Standard cost update for jobs or schedules : SINGLE-ORG view , implementation_dba_data: APPS.CST_STD_WIP_ADJ_VIEW ,
-
View: CST_STD_WIP_ADJ_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_WIP_ADJ_VIEW, object_name:CST_STD_WIP_ADJ_VIEW, status:VALID, product: BOM - Bills of Material , description: Standard cost update for jobs or schedules : SINGLE-ORG view , implementation_dba_data: APPS.CST_STD_WIP_ADJ_VIEW ,
-
VIEW: APPS.CST_STD_COST_ADJ_TMP2_V
12.1.1
-
VIEW: APPS.CST_STD_COST_ADJ_TMP1_V
12.1.1
-
View: CST_STD_COST_ADJ_TMP2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_COST_ADJ_TMP2_V, object_name:CST_STD_COST_ADJ_TMP2_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_STD_COST_ADJ_TMP2_V ,
-
VIEW: APPS.CST_STD_COST_ADJ_TMP2_V
12.2.2
-
VIEW: BOM.CST_STD_COST_ADJ_VALUES_EFC#
12.2.2
-
VIEW: APPS.CST_STD_COST_ADJ_TMP1_V
12.2.2
-
View: CST_STD_COST_ADJ_TMP2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_COST_ADJ_TMP2_V, object_name:CST_STD_COST_ADJ_TMP2_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_STD_COST_ADJ_TMP2_V ,
-
VIEW: BOM.CST_STD_COST_ADJ_VALUES#
12.2.2
-
View: CST_STD_WMS_INV_ADJ_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_WMS_INV_ADJ_VIEW, object_name:CST_STD_WMS_INV_ADJ_VIEW, status:VALID, product: BOM - Bills of Material , description: Standard cost update adjustment , implementation_dba_data: APPS.CST_STD_WMS_INV_ADJ_VIEW ,
-
View: CST_STD_WMS_INV_ADJ_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_WMS_INV_ADJ_VIEW, object_name:CST_STD_WMS_INV_ADJ_VIEW, status:VALID, product: BOM - Bills of Material , description: Standard cost update adjustment , implementation_dba_data: APPS.CST_STD_WMS_INV_ADJ_VIEW ,
-
View: CST_STD_COST_ADJ_TMP1_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_COST_ADJ_TMP1_V, object_name:CST_STD_COST_ADJ_TMP1_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_STD_COST_ADJ_TMP1_V ,
-
VIEW: APPS.CST_STD_WMS_INV_ADJ_VIEW
12.2.2
-
View: CST_STD_COST_ADJ_TMP1_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_COST_ADJ_TMP1_V, object_name:CST_STD_COST_ADJ_TMP1_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_STD_COST_ADJ_TMP1_V ,
-
VIEW: APPS.CST_STD_INV_ADJ_VIEW
12.2.2
-
View: CST_STD_INV_ADJ_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_INV_ADJ_VIEW, object_name:CST_STD_INV_ADJ_VIEW, status:VALID, product: BOM - Bills of Material , description: Standard cost update adjustment : SINGLE-ORG view , implementation_dba_data: APPS.CST_STD_INV_ADJ_VIEW ,
-
VIEW: BOM.CST_STD_COST_ADJ_VALUES_EFC#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_STD_COST_ADJ_VALUES_EFC#, status:VALID,
-
VIEW: GMF.GMF_MATERIAL_LOT_COST_TXNS#
12.2.2
-
View: CST_STD_INV_ADJ_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_INV_ADJ_VIEW, object_name:CST_STD_INV_ADJ_VIEW, status:VALID, product: BOM - Bills of Material , description: Standard cost update adjustment : SINGLE-ORG view , implementation_dba_data: APPS.CST_STD_INV_ADJ_VIEW ,
-
VIEW: APPS.CST_STD_INV_ADJ_VIEW
12.1.1
-
VIEW: APPS.CST_STD_WMS_INV_ADJ_VIEW
12.1.1
-
VIEW: APPS.CST_STD_COST_ADJ_TMP2_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_COST_ADJ_TMP2_V, object_name:CST_STD_COST_ADJ_TMP2_V, status:VALID,
-
VIEW: APPS.CST_STD_COST_ADJ_TMP2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_COST_ADJ_TMP2_V, object_name:CST_STD_COST_ADJ_TMP2_V, status:VALID,
-
VIEW: APPS.CST_STD_INV_ADJ_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_INV_ADJ_VIEW, object_name:CST_STD_INV_ADJ_VIEW, status:VALID,
-
APPS.CSTPUPDT SQL Statements
12.1.1
-
VIEW: APPS.CST_STD_WMS_INV_ADJ_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_WMS_INV_ADJ_VIEW, object_name:CST_STD_WMS_INV_ADJ_VIEW, status:VALID,
-
TABLE: BOM.CST_STD_COST_ADJ_VALUES_EFC
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_STD_COST_ADJ_VALUES_EFC, object_name:CST_STD_COST_ADJ_VALUES_EFC, status:VALID,
-
TABLE: BOM.CST_STD_COST_ADJ_VALUES_EFC
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_STD_COST_ADJ_VALUES_EFC, object_name:CST_STD_COST_ADJ_VALUES_EFC, status:VALID,
-
VIEW: APPS.CST_STD_INV_ADJ_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_INV_ADJ_VIEW, object_name:CST_STD_INV_ADJ_VIEW, status:VALID,
-
VIEW: APPS.CST_STD_WMS_INV_ADJ_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_STD_WMS_INV_ADJ_VIEW, object_name:CST_STD_WMS_INV_ADJ_VIEW, status:VALID,
-
VIEW: BOM.CST_STD_COST_ADJ_VALUES#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_STD_COST_ADJ_VALUES#, status:VALID,
-
VIEW: APPS.CSTBV_ITEM_STD_CST_UPDATE_ADJ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTBV_ITEM_STD_CST_UPDATE_ADJ, status:VALID,
-
VIEW: APPS.CSTBV_ITEM_STD_CST_UPDATE_ADJ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTBV_ITEM_STD_CST_UPDATE_ADJ, status:VALID,
-
VIEW: APPS.CSTFV_ITEM_STD_CST_UPDATE_ADJ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTFV_ITEM_STD_CST_UPDATE_ADJ, status:VALID,
-
VIEW: GMF.GMF_MATERIAL_LOT_COST_TXNS#
12.2.2
owner:GMF, object_type:VIEW, object_name:GMF_MATERIAL_LOT_COST_TXNS#, status:VALID,
-
VIEW: APPS.CSTFV_ITEM_STD_CST_UPDATE_ADJ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTFV_ITEM_STD_CST_UPDATE_ADJ, status:VALID,
-
TABLE: BOM.CST_STD_COST_ADJ_VALUES
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_STD_COST_ADJ_VALUES, object_name:CST_STD_COST_ADJ_VALUES, status:VALID,
-
TABLE: BOM.CST_STD_COST_ADJ_VALUES
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_STD_COST_ADJ_VALUES, object_name:CST_STD_COST_ADJ_VALUES, status:VALID,
-
APPS.CSTPUPDT SQL Statements
12.2.2
-
TABLE: GMF.GMF_MATERIAL_LOT_COST_TXNS
12.2.2
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_MATERIAL_LOT_COST_TXNS, object_name:GMF_MATERIAL_LOT_COST_TXNS, status:VALID,
-
TABLE: GMF.GMF_MATERIAL_LOT_COST_TXNS
12.1.1
owner:GMF, object_type:TABLE, fnd_design_data:GMF.GMF_MATERIAL_LOT_COST_TXNS, object_name:GMF_MATERIAL_LOT_COST_TXNS, status:VALID,
-
PACKAGE BODY: APPS.CSTPUPDT
12.1.1
-
View: CSTBV_ITEM_STD_CST_UPDATE_ADJ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTBV_ITEM_STD_CST_UPDATE_ADJ, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_ITEM_STD_CST_UPDATE_ADJ ,
-
View: CSTBV_ITEM_STD_CST_UPDATE_ADJ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTBV_ITEM_STD_CST_UPDATE_ADJ, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_ITEM_STD_CST_UPDATE_ADJ ,
-
View: CSTFV_ITEM_STD_CST_UPDATE_ADJ
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTFV_ITEM_STD_CST_UPDATE_ADJ, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_ITEM_STD_CST_UPDATE_ADJ ,
-
View: CSTFV_ITEM_STD_CST_UPDATE_ADJ
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_ITEM_STD_CST_UPDATE_ADJ, object_name:CSTFV_ITEM_STD_CST_UPDATE_ADJ, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_ITEM_STD_CST_UPDATE_ADJ ,
-
PACKAGE BODY: APPS.CSTPUPDT
12.2.2