Search Results item_type_description
Overview
BOM_EXPL_INQUIRY_VIEW is an APPS-owned database view in the Oracle E-Business Suite Bills of Material (BOM) module. It exposes the indented bill of material structure that is displayed by the Bills of Material inquiry window, presenting the multilevel explosion of an assembly as a flat, query-friendly result set. Rather than requiring the caller to walk the BOM explosion hierarchy manually, the view returns one row per component occurrence at each level, already joined to item master attributes, lookup meanings, and lead-time data.
Because the view is a read-only projection, it is safe to use in custom reports, Discoverer workbooks, and integration extracts without risk of modifying BOM data. The view text carries an ORDERED FIRST_ROWS hint with explicit index directives against MTL_SYSTEM_ITEMS_U1, BOM_BILL_OF_MATERIALS_U2, MFG_LOOKUPS_U1, and FND_COMMON_LOOKUPS_U1, indicating it was tuned for interactive, first-screen retrieval in a form window. Report developers should therefore expect fast response on the leading rows but should not assume the hint will survive rewrites or force a different plan under high-volume batch extraction.
Underlying Base Objects
The documented base objects referenced by the view are as follows:
- BOM_SMALL_EXPL_TEMP (synonym) — the temporary exploded structure that supplies the core component rows, aliased as BET in the view text.
- BOM_BILL_OF_MATERIALS (view) — the parent bill header, providing ASSEMBLY_ITEM_ID, ALTERNATE_BOM_DESIGNATOR, and ASSEMBLY_TYPE.
- MTL_SYSTEM_ITEMS_KFV (synonym) — the item master key flexfield view, aliased MSI, supplying UOM, item type, inventory item status, and lead-time attributes.
- MFG_LOOKUPS (view) — lookup meanings for supply basis and related codes.
- FND_COMMON_LOOKUPS (view) — lookup meaning for the item type code.
- BOM_GLOBALS, FND_GLOBAL, and INV_MEANING_SEL (packages) — server-side functions for organization context, user context, and item description resolution via C_ITEM_DESCRIPTION.
The view does not own storage; all data originates from these referenced objects, with the temporary explosion table supplying the per-level component sequence.
Key Columns
- TOP_BILL_SEQUENCE_ID, BILL_SEQUENCE_ID, COMPONENT_SEQUENCE_ID — identifiers for the top assembly, parent bill, and component occurrence.
- COMPONENT_ITEM_ID, TOP_ITEM_ID, PARENT_ITEM_ID, ORGANIZATION_ID — the item and organization keys used to join back to item master or inventory queries.
- PLAN_LEVEL, DISPLAY_PLAN_LEVEL — the explosion level, with the display variant padded using dots for indented presentation.
- COMPONENT_QUANTITY, EXTENDED_QUANTITY, PLANNING_FACTOR, COMPONENT_YIELD_FACTOR — quantity and yield information per component per level.
- ITEM_STATUS — sourced from MSI.INVENTORY_ITEM_STATUS_CODE; this is the column surfaced when users search on "item_status" and reports the inventory status of the component item in its organization.
- ITEM_TYPE, ITEM_TYPE_DESCRIPTION, UNIT_OF_MEASURE, DESCRIPTION — item classification and descriptive attributes.
- OPERATION_SEQ_NUM, OPERATION_LEAD_TIME_PERCENT, OPERATION_OFFSET — routing relationships.
- SUPPLY_TYPE, WIP_SUPPLY_TYPE, SUPPLY_SUBINVENTORY, SUPPLY_LOCATOR_ID — supply and sourcing attributes.
- IMPLEMENTATION_DATE, IMPLEMENTED_FLAG, CHANGE_NOTICE, COMPONENT_REMARKS — engineering change control information.
- MANUFACTURING_LEAD_TIME, CUM_MANUFACTURING_LEAD_TIME, CUMULATIVE_TOTAL_LEAD_TIME — cumulative lead-time fields returned from the item master.
Common Use Cases and Queries
Typical uses include multilevel BOM inquiry reports, costed or non-costed explosion extracts, engineering change impact analysis, and integration feeds into planning or MES systems. Users filtering on item status typically want either to exclude obsolete or inactive components or to isolate items flagged with a particular inventory status.
Example — list components and their inventory status for a given top assembly:
SELECT plan_level, component_item_id, item_num, unit_of_measure, component_quantity, item_status, descriptionFROM apps.bom_expl_inquiry_viewWHERE organization_id = :org_idAND top_item_id = :top_item_idORDER BY sort_order;
Example — find all exploded rows where a component carries a specific inventory item status:
SELECT top_item_id, parent_item_id, component_item_id, item_num, plan_level, item_statusFROM apps.bom_expl_inquiry_viewWHERE organization_id = :org_idAND item_status = 'Inactive'ORDER BY top_item_id, sort_order;
Because the view is tuned for FIRST_ROWS retrieval, queries returning a full organization-wide explosion should be constrained by ORGANIZATION_ID and TOP_ITEM_ID, and batch extracts should be scheduled off-peak. Remember that the explosion reflected is driven by the temporary explosion table populated during the inquiry session, so results reflect the alternate, revision, and effectivity parameters in force at runtime.
-
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 ,
-
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: WF_ITEM_ACTIVITY_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_V, object_name:WF_ITEM_ACTIVITY_STATUSES_V, status:VALID, product: FND - Application Object Library , description: Public view for accessing Workflow runtime status , implementation_dba_data: APPS.WF_ITEM_ACTIVITY_STATUSES_V ,
-
VIEW: APPS.WF_ITEM_ACTIVITY_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_V, object_name:WF_ITEM_ACTIVITY_STATUSES_V, status:VALID,
-
VIEW: APPS.WF_ITEM_ACTIVITY_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_V, object_name:WF_ITEM_ACTIVITY_STATUSES_V, status:VALID,
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.1.1
-
VIEW: APPS.BOM_EXPL_INQUIRY_VIEW
12.2.2
-
View: WF_ITEM_ACTIVITY_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.WF_ITEM_ACTIVITY_STATUSES_V, object_name:WF_ITEM_ACTIVITY_STATUSES_V, status:VALID, product: FND - Application Object Library , description: Public view for accessing Workflow runtime status , implementation_dba_data: APPS.WF_ITEM_ACTIVITY_STATUSES_V ,
-
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,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,