Search Results operation_offset
Overview
APPS.BOM_PLM_EXPLOSION_TEMP is a reporting and integration view in Oracle E-Business Suite 12.1.1 and 12.2.2 that exposes the flattened output of the bill of materials (BOM) explosion process. The view is owned by the APPS schema and is defined as a SELECT over the intermediate explosion workspace, returning the multi-level hierarchy of assemblies, components, and their associated attributes. It is principally used by Oracle Product Lifecycle Management (PLM), engineering, and planning modules that require a denormalized view of exploded BOM structures without traversing the recursive BOM_EXPLOSIONS hierarchy at runtime.
The view carries a large number of columns that correspond directly to the columns of the underlying explosion temporary table, including quantity, yield, effectivity, alternate designators, and rollup indicators. It is not a transactional base table; rather, it is a queryable representation of the explosion result set, populated by the BOM explosion engine for consumption by downstream reporting, concurrent programs, and integration interfaces.
Underlying Base Objects
The view is defined over a single referenced base object: BOM_EXPLOSION_TEMP (referenced through a synonym). BOM_EXPLOSION_TEMP is the temporary staging structure into which the BOM explosion program writes the resolved hierarchy of parent and component relationships. Every column present in BOM_PLM_EXPLOSION_TEMP is projected directly from BOM_EXPLOSION_TEMP, so the view does not, by itself, join additional tables or apply transformation logic beyond the column projection. Because the underlying object is a temporary/workspace table, the contents of the view are typically meaningful only for the session or process that performed the explosion, and persistent reads should be scoped to a specific GROUP_ID or TOP_BILL_SEQUENCE_ID to isolate one explosion run from another.
Key Columns
- TOP_BILL_SEQUENCE_ID, BILL_SEQUENCE_ID — Identifiers that tie each exploded row back to the top-level bill and the current-level bill sequence used during the explosion.
- COMMON_BILL_SEQUENCE_ID, COMMON_ORGANIZATION_ID — Common (shared) bill sequence and organization identifiers used to correlate components across organizations.
- COMPONENT_SEQUENCE_ID, COMPONENT_ITEM_ID — The component's sequence within its parent bill and its inventory item identifier.
- COMPONENT_QUANTITY, EXTENDED_QUANTITY, COMPONENT_YIELD_FACTOR, PLANNING_FACTOR — Quantity per assembly, the extended (rolled-up) quantity through the hierarchy, and the yield and planning multipliers applied.
- INCLUDE_IN_ROLLUP_FLAG — Indicates whether the component participates in quantity rollup calculations for the parent assembly.
- PLAN_LEVEL, SORT_ORDER, PARENT_SORT_ORDER — Depth level within the exploded hierarchy and the ordering used to render the structure.
- TOP_ALTERNATE_DESIGNATOR, ALTERNATE_BOM_DESIGNATOR — Alternate BOM designators at the top and component levels.
- EFFECTIVITY_DATE, DISABLE_DATE, IMPLEMENTATION_DATE, EFFECTIVITY_CONTROL — Date-ranged effectivity and the effectivity control basis.
- FROM_END_ITEM_UNIT_NUMBER, TO_END_ITEM_UNIT_NUMBER — Unit-number ranges governing component effectivity for the end item.
- COMPONENT_CODE, NEW_COMPONENT_CODE, BOM_ITEM_TYPE, PARENT_BOM_ITEM_TYPE — Component type classifications.
- LOOP_FLAG — Signals a detected loop or circular reference in the exploded structure.
- OPERATION_SEQ_NUM, OPERATION_OFFSET, OPERATION_LEAD_TIME_PERCENT — Routing/operation linkage for the component.
- WIP_SUPPLY_TYPE, SUPPLY_SUBINVENTORY, SUPPLY_LOCATOR_ID — Work in Process supply attributes for the component.
- CHECK_ATP, REQUIRED_TO_SHIP, REQUIRED_FOR_REVENUE, INCLUDE_ON_SHIP_DOCS — Order management and shipping flags carried from the bill.
- GROUP_ID — The explosion run identifier used to isolate records produced by a single run.
- ATTRIBUTE1–ATTRIBUTE15, CONTEXT — Descriptive flexfield columns.
Common Use Cases and Queries
The view supports multi-level BOM reporting, where-used-style structure listings, cost and quantity rollup validation, and data extraction for PLM or integration feeds. A typical query filters by the explosion group and top bill to retrieve a single exploded structure:
SELECT TOP_ITEM_ID, COMPONENT_ITEM_ID, PLAN_LEVEL, COMPONENT_QUANTITY, EXTENDED_QUANTITY, INCLUDE_IN_ROLLUP_FLAG, LOOP_FLAG FROM APPS.BOM_PLM_EXPLOSION_TEMP WHERE GROUP_ID = :p_group_id AND TOP_BILL_SEQUENCE_ID = :p_top_bill_seq ORDER BY SORT_ORDER;
For rollup-focused analysis, analysts filter on INCLUDE_IN_ROLLUP_FLAG to restrict results to components that contribute to rolled-up quantities:
SELECT COMPONENT_ITEM_ID, EXTENDED_QUANTITY FROM APPS.BOM_PLM_EXPLOSION_TEMP WHERE INCLUDE_IN_ROLLUP_FLAG = 1 AND GROUP_ID = :p_group_id;
Because the underlying storage is a temporary workspace, consumers should always constrain the query by GROUP_ID or the relevant sequence identifiers and should not assume that records persist beyond the explosion process that populated them.
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.1.1
-
VIEW: APPS.CSD_BOM_INQUIRY_EXPL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BOM_INQUIRY_EXPL_V, object_name:CSD_BOM_INQUIRY_EXPL_V, status:VALID,
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.2.2
-
View: BOM_PLM_EXPLOSION_TEMP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_PLM_EXPLOSION_TEMP ,
-
View: BOM_PLM_EXPLOSION_TEMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_PLM_EXPLOSION_TEMP ,
-
VIEW: APPS.CSD_BOM_INQUIRY_EXPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BOM_INQUIRY_EXPL_V, object_name:CSD_BOM_INQUIRY_EXPL_V, status:VALID,
-
VIEW: BOM.BOM_EXPLOSIONS_ALL#
12.2.2
-
View: CSD_BOM_INQUIRY_EXPL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BOM_INQUIRY_EXPL_V, object_name:CSD_BOM_INQUIRY_EXPL_V, status:VALID, product: CSD - Depot Repair , description: View based on temporary table. , implementation_dba_data: APPS.CSD_BOM_INQUIRY_EXPL_V ,
-
APPS.CSD_ESTIMATES_FROM_BOM_PVT SQL Statements
12.2.2
-
APPS.CSD_ESTIMATES_FROM_BOM_PVT SQL Statements
12.1.1
-
View: CSD_BOM_INQUIRY_EXPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSD.CSD_BOM_INQUIRY_EXPL_V, object_name:CSD_BOM_INQUIRY_EXPL_V, status:VALID, product: CSD - Depot Repair , description: View based on temporary table. , implementation_dba_data: APPS.CSD_BOM_INQUIRY_EXPL_V ,
-
TABLE: CSD.CSD_BOM_EXPL_TEMP
12.1.1
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BOM_EXPL_TEMP, object_name:CSD_BOM_EXPL_TEMP, status:VALID,
-
TABLE: CSD.CSD_BOM_EXPL_TEMP
12.2.2
owner:CSD, object_type:TABLE, fnd_design_data:CSD.CSD_BOM_EXPL_TEMP, object_name:CSD_BOM_EXPL_TEMP, status:VALID,
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID,
-
VIEW: APPS.BOM_PLM_EXPLOSION_TEMP
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_PLM_EXPLOSION_TEMP, object_name:BOM_PLM_EXPLOSION_TEMP, status:VALID,
-
VIEW: BOM.BOM_EXPLOSIONS_ALL#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_EXPLOSIONS_ALL#, status:VALID,
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID,
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID,
-
VIEW: APPS.BOM_WS_EXPLOSIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, object_name:BOM_WS_EXPLOSIONS_ALL_V, status:VALID,
-
TABLE: BOM.BOM_EXPLOSIONS_ALL
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL, object_name:BOM_EXPLOSIONS_ALL, status:VALID,
-
View: BOM_EXPL_INQUIRY_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for window , implementation_dba_data: APPS.BOM_EXPL_INQUIRY_VIEW ,
-
View: BOM_EXPL_INQUIRY_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPL_INQUIRY_VIEW, object_name:BOM_EXPL_INQUIRY_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for window , implementation_dba_data: APPS.BOM_EXPL_INQUIRY_VIEW ,
-
TABLE: BOM.BOM_EXPLOSIONS_ALL
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL, object_name:BOM_EXPLOSIONS_ALL, status:VALID,
-
TABLE: BOM.BOM_SMALL_EXPL_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_SMALL_EXPL_TEMP, object_name:BOM_SMALL_EXPL_TEMP, status:VALID,
-
TABLE: BOM.BOM_SMALL_EXPL_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_SMALL_EXPL_TEMP, object_name:BOM_SMALL_EXPL_TEMP, status:VALID,
-
TABLE: BOM.BOM_EXPLOSION_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_EXPLOSION_TEMP, object_name:BOM_EXPLOSION_TEMP, status:VALID,
-
TABLE: BOM.BOM_EXPLOSION_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_EXPLOSION_TEMP, object_name:BOM_EXPLOSION_TEMP, status:VALID,
-
PACKAGE BODY: APPS.CSD_ESTIMATES_FROM_BOM_PVT
12.2.2
-
APPS.BOMPXINQ SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CSD_ESTIMATES_FROM_BOM_PVT
12.1.1
-
APPS.BOMPXINQ SQL Statements
12.2.2
-
APPS.BOMPBXIN SQL Statements
12.1.1
-
APPS.BOMPBXIN SQL Statements
12.2.2
-
APPS.BOMPEXPL SQL Statements
12.1.1
-
PACKAGE: APPS.BOMPXINQ
12.1.1
-
PACKAGE: APPS.BOMPXINQ
12.2.2
-
APPS.BOMPEXPL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOMPBXIN
12.1.1
-
PACKAGE BODY: APPS.BOMPXINQ
12.2.2
-
PACKAGE BODY: APPS.BOMPBXIN
12.2.2
-
PACKAGE BODY: APPS.BOMPXINQ
12.1.1
-
APPS.BOMPXINQ dependencies on BOM_SMALL_EXPL_TEMP
12.2.2
-
APPS.BOMPXINQ dependencies on BOM_SMALL_EXPL_TEMP
12.1.1
-
APPS.BOM_EXPLODER_PUB SQL Statements
12.1.1
-
APPS.BOM_EXPLODER_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOMPEXPL
12.1.1
-
PACKAGE BODY: APPS.BOMPEXPL
12.2.2
-
PACKAGE BODY: APPS.BOM_EXPLODER_PUB
12.1.1
-
eTRM - CSD Tables and Views
12.1.1
description: Transaction table for the High Volume Repair module. ,
-
PACKAGE BODY: APPS.BOM_EXPLODER_PUB
12.2.2