Search Results component_yield_factor
Overview
BOM_INVENTORY_COMPONENTS is a read-only view owned by the APPS schema in Oracle E-Business Suite (12.1.1 and 12.2.2). It exposes single-level bill of material component information and is defined over BOM_COMPONENTS_B, the base table that stores bill of material component records. The view presents the first-level components of an assembly item, meaning that it returns the immediate children of a given parent assembly rather than a fully exploded, multi-level indented bill. Because it is a view and not a table, no data is stored within it; all query results are derived dynamically from BOM_COMPONENTS_B at runtime.
The view plays a significant role in reporting, data extraction, and integration scenarios where external systems or custom concurrent programs need to interrogate component assignments without navigating the full set of BOM tables. Its status is VALID, and it is classified under the BOM – Bills of Material product module.
Underlying Base Objects
The documented metadata identifies a single referenced base object: BOM_COMPONENTS_B, accessed through a synonym. BOM_COMPONENTS_B holds bill of material component definitions at the single level, including component item references, quantities, effectivity controls, supply attributes, and descriptive flexfield segments. The view selects from this table and surfaces the component attributes directly to the calling application. Because the view is defined only over BOM_COMPONENTS_B, it does not itself join to the bill header table (BOM_BILL_OF_MATERIALS) or to item master tables; consumers requiring parent assembly context or item descriptions must join those tables separately using the sequence and item identifiers exposed by the view.
Key Columns
- COMPONENT_SEQUENCE_ID – Primary identifier for the component record; used to join back to BOM_COMPONENTS_B and related BOM tables.
- BILL_SEQUENCE_ID – Identifies the parent bill of material to which the component belongs.
- COMPONENT_ITEM_ID – Reference to the component item in the item master.
- OPERATION_SEQ_NUM – Routing operation to which the component is assigned.
- COMPONENT_QUANTITY and COMPONENT_YIELD_FACTOR – Usage quantity and yield percentage for the component.
- BASIS_TYPE – Indicates whether quantity is stated per item or per lot.
- EFFECTIVITY_DATE, DISABLE_DATE, IMPLEMENTATION_DATE – Effectivity window controlling when the component is active.
- CHANGE_NOTICE – Engineering change order associated with the component.
- PLANNING_FACTOR, QUANTITY_RELATED, INCLUDE_IN_COST_ROLLUP – Planning and costing attributes.
- WIP_SUPPLY_TYPE, SUPPLY_SUBINVENTORY, SUPPLY_LOCATOR_ID – Work in process supply and material sourcing information.
- OPTIONAL, MUTUALLY_EXCLUSIVE_OPTIONS, OPTIONAL_ON_MODEL – Option class and model configuration flags.
- CHECK_ATP, SHIPPING_ALLOWED, REQUIRED_TO_SHIP, REQUIRED_FOR_REVENUE, INCLUDE_ON_SHIP_DOCS, INCLUDE_ON_BILL_DOCS – Order management and shipping controls.
- ATTRIBUTE1 through ATTRIBUTE15 – Descriptive flexfield segments.
- LAST_UPDATE_DATE, CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_LOGIN – Standard audit columns.
Common Use Cases and Queries
The view is typically used to retrieve a flat listing of the first-level components for an assembly, to audit effectivity and change control data, or to feed external planning and integration processes. The following example lists active components for a specified bill:
- SELECT component_sequence_id, component_item_id, component_quantity, basis_type, effectivity_date, disable_date FROM apps.bom_inventory_components WHERE bill_sequence_id = :p_bill_sequence_id ORDER BY component_sequence_id;
- SELECT component_item_id, wip_supply_type, supply_subinventory, planning_factor FROM apps.bom_inventory_components WHERE bill_sequence_id = :p_bill_sequence_id AND NVL(disable_date, SYSDATE + 1) > SYSDATE;
- SELECT component_item_id, change_notice, implementation_date FROM apps.bom_inventory_components WHERE component_sequence_id = :p_component_sequence_id;
Because the view is limited to single-level components, multi-level explosion requirements should be handled with the BOM explosion APIs or the standard indented bill reports rather than by self-joining this view. All access should respect the APPS schema grants and standard Oracle EBS security and MOAC considerations.
-
View: BOM_INVENTORY_COMPONENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS, object_name:BOM_INVENTORY_COMPONENTS, status:VALID, product: BOM - Bills of Material , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS ,
-
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: BOM_INVENTORY_COMPONENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INVENTORY_COMPONENTS, object_name:BOM_INVENTORY_COMPONENTS, status:VALID, product: BOM - Bills of Material , description: BOM_INVENTORY_COMPONENTS stores information of BOM_COMPONENTS_B which further stores information about bills of material components and stores single-level components.This lists the first level components of an assembly item , implementation_dba_data: APPS.BOM_INVENTORY_COMPONENTS ,
-
View: BOM_CONSOLIDATE_EXPLOSION_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_CONSOLIDATE_EXPLOSION_VIEW, object_name:BOM_CONSOLIDATE_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Consolidated Bill of Material structure for report , implementation_dba_data: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW ,
-
View: BOM_CONSOLIDATE_EXPLOSION_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_CONSOLIDATE_EXPLOSION_VIEW, object_name:BOM_CONSOLIDATE_EXPLOSION_VIEW, status:VALID, product: BOM - Bills of Material , description: Consolidated Bill of Material structure for report , implementation_dba_data: APPS.BOM_CONSOLIDATE_EXPLOSION_VIEW ,
-
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: 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_INV_COMPS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INV_COMPS_INTERFACE_V, object_name:BOM_INV_COMPS_INTERFACE_V, status:VALID, product: BOM - Bills of Material , description: Mass change components , implementation_dba_data: APPS.BOM_INV_COMPS_INTERFACE_V ,
-
View: BOM_INV_COMPS_INTERFACE_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INV_COMPS_INTERFACE_ERV, object_name:BOM_INV_COMPS_INTERFACE_ERV, status:VALID, product: BOM - Bills of Material , description: Mass change components , implementation_dba_data: APPS.BOM_INV_COMPS_INTERFACE_ERV ,
-
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_INV_COMPS_INTERFACE_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INV_COMPS_INTERFACE_ERV, object_name:BOM_INV_COMPS_INTERFACE_ERV, status:VALID, product: BOM - Bills of Material , description: Mass change components , implementation_dba_data: APPS.BOM_INV_COMPS_INTERFACE_ERV ,
-
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_INV_COMPS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_INV_COMPS_INTERFACE_V, object_name:BOM_INV_COMPS_INTERFACE_V, status:VALID, product: BOM - Bills of Material , description: Mass change components , implementation_dba_data: APPS.BOM_INV_COMPS_INTERFACE_V ,
-
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_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 ,