Search Results from_seq_num
Overview
The BOM_OPERATION_NETWORKS_V view is an APPS-owned database view in the Oracle E-Business Suite Bills of Material (BOM) module. Its documented description is "Operation networks view." The view exposes the relationships, or networks, that connect operations within a manufacturing routing. Specifically, it joins each network transition record from the underlying BOM_OPERATION_NETWORKS table to both the source ("from") and destination ("to") operation sequences, resolving the descriptive details of each endpoint.
In the EBS 12.1.1 and 12.2.2 schema, this view is typically consumed by reporting, integration, and planning extracts that need a denormalized, human-readable representation of operation flow. Rather than requiring the caller to independently join network records to two separate operation-sequence rows and to the standard-operations and departments tables, the view performs this resolution in a single object. It also provides denormalized endpoint attributes such as operation codes, operation descriptions, department codes, and effectivity dates.
Underlying Base Objects
The ETRM 12.2.2 metadata identifies the following referenced base objects, all accessed through synonyms in the APPS schema: BOM_DEPARTMENTS, BOM_OPERATION_NETWORKS, BOM_OPERATION_SEQUENCES, BOM_STANDARD_OPERATIONS, and the WSMPUTIL package.
The view text confirms this structure. BOM_OPERATION_NETWORKS is the driving table, aliased BON, supplying the transition records. It is joined to two instances of BOM_OPERATION_SEQUENCES (BOS1 for the from-operation, BOS2 for the to-operation) on FROM_OP_SEQ_ID and TO_OP_SEQ_ID respectively. Two instances of BOM_DEPARTMENTS (BD1, BD2) supply the department codes for each endpoint. Two outer-joined instances of BOM_STANDARD_OPERATIONS (BSO1, BSO2) supply standard operation codes where a standard operation is referenced.
The view relies on the WSMPUTIL package functions GET_EFF_STDOP_ID and GET_EFF_DEPT_ID to resolve the effective standard operation identifier and effective department identifier, ensuring that the correct effectivity-dated reference records are used for each operation sequence.
Key Columns
- ROUTING_SEQUENCE_ID — Identifier of the routing sequence to which the network belongs.
- FROM_OP_SEQ_ID / TO_OP_SEQ_ID — The operation sequence identifiers for the source and destination operations of the transition.
- FROM_SEQ_NUM / TO_SEQ_NUM — The operation sequence numbers for the from and to operations.
- FROM_OPERATION_CODE / TO_OPERATION_CODE and FROM_OPERATION_DESC / TO_OPERATION_DESC — Resolved operation codes and descriptions; descriptions fall back to the operation sequence description when no standard operation applies.
- FROM_DEPT_CODE / TO_DEPT_CODE — Department codes for each endpoint.
- FROM_EFFECTIVITY_DATE / TO_EFFECTIVITY_DATE — Effectivity dates for the source and destination operations.
- TRANSITION_TYPE — Classification of the network link between the two operations.
- PLANNING_PCT — The planning percentage associated with the transition, relevant to planning and capacity calculations. This is the column users are typically searching for when querying "planning_pct" against this view.
- OPERATION_TYPE — Operation type of the from-operation.
- ORIGINAL_SYSTEM_REFERENCE — Reference to the originating system for the network record.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — Descriptive flexfield (DFF) columns.
Common Use Cases and Queries
A frequent requirement is to report operation networks together with their planning percentages. The following query lists transitions for a routing, including the planning percentage:
SELECT from_seq_num, from_operation_code, to_seq_num, to_operation_code, transition_type, planning_pct FROM apps.bom_operation_networks_v WHERE routing_sequence_id = :p_routing_seq_id;
To identify transitions carrying a specific planning percentage:
SELECT routing_sequence_id, from_seq_num, to_seq_num, planning_pct FROM apps.bom_operation_networks_v WHERE planning_pct = :p_pct;
Integration extracts often denormalize endpoint descriptions for downstream manufacturing execution or shop-floor systems:
SELECT from_operation_code, from_operation_desc, from_dept_code, to_operation_code, to_operation_desc, to_dept_code FROM apps.bom_operation_networks_v WHERE routing_sequence_id = :p_routing_seq_id ORDER BY from_seq_num, to_seq_num;
Because the view already resolves effective standard operations and departments, these queries avoid the manual joins otherwise required against BOM_OPERATION_SEQUENCES, BOM_STANDARD_OPERATIONS, and BOM_DEPARTMENTS.
-
APPS.BOM_RTG_NETWORK_VALIDATE_API SQL Statements
12.2.2
-
APPS.BOM_RTG_NETWORK_VALIDATE_API SQL Statements
12.1.1
-
APPS.BOM_CALC_CYNP SQL Statements
12.2.2
-
APPS.WIP_LEADTIME_TEMP_PKG SQL Statements
12.1.1
-
APPS.WIP_LEADTIME_TEMP_PKG SQL Statements
12.2.2
-
View: BOM_OPERATION_NETWORKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_NETWORKS_V, object_name:BOM_OPERATION_NETWORKS_V, status:VALID, product: BOM - Bills of Material , description: Operation networks view , implementation_dba_data: APPS.BOM_OPERATION_NETWORKS_V ,
-
APPS.BOM_CALC_CYNP SQL Statements
12.1.1
-
APPS.BOM_RTG_NETWORK_API SQL Statements
12.2.2
-
VIEW: APPS.MSC_OPERATION_NETWORKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_OPERATION_NETWORKS_V, object_name:MSC_OPERATION_NETWORKS_V, status:VALID,
-
VIEW: APPS.BOM_OPERATION_NETWORKS_V
12.2.2
-
View: BOM_OPERATION_NETWORKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_NETWORKS_V, object_name:BOM_OPERATION_NETWORKS_V, status:VALID, product: BOM - Bills of Material , description: Operation networks view , implementation_dba_data: APPS.BOM_OPERATION_NETWORKS_V ,
-
VIEW: APPS.MSC_OPERATION_NETWORKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_OPERATION_NETWORKS_V, object_name:MSC_OPERATION_NETWORKS_V, status:VALID,
-
APPS.BOM_RTG_NETWORK_API SQL Statements
12.1.1
-
VIEW: APPS.BOM_OPERATION_NETWORKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_NETWORKS_V, object_name:BOM_OPERATION_NETWORKS_V, status:VALID,
-
VIEW: APPS.BOM_OPERATION_NETWORKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_OPERATION_NETWORKS_V, object_name:BOM_OPERATION_NETWORKS_V, status:VALID,
-
VIEW: APPS.BOM_OPERATION_NETWORKS_V
12.1.1
-
PACKAGE BODY: APPS.WIP_LEADTIME_TEMP_PKG
12.1.1
-
View: MSC_OPERATION_NETWORKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_OPERATION_NETWORKS_V, object_name:MSC_OPERATION_NETWORKS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the operations in the network routing , implementation_dba_data: APPS.MSC_OPERATION_NETWORKS_V ,
-
View: MSC_OPERATION_NETWORKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_OPERATION_NETWORKS_V, object_name:MSC_OPERATION_NETWORKS_V, status:VALID, product: MSC - Advanced Supply Chain Planning , description: this view shows all the operations in the network routing , implementation_dba_data: APPS.MSC_OPERATION_NETWORKS_V ,
-
PACKAGE BODY: APPS.WIP_LEADTIME_TEMP_PKG
12.2.2
-
PACKAGE BODY: APPS.BOM_RTG_NETWORK_API
12.2.2
-
PACKAGE BODY: APPS.BOM_RTG_NETWORK_API
12.1.1
-
PACKAGE BODY: APPS.BOM_RTG_NETWORK_VALIDATE_API
12.2.2
-
PACKAGE BODY: APPS.BOM_RTG_NETWORK_VALIDATE_API
12.1.1
-
PACKAGE BODY: APPS.BOM_CALC_CYNP
12.2.2
-
PACKAGE BODY: APPS.BOM_CALC_CYNP
12.1.1
-
APPS.WSMPUTIL SQL Statements
12.1.1
-
APPS.WSMPUTIL SQL Statements
12.2.2
-
APPS.BOM_RTG_NETWORK_VALIDATE_API dependencies on BOM_OPERATION_NETWORKS
12.2.2
-
APPS.BOM_RTG_NETWORK_VALIDATE_API dependencies on BOM_OPERATION_NETWORKS_V
12.1.1
-
APPS.BOM_RTG_NETWORK_VALIDATE_API dependencies on BOM_OPERATION_NETWORKS_V
12.2.2
-
APPS.BOM_RTG_NETWORK_VALIDATE_API dependencies on BOM_OPERATION_NETWORKS
12.1.1
-
APPS.WSMPUTIL dependencies on BOM_OPERATION_NETWORKS_V
12.2.2
-
APPS.BOM_RTG_NETWORK_API dependencies on BOM_OPERATION_NETWORKS_V
12.1.1
-
APPS.BOM_RTG_NETWORK_API dependencies on BOM_OPERATION_NETWORKS_V
12.2.2
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATION_NETWORKS_V
12.1.1
-
APPS.BOM_CALC_CYNP dependencies on DUAL
12.1.1
-
APPS.BOM_CALC_CYNP dependencies on DUAL
12.2.2
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATIONAL_ROUTINGS_V
12.1.1
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATIONAL_ROUTINGS_V
12.2.2
-
APPS.WIP_LEADTIME_TEMP_PKG dependencies on BOM_OPERATION_NETWORKS_V
12.2.2
-
APPS.WSMPUTIL dependencies on BOM_OPERATION_NETWORKS_V
12.1.1
-
APPS.WIP_LEADTIME_TEMP_PKG dependencies on BOM_OPERATION_NETWORKS_V
12.1.1
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATION_NETWORKS_V
12.2.2
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATION_NETWORKS
12.2.2
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATION_NETWORKS
12.1.1
-
APPS.BOM_RTG_NETWORK_API dependencies on BOM_OPERATION_NETWORKS
12.2.2
-
APPS.BOM_RTG_NETWORK_API dependencies on BOM_OPERATION_NETWORKS
12.1.1
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATION_SEQUENCES
12.2.2
-
APPS.BOM_CALC_CYNP dependencies on BOM_OPERATION_SEQUENCES
12.1.1