Search Results bom_implosions_v
Overview
BOM_IMPLOSIONS_V is a predefined Oracle E-Business Suite view owned by the APPS schema and shipped as part of the Bill of Materials (BOM) product family. In Oracle EBS 12.1.1 and 12.2.2 it exposes the "where-used" side of a bill of materials — that is, the parent assemblies in which a given component is consumed — as opposed to the standard explosion view (BOM_EXPLOSIONS_V), which walks downward from a parent to its components. ETRM documents the object as a VALID view "for displaying BOM implosions," and this single-purpose definition underpins its role in reporting and integration.
Because the view is defined over the same implosion engine used by the BOM Inquiry "Where Used" window, it is the natural source for any custom report, concurrent program, or interface that must determine where an item is used across organizations without re-implementing the indented bill logic. The view returns one row per occurrence of the current item within a parent structure, carrying both the parent identity and the current item identity, so a single query can return a component together with every assembly above it.
Underlying Base Objects
The view is defined with a driving hint (/*+ LEADING(T) */) over the implosion temporary structure BOM_SMALL_IMPL_TEMP, aliased T. This synonym holds the flattened, temporarily materialized implosion rows populated by the BOM implosion APIs and packages such as BOM_GLOBALS. The view joins that structure to descriptive and validation objects, notably:
MTL_SYSTEM_ITEMS_VLandEGO_ITEMS_V— parent, current, and inventory item attributes, including concatenated segments and descriptions.MTL_ITEM_REVISIONS_B— revision labels resolved through scalar subqueries for effectivity control by revision.MFG_LOOKUPSandFND_LOOKUP_VALUES— meanings for effectivity control, basis type, and item type.BOM_ALTERNATE_DESIGNATORS_TLandBOM_STRUCTURE_TYPES_VL— alternate designator and structure type context.ENG_ENGINEERING_CHANGES— engineering change order reference carried on the row.HR_ORGANIZATION_UNITSplus theHR_SECURITY,HR_GENERAL,FND_GLOBAL, andFND_FLEX_SERVERpackages — organization name resolution and security enforcement.MTL_PARAMETERS,MTL_ITEM_CATALOG_GROUPS— inventory organization parameters and catalog grouping context.
Key Columns
ORGANIZATION_CODE,ORG_NAME,ORGANIZATION_ID— the manufacturing organization for the implosion row.CURRENT_ITEM_ID,CURRENT_CONCATENATED_SEGMENTS,CURRENT_DESCRIPTION— the component being located.PARENT_ITEM_ID,CONCATENATED_SEGMENTS,DESCRIPTION— the parent assembly that consumes the component.COMPONENT_QUANTITY— the usage quantity of the component in the parent.CURRENT_LEVEL— the indentation level within the imploded structure.ALTERNATE_DESIGNATOR,OPERATION_SEQ_NUM— alternate bill and routing operation context.CURRENT_REVISION— revision of the current item.COMPONENT_EFFECTIVE_FROM/COMPONENT_EFFECTIVE_TO— decoded effectivity dates, unit numbers, or revision labels depending onEFFECTIVITY_CONTROL.IMPLEMENTED_FLAG,DISABLED_FLAG— whether the usage is implemented and whether the disable date has passed.CHANGE_NOTICE,REVISED_ITEM_SEQUENCE_ID— engineering change association.
Common Use Cases and Queries
The most frequent use is locating every parent consuming a component, often prompted by item number or description. A typical query filters by the current item description:
SELECT organization_code,
concatenated_segments parent_item,
current_concatenated_segments component_item,
component_quantity,
current_level
FROM apps.bom_implosions_v
WHERE current_description LIKE :component_description
AND organization_id = :org_id;
Additional scenarios include impact analysis for engineering change orders (joining on CHANGE_NOTICE), multi-level where-used reporting for cost roll-up, and data extraction for downstream planning or master-data governance. Because the view depends on organization security and implosion parameters, callers should always restrict by ORGANIZATION_ID and initialize the BOM/HR security context before querying.
-
View: BOM_IMPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for displaying BOM implosions , implementation_dba_data: APPS.BOM_IMPLOSIONS_V ,
-
View: BOM_IMPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for displaying BOM implosions , implementation_dba_data: APPS.BOM_IMPLOSIONS_V ,
-
SYNONYM: APPS.BOM_ALTERNATE_DESIGNATORS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_ALTERNATE_DESIGNATORS_TL, status:VALID,
-
SYNONYM: APPS.BOM_SMALL_IMPL_TEMP
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_SMALL_IMPL_TEMP, status:VALID,
-
SYNONYM: APPS.BOM_ALTERNATE_DESIGNATORS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_ALTERNATE_DESIGNATORS_TL, status:VALID,
-
SYNONYM: APPS.BOM_SMALL_IMPL_TEMP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_SMALL_IMPL_TEMP, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_CATALOG_GROUPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATALOG_GROUPS, status:VALID,
-
PACKAGE BODY: APPS.BOM_ROLLUP_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_ROLLUP_PUB, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_CATALOG_GROUPS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_CATALOG_GROUPS, status:VALID,
-
PACKAGE: APPS.FND_FLEX_SERVER
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_FLEX_SERVER, status:VALID,
-
PACKAGE: APPS.FND_FLEX_SERVER
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_FLEX_SERVER, status:VALID,
-
PACKAGE BODY: APPS.BOM_ROLLUP_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BOM_ROLLUP_PUB, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.MTL_ITEM_REVISIONS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS_B, status:VALID,
-
SYNONYM: APPS.ENG_ENGINEERING_CHANGES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:ENG_ENGINEERING_CHANGES, status:VALID,
-
SYNONYM: APPS.ENG_ENGINEERING_CHANGES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:ENG_ENGINEERING_CHANGES, status:VALID,
-
SYNONYM: APPS.MTL_ITEM_REVISIONS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_ITEM_REVISIONS_B, status:VALID,
-
PACKAGE: APPS.BOM_GLOBALS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BOM_GLOBALS, status:VALID,
-
PACKAGE: APPS.BOM_GLOBALS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:BOM_GLOBALS, status:VALID,
-
VIEW: APPS.EGO_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_ITEMS_V, object_name:EGO_ITEMS_V, status:VALID,
-
VIEW: APPS.EGO_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EGO.EGO_ITEMS_V, object_name:EGO_ITEMS_V, status:VALID,
-
VIEW: APPS.BOM_STRUCTURE_TYPES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STRUCTURE_TYPES_VL, object_name:BOM_STRUCTURE_TYPES_VL, status:VALID,
-
VIEW: APPS.BOM_STRUCTURE_TYPES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STRUCTURE_TYPES_VL, object_name:BOM_STRUCTURE_TYPES_VL, status:VALID,
-
APPS.BOM_ROLLUP_PUB SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
APPS.BOM_ROLLUP_PUB SQL Statements
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.BOM_IMPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID,
-
VIEW: APPS.BOM_IMPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_IMPLOSIONS_V, object_name:BOM_IMPLOSIONS_V, status:VALID,
-
APPS.BOM_ROLLUP_PUB dependencies on BOM_IMPLOSIONS_V
12.2.2
-
APPS.BOM_ROLLUP_PUB dependencies on BOM_IMPLOSIONS_V
12.1.1
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, status:VALID,
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
VIEW: APPS.HR_ORGANIZATION_UNITS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ORGANIZATION_UNITS, object_name:HR_ORGANIZATION_UNITS, status:VALID,
-
PACKAGE BODY: APPS.BOM_ROLLUP_PUB
12.2.2
-
PACKAGE BODY: APPS.BOM_ROLLUP_PUB
12.1.1
-
SYNONYM: APPS.MTL_PARAMETERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
SYNONYM: APPS.MTL_PARAMETERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_PARAMETERS, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
eTRM - EGO Tables and Views
12.1.1
description: This table is used to store XML Schema Definitions. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,