Search Results bom_bill_of_materials_v
Overview
BOM_BILL_OF_MATERIALS_V is an APPS-owned database view within the Oracle E-Business Suite Bills of Material (BOM) module. It presents bill of material header information joined with descriptive item attributes, exposing a denormalized, reporting-friendly representation of assemblies and their BOM definitions across organizations. The view is documented as "Bills of material" and is valid in both EBS 12.1.1 and 12.2.2.
Because the view consolidates data from the core BOM header table with item master attributes and lookup meanings, it is commonly used in reports, concurrent programs, integration extracts, and ad hoc queries that need assembly-level BOM detail without manually joining the item master and lookup tables. It is not an operational transaction table; it is a read-oriented construct intended to simplify retrieval of BOM structures.
Underlying Base Objects
The view is defined over several documented base objects. The primary driver is BOM_BILL_OF_MATERIALS (documented as a VIEW in ETRM 12.2.2), which supplies assembly item identification, bill sequence, alternate designator, effectivity control, and audit columns. MTL_SYSTEM_ITEMS and MTL_SYSTEM_ITEMS_TL (documented as SYNONYMs) supply item attributes and the language-specific description respectively. FND_COMMON_LOOKUPS and MFG_LOOKUPS are VIEWs providing decoded lookup meanings, while BOM_STRUCTURE_TYPES_B (SYNONYM) supplies structure type context. FND_GLOBAL (PACKAGE) provides session context through USERENV('LANG') for language filtering.
Joins link assembly item and organization between the BOM and item tables, apply outer joins from the item type to FND_COMMON_LOOKUPS (LOOKUP_TYPE = 'ITEM_TYPE') and from the EAM item type to MFG_LOOKUPS (LOOKUP_TYPE = 'MTL_EAM_ITEM_TYPE'), and resolve structure type through BOM_STRUCTURE_TYPES_B.
Key Columns
- ROW_ID — ROWID of the underlying BOM record.
- ASSEMBLY_ITEM_ID / ORGANIZATION_ID — Identifies the assembly item and inventory organization.
- ENG_ITEM_FLAG — Engineering item indicator sourced from MTL_SYSTEM_ITEMS; central to the user query "eng_item_flag".
- BOM_ITEM_TYPE / ITEM_TYPE — Item type code and its decoded meaning from FND_COMMON_LOOKUPS.
- DESCRIPTION — Language-specific item description from MTL_SYSTEM_ITEMS_TL.
- UOM, PICK_COMPONENTS_FLAG, REPLENISH_TO_ORDER_FLAG, BOM_ENABLED_FLAG — Item/planning attributes.
- ALTERNATE_BOM_DESIGNATOR, BILL_SEQUENCE_ID, STRUCTURE_TYPE_ID, EFFECTIVITY_CONTROL — BOM definition and effectivity controls.
- EAM_ITEM_TYPE / EAM_ITEM_TYPE_VALUE — Enterprise Asset Management item type and its decoded value.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE.
Common Use Cases and Queries
A frequent scenario is identifying engineering items in a given organization. The ENG_ITEM_FLAG column allows direct filtering without joining MTL_SYSTEM_ITEMS:
SELECT assembly_item_id, organization_id, eng_item_flag, description FROM apps.bom_bill_of_materials_v WHERE organization_id = :org_id AND eng_item_flag = 'Y';
Another common case is extracting all bill headers for an organization with decoded item types:
SELECT assembly_item_id, item_type, description, alternate_bom_designator FROM apps.bom_bill_of_materials_v WHERE organization_id = :org_id ORDER BY assembly_item_id;
Users may also audit BOM-enabled items or EAM-related assemblies:
SELECT assembly_item_id, bom_enabled_flag, eam_item_type_value FROM apps.bom_bill_of_materials_v WHERE bom_enabled_flag = 'Y';
Because the view applies language filtering via USERENV('LANG'), results reflect the session language. Queries should always constrain ORGANIZATION_ID to limit volume and ensure index use.
-
View: BOM_BILL_OF_MATERIALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_V, object_name:BOM_BILL_OF_MATERIALS_V, status:VALID, product: BOM - Bills of Material , description: Bills of material , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_V ,
-
View: BOM_BILL_OF_MATERIALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_V, object_name:BOM_BILL_OF_MATERIALS_V, status:VALID, product: BOM - Bills of Material , description: Bills of material , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_V ,
-
View: MSD_SR_PRD_PF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PRD_PF_V, object_name:MSD_SR_PRD_PF_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View that associates the Product level to Product Family level in the Product Dimension. This view would be applied to an Oracle Applications 11i instance from which the Product to Product Family level association inform , implementation_dba_data: APPS.MSD_SR_PRD_PF_V ,
-
View: MSD_SR_PRD_PF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PRD_PF_V, object_name:MSD_SR_PRD_PF_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View that associates the Product level to Product Family level in the Product Dimension. This view would be applied to an Oracle Applications 11i instance from which the Product to Product Family level association inform , implementation_dba_data: APPS.MSD_SR_PRD_PF_V ,
-
View: XNC_ORG_ITEM_BOM_V
12.2.2
product: XNC - Sales for Communications (Obsolete) , description: XNC_ORG_ITEM_BOM_V retrieves all bills of materials (or packages) available for an Organization and Inventory Item. , implementation_dba_data: Not implemented in this database ,
-
View: XNC_ORG_ITEM_BOM_V
12.1.1
product: XNC - Sales for Communications (Obsolete) , description: XNC_ORG_ITEM_BOM_V retrieves all bills of materials (or packages) available for an Organization and Inventory Item. , implementation_dba_data: Not implemented in this database ,
-
View: MSD_SR_PF_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PF_ALL_V, object_name:MSD_SR_PF_ALL_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View that associates the Product Family to Top level in the Product Dimension. This view would be applied to an Oracle Applications 11i instance from which the Product Family to Top level association information is to be , implementation_dba_data: APPS.MSD_SR_PF_ALL_V ,
-
VIEW: APPS.MSD_SR_PF_ALL_V
12.2.2
-
SYNONYM: APPS.BOM_STRUCTURE_TYPES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_STRUCTURE_TYPES_B, status:VALID,
-
VIEW: APPS.MSD_SR_PF_ALL_V
12.1.1
-
View: MSD_SR_PF_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PF_ALL_V, object_name:MSD_SR_PF_ALL_V, status:VALID, product: MSD - Demand Planning , description: This is the Source View that associates the Product Family to Top level in the Product Dimension. This view would be applied to an Oracle Applications 11i instance from which the Product Family to Top level association information is to be , implementation_dba_data: APPS.MSD_SR_PF_ALL_V ,
-
SYNONYM: APPS.BOM_STRUCTURE_TYPES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_STRUCTURE_TYPES_B, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.MSD_SR_PF_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PF_ALL_V, object_name:MSD_SR_PF_ALL_V, status:VALID,
-
VIEW: APPS.MSD_SR_PF_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSD.MSD_SR_PF_ALL_V, object_name:MSD_SR_PF_ALL_V, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_TL, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS_TL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_V, object_name:BOM_BILL_OF_MATERIALS_V, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_V, object_name:BOM_BILL_OF_MATERIALS_V, status:VALID,
-
VIEW: APPS.FND_COMMON_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_COMMON_LOOKUPS, object_name:FND_COMMON_LOOKUPS, status:VALID,
-
VIEW: APPS.FND_COMMON_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.FND_COMMON_LOOKUPS, object_name:FND_COMMON_LOOKUPS, status:VALID,
-
VIEW: APPS.BOM_BILL_OF_MATERIALS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS, object_name:BOM_BILL_OF_MATERIALS, status:VALID,
-
VIEW: APPS.BOM_BILL_OF_MATERIALS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS, object_name:BOM_BILL_OF_MATERIALS, 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.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
SYNONYM: APPS.MTL_SYSTEM_ITEMS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_SYSTEM_ITEMS, status:VALID,
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - BOM Tables and Views
12.2.2
description: Table to map wip transactions to their corresponding event types. ,
-
eTRM - BOM Tables and Views
12.1.1
description: Table to map wip transactions to their corresponding event types. ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
12.1.1
-
PACKAGE: APPS.FND_GLOBAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - MSD Tables and Views
12.2.2
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - MSD Tables and Views
12.1.1
description: This is the fact table that stores the UOM conversions information. ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
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 - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,