Search Results shrinkage_rate
Overview
APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW is a reporting view in Oracle E-Business Suite (EBS) that exposes a consolidated, aggregated representation of bill-of-material (BOM) explosion data. It is defined in the APPS schema and is available in both release 12.1.1 and 12.2.2. The view reads from the temporary explosion table BOM_EXPLOSION_TEMP and applies a GROUP BY aggregation across a defined set of grouping columns.
The view plays a supporting role in BOM and cost-rollup reporting. Where BOM_EXPLOSION_TEMP holds the row-level output of an explosion or rollup process, this view collapses that output into one row per group, giving report and integration layers a denormalized, pre-aggregated result set. This is particularly relevant to cost rollup and consolidated explosion reporting, where individual component occurrences must be summed into a meaningful total for a given top assembly and organization.
Underlying Base Objects
According to the documented ETRM metadata, the view is defined over a single referenced base object:
BOM_EXPLOSION_TEMP— referenced through a synonym (SYNONYM). This is the temporary working table populated by the BOM explosion and rollup routines. It carries the transient rows produced during an explosion run, keyed by a group identifier.
Because the view reads from a temporary staging table, its contents are only meaningful within the lifespan of an explosion or rollup run. The GROUP_ID column, which is both selected and used as the leading grouping criterion, provides the boundary that isolates one explosion run's rows from another. Consumers of the view must therefore restrict results by GROUP_ID to obtain a coherent data set.
Key Columns
The view exposes the following columns, several of which are positionally typed but unnamed in the underlying definition:
GROUP_ID— identifier distinguishing an individual explosion or rollup run. Primary correlation key.TOP_BILL_SEQUENCE_ID— sequence identifier for the top-level bill structure being processed. Directly relevant to searches forTOP_ITEM_ID, as it is closely associated with the top assembly context.TOP_ITEM_ID— inventory item identifier of the top-level assembly that seeds the explosion. This is the column most frequently used to anchor a query to a specific parent item.ORGANIZATION_ID— the inventory organization in whose context the explosion was executed.COMPONENT_ITEM_ID— the component item returned by the explosion.MAX(SORT_ORDER)— aggregate of the sort ordering value, preserving structural ordering information.SUM(EXTENDED_QUANTITY)— aggregated extended quantity, the summed per-assembly requirement for the grouped component.ITEM_COST— unit cost associated with the component item.WIP_SUPPLY_TYPE— supply type governing how the component is sourced in a work-in-process context (for example, push, pull, or operation-based supply).BASED_ON_ROLLUP_FLAG— indicates whether the cost basis is derived from a rollup.ACTUAL_COST_TYPE_ID— identifies the cost type used for actual costing of the component.SHRINKAGE_RATE— the shrinkage factor applied during exploitation/costing.INVENTORY_ASSET_FLAG— indicates whether the component is treated as an inventory asset.EXTEND_COST_FLAG— controls whether the component cost is extended (multiplied by quantity) in downstream consolidation.- Several
TO_NUMBER(NULL)placeholder columns — these occupy fixed positions in the column list, providing type alignment for consumers expecting a defined column shape.
Common Use Cases and Queries
Typical usage centers on retrieving consolidated component requirements for a specified top assembly, organization, or explosion run. A common pattern filters by GROUP_ID and TOP_ITEM_ID:
SELECT TOP_ITEM_ID, COMPONENT_ITEM_ID, SUM(EXTENDED_QUANTITY) qty, ITEM_COST FROM APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW WHERE GROUP_ID = :p_group_id AND TOP_ITEM_ID = :p_top_item GROUP BY TOP_ITEM_ID, COMPONENT_ITEM_ID, ITEM_COST;- Cost rollup reporting, where
SUM(EXTENDED_QUANTITY)is multiplied byITEM_COSTto derive extended component value, respectingEXTEND_COST_FLAG. - Integration extracts that require a compact, aggregated snapshot of an explosion rather than row-level detail.
Because the view references a temporary table, queries should be executed within the same session or transaction scope as the explosion routine that populated BOM_EXPLOSION_TEMP. Outside that scope, the view may return no rows or stale data. The tight GROUP_ID filter is essential for correct results.
-
VIEW: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW
12.1.1
-
VIEW: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW
12.2.2
-
View: BOM_CONSOLIDATE_EXPLOSION_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_CONSOLIDATE_EXPLOSION_VIEW, object_name:BOM_CONSOLIDATE_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Consolidated Bill of Material structure for report , implementation_dba_data: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW ,
-
View: BOM_CONSOLIDATE_EXPLOSION_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_CONSOLIDATE_EXPLOSION_VIEW, object_name:BOM_CONSOLIDATE_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Consolidated Bill of Material structure for report , implementation_dba_data: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW ,
-
VIEW: BOM.CST_ITEM_COSTS#
12.2.2
-
VIEW: BOM.CST_ITEM_COSTS_INTERFACE#
12.2.2
-
VIEW: BOM.CST_ITEM_CST_DTLS_INTERFACE#
12.2.2
-
APPS.BOMPCEXP SQL Statements
12.1.1
-
APPS.BOMPCEXP SQL Statements
12.2.2
-
VIEW: MRP.MRP_SYSTEM_ITEMS#
12.2.2
-
VIEW: MSC.MSC_ST_ITEM_ATTRIBUTES#
12.2.2
-
VIEW: APPS.CSTBV_STANDARD_ITEM_COST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_STANDARD_ITEM_COST, object_name:CSTBV_STANDARD_ITEM_COST, status:VALID,
-
VIEW: APPS.CSTFV_STANDARD_ITEM_COST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_STANDARD_ITEM_COST, object_name:CSTFV_STANDARD_ITEM_COST, status:VALID,
-
VIEW: MSC.MSC_ITEM_ATTRIBUTES#
12.2.2
-
VIEW: APPS.CSTFV_STANDARD_ITEM_COST
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_STANDARD_ITEM_COST, object_name:CSTFV_STANDARD_ITEM_COST, status:VALID,
-
VIEW: APPS.CSTBV_STANDARD_ITEM_COST
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_STANDARD_ITEM_COST, object_name:CSTBV_STANDARD_ITEM_COST, status:VALID,
-
VIEW: BOM.CST_ITEM_COSTS#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_ITEM_COSTS#, status:VALID,
-
PACKAGE BODY: APPS.BOMPCEXP
12.2.2
-
VIEW: MSC.MSC_ST_SYSTEM_ITEMS#
12.2.2
-
PACKAGE BODY: APPS.BOMPCEXP
12.1.1
-
TABLE: BOM.CST_ITEM_COSTS_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_COSTS_TEMP, object_name:CST_ITEM_COSTS_TEMP, status:VALID,
-
VIEW: BOM.CST_ITEM_CST_DTLS_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_ITEM_CST_DTLS_INTERFACE#, status:VALID,
-
VIEW: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_CONSOLIDATE_EXPLOSION_VIEW, object_name:BOM_CONSOLIDATE_EXPLOSION_VIEW, status:VALID,
-
VIEW: BOM.CST_ITEM_COSTS_INTERFACE#
12.2.2
owner:BOM, object_type:VIEW, object_name:CST_ITEM_COSTS_INTERFACE#, status:VALID,
-
VIEW: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_CONSOLIDATE_EXPLOSION_VIEW, object_name:BOM_CONSOLIDATE_EXPLOSION_VIEW, status:VALID,
-
VIEW: APPS.MSC_PDR_ITEM_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PDR_ITEM_DETAILS_V, object_name:MSC_PDR_ITEM_DETAILS_V, status:VALID,
-
VIEW: APPS.MSC_PDR_ITEM_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_PDR_ITEM_DETAILS_V, object_name:MSC_PDR_ITEM_DETAILS_V, status:VALID,
-
TABLE: BOM.CST_ITEM_COSTS_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.CST_ITEM_COSTS_TEMP, object_name:CST_ITEM_COSTS_TEMP, status:VALID,
-
VIEW: APPS.CST_DEFAULT_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_COST_VIEW, object_name:CST_DEFAULT_COST_VIEW, status:VALID,
-
VIEW: APPS.CST_DEFAULT_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_COST_VIEW, object_name:CST_DEFAULT_COST_VIEW, status:VALID,
-
APPS.CST_ITEM_COST_IMPORT_INTERFACE SQL Statements
12.2.2
-
VIEW: MRP.MRP_SYSTEM_ITEMS#
12.2.2
owner:MRP, object_type:VIEW, object_name:MRP_SYSTEM_ITEMS#, status:VALID,
-
VIEW: BOM.BOM_EXPLOSIONS_ALL#
12.2.2
-
VIEW: APPS.CST_DEFAULT_DETAIL_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_DETAIL_COST_VIEW, object_name:CST_DEFAULT_DETAIL_COST_VIEW, status:VALID,
-
APPS.CST_ITEM_COST_IMPORT_INTERFACE SQL Statements
12.1.1
-
VIEW: APPS.CST_DEFAULT_DETAIL_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_DETAIL_COST_VIEW, object_name:CST_DEFAULT_DETAIL_COST_VIEW, status:VALID,
-
View: CST_DEFAULT_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_COST_VIEW, object_name:CST_DEFAULT_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Default item cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_COST_VIEW ,
-
View: CST_DEFAULT_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_COST_VIEW, object_name:CST_DEFAULT_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Default item cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_COST_VIEW ,
-
VIEW: MSC.MSC_ST_ITEM_ATTRIBUTES#
12.2.2
owner:MSC, object_type:VIEW, object_name:MSC_ST_ITEM_ATTRIBUTES#, status:VALID,
-
View: CST_DEFAULT_DETAIL_COST_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_DETAIL_COST_VIEW, object_name:CST_DEFAULT_DETAIL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Detailed item default cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_DETAIL_COST_VIEW ,
-
View: CST_DEFAULT_DETAIL_COST_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DEFAULT_DETAIL_COST_VIEW, object_name:CST_DEFAULT_DETAIL_COST_VIEW, status:VALID, product: BOM - Bills of Material , description: Detailed item default cost : SINGLE-ORG view , implementation_dba_data: APPS.CST_DEFAULT_DETAIL_COST_VIEW ,
-
VIEW: APPS.MRP_SYSTEM_ITEMS_SC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SYSTEM_ITEMS_SC_V, object_name:MRP_SYSTEM_ITEMS_SC_V, status:VALID,
-
VIEW: APPS.MRP_SYSTEM_ITEMS_SC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRP_SYSTEM_ITEMS_SC_V, object_name:MRP_SYSTEM_ITEMS_SC_V, status:VALID,
-
TABLE: MSC.MSC_ST_ITEM_ATTRIBUTES
12.2.2
owner:MSC, object_type:TABLE, object_name:MSC_ST_ITEM_ATTRIBUTES, status:VALID,
-
TYPE: APPS.INV_EBI_ITEM_MRP_OBJ
12.1.1
owner:APPS, object_type:TYPE, object_name:INV_EBI_ITEM_MRP_OBJ, status:VALID,
-
TYPE: APPS.INV_EBI_ITEM_MRP_OBJ
12.2.2
owner:APPS, object_type:TYPE, object_name:INV_EBI_ITEM_MRP_OBJ, status:VALID,
-
VIEW: MSC.MSC_SYSTEM_ITEMS#
12.2.2
-
View: CSTFV_STANDARD_ITEM_COST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTFV_STANDARD_ITEM_COST, object_name:CSTFV_STANDARD_ITEM_COST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTFV_STANDARD_ITEM_COST ,
-
View: CSTBV_STANDARD_ITEM_COST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CSTBV_STANDARD_ITEM_COST, object_name:CSTBV_STANDARD_ITEM_COST, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.CSTBV_STANDARD_ITEM_COST ,
-
VIEW: INV.INV_ITEM_TEMP#
12.2.2