Search Results pick_components_flag
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: CST_XLA_INV_SYSTEM_ITEMS_REF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SYSTEM_ITEMS_REF_V, object_name:CST_XLA_INV_SYSTEM_ITEMS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_SYSTEM_ITEMS_REF_V ,
-
View: BOM_EXPLOSION_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSION_VIEW, object_name:BOM_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for report , implementation_dba_data: APPS.BOM_EXPLOSION_VIEW ,
-
View: CST_XLA_INV_SYSTEM_ITEMS_REF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_XLA_INV_SYSTEM_ITEMS_REF_V, object_name:CST_XLA_INV_SYSTEM_ITEMS_REF_V, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.CST_XLA_INV_SYSTEM_ITEMS_REF_V ,
-
View: BOM_EXPLOSION_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSION_VIEW, object_name:BOM_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Indented bill of material for report , implementation_dba_data: APPS.BOM_EXPLOSION_VIEW ,
-
View: BOM_INVENTORY_COMPONENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_V, object_name:BOM_INVENTORY_COMPONENTS_V, status:VALID, product: BOM - Bills of Material , description: Bill of material components , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS_V ,
-
View: BOM_INVENTORY_COMPONENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_V, object_name:BOM_INVENTORY_COMPONENTS_V, status:VALID, product: BOM - Bills of Material , description: Bill of material components , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS_V ,
-
View: BOM_BILL_OF_MATERIALS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_ERV, object_name:BOM_BILL_OF_MATERIALS_ERV, status:VALID, product: BOM - Bills of Material , description: Bill Of Materials view for ERES , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_ERV ,
-
View: BOM_BILL_OF_MATERIALS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_ERV, object_name:BOM_BILL_OF_MATERIALS_ERV, status:VALID, product: BOM - Bills of Material , description: Bill Of Materials view for ERES , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_ERV ,
-
View: BOM_INVENTORY_COMPONENTS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_ERV, object_name:BOM_INVENTORY_COMPONENTS_ERV, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS_ERV ,
-
View: BOM_INVENTORY_COMPONENTS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS_ERV, object_name:BOM_INVENTORY_COMPONENTS_ERV, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS_ERV ,
-
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: BOM_COPY_EXPLOSIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COPY_EXPLOSIONS_V, object_name:BOM_COPY_EXPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for Multi level copy structure , implementation_dba_data: APPS.BOM_COPY_EXPLOSIONS_V ,
-
View: BOM_COPY_EXPLOSIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COPY_EXPLOSIONS_V, object_name:BOM_COPY_EXPLOSIONS_V, status:VALID, product: BOM - Bills of Material , description: View for Multi level copy structure , implementation_dba_data: APPS.BOM_COPY_EXPLOSIONS_V ,
-
View: BOM_EXPLOSIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL_V, object_name:BOM_EXPLOSIONS_ALL_V, status:VALID, product: BOM - Bills of Material , description: View over BOM_EXPLOSIONS_ALL Table , implementation_dba_data: APPS.BOM_EXPLOSIONS_ALL_V ,
-
View: BOM_EXPLOSIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_EXPLOSIONS_ALL_V, object_name:BOM_EXPLOSIONS_ALL_V, status:VALID, product: BOM - Bills of Material , description: View over BOM_EXPLOSIONS_ALL Table , implementation_dba_data: APPS.BOM_EXPLOSIONS_ALL_V ,