Search Results from_operation_seq_num
Overview
BOMFV_OPERATION_NETWORKS is an APPS-owned, VALID view in the Oracle E-Business Suite Bills of Material (BOM) module. It is documented in ETRM as a retrofitted object, meaning it was re-implemented against the current 12.1.1 / 12.2.2 data model while preserving the interface expected by earlier releases. The view exposes the network of directed connections between operation sequences within manufacturing routings. Each row describes a single edge — a "from" operation sequence linked to a "to" operation sequence — together with the transition type, planning percentage, and effectivity window governing that link.
Because it resolves foreign keys into descriptive attributes (organization code and name, routing alternate designator, item context, and operation sequence numbers), the view is suited to operational reporting, routing analysis, and integration extracts. The user search term "from_operation_seq_num" corresponds directly to the view's FROM_OPERATION_SEQ_NUM column, which is the natural predicate for tracing predecessor operations on a routing.
Underlying Base Objects
The ETRM metadata documents the following referenced base objects, all accessed through APPS synonyms:
- BOM_OPERATION_NETWORKS — the driving table (aliased NE) holding the network relationships, including transition type, planning percentage, effectivity dates, and the FROM_OP_SEQ_ID / TO_OP_SEQ_ID keys.
- BOM_OPERATION_SEQUENCES (aliased SQ1 and SQ2) — the "from" and "to" operation sequence records, supplying OPERATION_SEQ_NUM and EFFECTIVITY_DATE on each side.
- BOM_OPERATIONAL_ROUTINGS (aliased OP1 and OP2) — the routing headers that own each operation sequence, supplying ROUTING_SEQUENCE_ID and ALTERNATE_ROUTING_DESIGNATOR.
- MTL_SYSTEM_ITEMS_B (aliased SYS1 and SYS2) — the assembly items associated with each routing, joined on INVENTORY_ITEM_ID and ORGANIZATION_ID.
- MTL_PARAMETERS (aliased PA1 and PA2) — the inventory organizations, providing ORGANIZATION_CODE.
- HR_ALL_ORGANIZATION_UNITS (aliased AL1 and AL2) — providing the ORGANIZATION_NAME for each side.
The join path is anchored on BOM_OPERATION_NETWORKS: NE.FROM_OP_SEQ_ID equals SQ1.OPERATION_SEQUENCE_ID and NE.TO_OP_SEQ_ID equals SQ2.OPERATION_SEQUENCE_ID. Each operation sequence is then linked to its routing via ROUTING_SEQUENCE_ID, each routing to its assembly item via ASSEMBLY_ITEM_ID and ORGANIZATION_ID, and each organization to both MTL_PARAMETERS and HR_ALL_ORGANIZATION_UNITS via ORGANIZATION_ID. This structure permits the same view to represent intra-organization and cross-organization routing networks.
Key Columns
- FROM_OPERATION_SEQ_NUM and TO_OPERATION_SEQ_NUM — the operation sequence numbers on either end of the network edge. These are the primary analytical columns and the target of the searched term.
- FROM_EFFECTIVITY_DATE and TO_EFFECTIVITY_DATE — the effectivity dates of the respective operation sequences.
- FROM_ALTERNATE_ROUTING_CODE and TO_ALTERNATE_ROUTING_CODE — the alternate routing designators for each side of the connection.
- FROM_ORGANIZATION_CODE / FROM_ORGANIZATION_NAME and TO_ORGANIZATION_CODE / TO_ORGANIZATION_NAME — descriptive organization identifiers resolved from MTL_PARAMETERS and HR_ALL_ORGANIZATION_UNITS.
- CONNECTION_TYPE — the transition type (from NE.TRANSITION_TYPE) describing the nature of the link between operations.
- PLANNING_PERCENT — the planning percentage applied to the network transition.
- START_EFFECTIVE_DATE and END_EFFECTIVE_DATE — effectivity and disable dates of the network record itself.
- FROM_ROUTING_SEQUENCE_ID and TO_ROUTING_SEQUENCE_ID — surrogate keys identifying each routing header.
- FROM_OP_SEQ_ID and TO_OP_SEQ_ID — the operation sequence IDs underpinning the join.
- UPDATED_ON, UPDATED_BY, CREATED_ON, CREATED_BY — audit columns inherited from BOM_OPERATION_NETWORKS.
Two hidden key-flex columns, _KF:ROUTING_FROM_ITEM_NAME and _KF:ROUTING_TO_ITEM_NAME, are exposed for descriptive flexfield integration.
Common Use Cases and Queries
Typical scenarios include reporting all networks that originate from a given operation sequence, reconciling routing transitions across organizations, and extracting connection data for MES or scheduling integration.
To trace all successors of a specific operation sequence number within an organization:
- SELECT from_operation_seq_num, to_operation_seq_num, connection_type, planning_percent, from_organization_code, to_organization_code FROM bomfv_operation_networks WHERE from_operation_seq_num = :seq_num AND from_organization_code = :org_code;
To inspect the full network for an organization, including effectivity:
- SELECT from_operation_seq_num, to_operation_seq_num, connection_type, planning_percent, start_effective_date, end_effective_date FROM bomfv_operation_networks WHERE from_organization_code = :org_code ORDER BY from_operation_seq_num, to_operation_seq_num;
To identify cross-organization connections and their alternate routings:
- SELECT from_organization_code, to_organization_code, from_alternate_routing_code, to_alternate_routing_code, connection_type FROM bomfv_operation_networks WHERE from_organization_code <> to_organization_code;
For change auditing, the UPDATED_ON, UPDATED_BY, CREATED_ON, and CREATED_BY columns support incremental extracts. Because the view resolves organizations and routings into readable values, it is generally preferable to the underlying BOM_OPERATION_NETWORKS table for reporting, while direct table access remains appropriate for high-volume batch processing where join overhead is a concern.
-
View: BOMFV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_OPERATION_NETWORKS ,
-
VIEW: APPS.BOMBV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID,
-
View: BOMBV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_OPERATION_NETWORKS ,
-
VIEW: APPS.BOMFV_OPERATION_NETWORKS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID,
-
VIEW: APPS.BOMBV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID,
-
VIEW: APPS.BOMFV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID,
-
View: BOMFV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_OPERATION_NETWORKS, object_name:BOMFV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_OPERATION_NETWORKS ,
-
View: BOMBV_OPERATION_NETWORKS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_OPERATION_NETWORKS, object_name:BOMBV_OPERATION_NETWORKS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_OPERATION_NETWORKS ,
-
VIEW: APPS.WIP_DEPT_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID,
-
VIEW: APPS.WIP_INST_EMP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID,
-
VIEW: APPS.WIP_INST_EMP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID,
-
VIEW: APPS.WIP_DEPT_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID,
-
VIEW: APPS.BOMFV_OPERATION_NETWORKS
12.1.1
-
VIEW: APPS.BOMBV_OPERATION_NETWORKS
12.2.2
-
VIEW: APPS.WIP_INST_EQP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID,
-
VIEW: APPS.WIP_INST_EQP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID,
-
VIEW: APPS.BOMBV_OPERATION_NETWORKS
12.1.1
-
VIEW: APPS.BOMFV_OPERATION_NETWORKS
12.2.2
-
View: WIP_DEPT_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department upstream dispatch list , implementation_dba_data: APPS.WIP_DEPT_UPS_DISPATCH_V ,
-
VIEW: APPS.WIP_RES_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID,
-
VIEW: APPS.WIP_RES_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID,
-
View: WIP_RES_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource upstream dispatch list , implementation_dba_data: APPS.WIP_RES_UPS_DISPATCH_V ,
-
View: WIP_DEPT_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_DEPT_UPS_DISPATCH_V, object_name:WIP_DEPT_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Department upstream dispatch list , implementation_dba_data: APPS.WIP_DEPT_UPS_DISPATCH_V ,
-
View: WIP_RES_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_RES_UPS_DISPATCH_V, object_name:WIP_RES_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Resource upstream dispatch list , implementation_dba_data: APPS.WIP_RES_UPS_DISPATCH_V ,
-
View: WIP_INST_EMP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_UPS_DISPATCH_V ,
-
View: WIP_INST_EQP_UPS_DISPATCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_UPS_DISPATCH_V ,
-
View: WIP_INST_EQP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EQP_UPS_DISPATCH_V, object_name:WIP_INST_EQP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Equipment resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EQP_UPS_DISPATCH_V ,
-
View: WIP_INST_EMP_UPS_DISPATCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_INST_EMP_UPS_DISPATCH_V, object_name:WIP_INST_EMP_UPS_DISPATCH_V, status:VALID, product: WIP - Work in Process , description: Employee resource instance upstream dispatch list , implementation_dba_data: APPS.WIP_INST_EMP_UPS_DISPATCH_V ,
-
VIEW: APPS.WIP_RES_UPS_DISPATCH_V
12.1.1
-
VIEW: APPS.WIP_DEPT_UPS_DISPATCH_V
12.1.1
-
VIEW: APPS.WIP_DEPT_UPS_DISPATCH_V
12.2.2
-
VIEW: APPS.WIP_INST_EQP_UPS_DISPATCH_V
12.1.1
-
VIEW: APPS.WIP_RES_UPS_DISPATCH_V
12.2.2
-
VIEW: APPS.WIP_INST_EQP_UPS_DISPATCH_V
12.2.2
-
VIEW: APPS.WIP_INST_EMP_UPS_DISPATCH_V
12.2.2
-
VIEW: APPS.WIP_INST_EMP_UPS_DISPATCH_V
12.1.1
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - WIP Tables and Views
12.2.2
-
APPS.WSMPLBMI dependencies on FND_MESSAGE
12.1.1
-
APPS.WSMPLBMI dependencies on FND_MESSAGE
12.2.2
-
APPS.WSMPLBMI dependencies on WSMPLBMI
12.2.2
-
APPS.WSMPLBMI dependencies on WSMPLBMI
12.1.1
-
PACKAGE BODY: APPS.WSMPLBMI
12.2.2
-
PACKAGE BODY: APPS.WSMPLBMI
12.1.1
-
APPS.WSMPLBMI dependencies on FND_FILE
12.1.1
-
APPS.WSMPLBMI dependencies on FND_FILE
12.2.2
-
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. ,