Search Results eco_for_production
Overview
APPS.BOM_COMPONENT_ALL_OPERATIONS_V is a reporting and integration view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that consolidates bill-of-material component data with the routing operations to which those components are assigned. It is owned by the APPS schema and is defined as a UNION of two sources: the component-level records held in BOM_INVENTORY_COMPONENTS and the component-to-operation assignments held in BOM_COMPONENT_OPERATIONS. The view's name reflects its dual nature — it returns every component row whether or not an operation assignment exists, and adds a separate row for each operation assignment. A constant ENTITY_IDENTIFIER column distinguishes the origin of each row ('COMPONENT' versus 'OPERATION'), which allows consumers to filter or aggregate the data by source. The view is primarily used in BOM inquiries, engineering change order (ECO) reporting, manufacturing execution interfaces, and custom reports that need a flattened picture of components and their operations.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over two referenced base objects: BOM_COMPONENT_OPERATIONS (exposed as a SYNONYM) and BOM_INVENTORY_COMPONENTS (a VIEW). The first branch of the UNION selects directly from BOM_INVENTORY_COMPONENTS (aliased BIC), producing component-level rows with COMP_OPERATION_SEQ_ID set to 0 and ENTITY_IDENTIFIER set to 'COMPONENT'. The second branch joins BOM_COMPONENT_OPERATIONS (BCO) to BOM_INVENTORY_COMPONENTS (BIC) on COMPONENT_SEQUENCE_ID, producing one row per component-operation combination, carrying the real COMP_OPERATION_SEQ_ID and ENTITY_IDENTIFIER set to 'OPERATION'. Effectivity, disable, implementation, and unit-number attributes are always sourced from BIC, ensuring the component's date and range context is consistently applied across both branches.
Key Columns
- BILL_SEQUENCE_ID — Identifier of the bill of material header to which the component belongs.
- COMPONENT_SEQUENCE_ID — Unique identifier of the component line; the join key between the two branches.
- COMPONENT_ITEM_ID — Inventory item identifier of the component.
- OPERATION_SEQ_NUM — Routing operation sequence to which the component is attached.
- COMP_OPERATION_SEQ_ID — Identifier of the component-operation assignment; 0 for pure component rows.
- EFFECTIVITY_DATE / DISABLE_DATE — Active date range of the component.
- IMPLEMENTATION_DATE — Date the component or assignment becomes effective.
- FROM_END_ITEM_UNIT_NUMBER / TO_END_ITEM_UNIT_NUMBER — End-item unit range for which the component is valid.
- ECO_FOR_PRODUCTION — Engineering change order flag indicating the component/operation was introduced for production.
- ROW_ID — ROWID of the underlying source row (BIC or BCO).
- ENTITY_IDENTIFIER — Literal 'COMPONENT' or 'OPERATION' identifying the row source.
Common Use Cases and Queries
A frequent requirement is to retrieve all components for a bill along with their operation assignments, including those not yet linked to any operation. Because rows carry ECO_FOR_PRODUCTION, the view is well suited to ECO impact analysis and to verifying which components are flagged for production. The following query lists components and operation assignments for a given bill:
SELECT bill_sequence_id, component_sequence_id, component_item_id,
operation_seq_num, comp_operation_seq_id,
effectivity_date, disable_date, eco_for_production, entity_identifier
FROM apps.bom_component_all_operations_v
WHERE bill_sequence_id = :p_bill_sequence_id
ORDER BY component_sequence_id, operation_seq_num;
To isolate only operation assignments, filter on the entity identifier:
SELECT component_sequence_id, operation_seq_num, comp_operation_seq_id FROM apps.bom_component_all_operations_v WHERE entity_identifier = 'OPERATION' AND bill_sequence_id = :p_bill_sequence_id;
To identify components flagged by an engineering change order for production, constrain ECO_FOR_PRODUCTION to the desired value. Joining COMPONENT_ITEM_ID to MTL_SYSTEM_ITEMS_B yields item descriptions for reporting. In 12.2.2 the same view is available and can be referenced from concurrent programs, OAF pages, and integration extracts.
-
VIEW: APPS.BOM_COMPONENT_ALL_OPERATIONS_V
12.1.1
-
VIEW: APPS.BOM_COMPONENT_ALL_OPERATIONS_V
12.2.2
-
View: BOM_COMPONENT_ALL_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COMPONENT_ALL_OPERATIONS_V, object_name:BOM_COMPONENT_ALL_OPERATIONS_V, status:VALID, product: BOM - Bills of Material , description: View of all operation for components - all records , implementation_dba_data: APPS.BOM_COMPONENT_ALL_OPERATIONS_V ,
-
View: BOM_COMPONENT_ALL_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COMPONENT_ALL_OPERATIONS_V, object_name:BOM_COMPONENT_ALL_OPERATIONS_V, status:VALID, product: BOM - Bills of Material , description: View of all operation for components - all records , implementation_dba_data: APPS.BOM_COMPONENT_ALL_OPERATIONS_V ,
-
APPS.BOM_RTG_NETWORK_API SQL Statements
12.2.2
-
VIEW: ENG.ENG_REVISED_OPERATIONS#
12.2.2
-
VIEW: WSM.WSM_COPY_OPERATIONS#
12.2.2
-
APPS.BOM_RTG_NETWORK_API SQL Statements
12.1.1
-
APPS.BOM_COPY_ROUTING SQL Statements
12.1.1
-
VIEW: BOM.BOM_COMPONENTS_B#
12.2.2
-
VIEW: BOM.BOM_OPERATION_SEQUENCES#
12.2.2
-
VIEW: APPS.BOM_COMPONENT_ALL_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COMPONENT_ALL_OPERATIONS_V, object_name:BOM_COMPONENT_ALL_OPERATIONS_V, status:VALID,
-
APPS.BOM_COPY_ROUTING SQL Statements
12.2.2
-
VIEW: WSM.WSM_COPY_REQUIREMENT_OPS#
12.2.2
-
VIEW: BOM.BOM_OP_SEQUENCES_ARCHIVE#
12.2.2
-
VIEW: ENG.ENG_REVISED_COMPONENTS#
12.2.2
-
VIEW: BOM.BOM_INVENTORY_COMPS_ARCHIVE#
12.2.2
-
VIEW: APPS.BOM_COMPONENT_ALL_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_COMPONENT_ALL_OPERATIONS_V, object_name:BOM_COMPONENT_ALL_OPERATIONS_V, status:VALID,
-
VIEW: ENG.ENG_REVISED_ITEMS#
12.2.2
-
APPS.BOM_CALC_OP_TIMES_PK SQL Statements
12.1.1
-
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 ,
-
APPS.BOMPBCMP SQL Statements
12.2.2
-
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: APPS.BOM_INVENTORY_COMPONENTS
12.2.2
-
APPS.BOM_CALC_OP_TIMES_PK SQL Statements
12.2.2
-
VIEW: ENG.ENG_REVISED_OPERATIONS#
12.2.2
owner:ENG, object_type:VIEW, object_name:ENG_REVISED_OPERATIONS#, status:VALID,
-
APPS.BOMPBCMP SQL Statements
12.1.1
-
VIEW: APPS.BOM_INVENTORY_COMPONENTS
12.1.1
-
APPS.BOMPIMPL SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOM_COPY_ROUTING
12.1.1
-
PACKAGE BODY: APPS.BOM_RTG_NETWORK_API
12.1.1
-
VIEW: ENG.ENG_REVISED_COMPONENTS#
12.2.2
owner:ENG, object_type:VIEW, object_name:ENG_REVISED_COMPONENTS#, status:VALID,
-
APPS.BOM_INV_COMPS1_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.BOM_RTG_NETWORK_API
12.2.2
-
VIEW: BOM.BOM_OPERATION_SEQUENCES#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_OPERATION_SEQUENCES#, status:VALID,
-
View: ENG_REVISED_ITEMS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_ERV, object_name:ENG_REVISED_ITEMS_ERV, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_ERV ,
-
VIEW: ENG.ENG_REVISED_ITEMS#
12.2.2
owner:ENG, object_type:VIEW, object_name:ENG_REVISED_ITEMS#, status:VALID,
-
VIEW: WSM.WSM_COPY_REQUIREMENT_OPS#
12.2.2
owner:WSM, object_type:VIEW, object_name:WSM_COPY_REQUIREMENT_OPS#, status:VALID,
-
VIEW: WSM.WSM_COPY_OPERATIONS#
12.2.2
owner:WSM, object_type:VIEW, object_name:WSM_COPY_OPERATIONS#, status:VALID,
-
PACKAGE BODY: APPS.BOM_COPY_ROUTING
12.2.2
-
APPS.BOM_INV_COMPS1_PKG SQL Statements
12.1.1
-
View: ENG_REVISED_ITEMS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_ERV, object_name:ENG_REVISED_ITEMS_ERV, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_ERV ,
-
APPS.BOMPIMPL SQL Statements
12.1.1
-
TABLE: BOM.BOM_OPERATION_SEQUENCES_TEMP
12.1.1
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_TEMP, object_name:BOM_OPERATION_SEQUENCES_TEMP, status:VALID,
-
TABLE: BOM.BOM_OPERATION_SEQUENCES_TEMP
12.2.2
owner:BOM, object_type:TABLE, fnd_design_data:BOM.BOM_OPERATION_SEQUENCES_TEMP, object_name:BOM_OPERATION_SEQUENCES_TEMP, status:VALID,
-
VIEW: BOM.BOM_OP_SEQUENCES_ARCHIVE#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_OP_SEQUENCES_ARCHIVE#, status:VALID,
-
VIEW: BOM.BOM_COMPONENTS_B#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_COMPONENTS_B#, status:VALID,
-
PACKAGE BODY: APPS.BOMPBCMP
12.2.2
-
VIEW: BOM.BOM_INVENTORY_COMPS_ARCHIVE#
12.2.2
owner:BOM, object_type:VIEW, object_name:BOM_INVENTORY_COMPS_ARCHIVE#, status:VALID,
-
View: ENG_REVISED_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ENG.ENG_REVISED_ITEMS_V, object_name:ENG_REVISED_ITEMS_V, status:VALID, product: ENG - Engineering , description: Pending and implemented revised items , implementation_dba_data: APPS.ENG_REVISED_ITEMS_V ,