Search Results operation_description
Overview
The APPS.BOM_OPERATION_NETWORKS_V view exposes the directed operation network defined within an Oracle E-Business Suite manufacturing routing. It presents each network transition — the movement from a From operation sequence to a To operation sequence — alongside the descriptive attributes of both endpoint operations, so that a single row fully describes one edge of the routing graph. Because it denormalizes the operation and department descriptions onto the transition record, the view is well suited to reporting, integration, and diagnostic queries that require readable operation descriptions rather than raw surrogate identifiers.
The object is owned by APPS and is defined over synonyms to the underlying BOM tables. It is not a base table; it carries no independent storage and reflects only the effective operation definitions resolved at query time.
Underlying Base Objects
The view is defined over the following documented objects:
- BOM_OPERATION_NETWORKS (BON) — the driving table, supplying the network edge itself (FROM_OP_SEQ_ID, TO_OP_SEQ_ID, TRANSITION_TYPE, PLANNING_PCT, and the standard WHO columns).
- BOM_OPERATION_SEQUENCES (BOS1, BOS2) — joined as the From (FROM_OP_SEQ_ID) and To (TO_OP_SEQ_ID) operation sequences respectively, supplying sequence numbers, effectivity dates, operation descriptions, and standard operation references.
- BOM_STANDARD_OPERATIONS (BSO1, BSO2) — outer-joined to the From and To sequences to obtain the standard operation code and description.
- BOM_DEPARTMENTS (BD1, BD2) — joined to return the department code for each endpoint operation.
- WSMPUTIL (PACKAGE) — its get_eff_stdop_id and get_eff_dept_id functions resolve the effective standard operation and department for a given operation sequence, which is why the joins to BSO1 and BD1 are function-based rather than direct.
Key Columns
- ROW_ID — the ROWID of the underlying BOM_OPERATION_NETWORKS row.
- ROUTING_SEQUENCE_ID — the routing to which the From operation belongs.
- FROM_OP_SEQ_ID / TO_OP_SEQ_ID — surrogate keys of the source and target operation sequences.
- FROM_SEQ_NUM / TO_SEQ_NUM — the displayed sequence numbers of the two operations.
- FROM_OPERATION_CODE / TO_OPERATION_CODE — the standard operation codes at each endpoint.
- FROM_OPERATION_DESC / TO_OPERATION_DESC — the operation_description values the user searched for. These are computed with a
DECODE(NVL(STANDARD_OPERATION_ID,0),0, OPERATION_DESCRIPTION, STANDARD_OPERATION_DESCRIPTION)expression: when no standard operation is referenced, the sequence-level description is returned; otherwise the standard operation description is used. This logic was introduced by bugfix 7387499. - FROM_EFFECTIVITY_DATE / TO_EFFECTIVITY_DATE — effectivity of each endpoint operation.
- FROM_DEPT_CODE / TO_DEPT_CODE — department codes resolved through WSMPUTIL.
- TRANSITION_TYPE — the nature of the network link between the operations.
- PLANNING_PCT — the planning percentage associated with the transition.
- OPERATION_TYPE — the operation type of the From sequence.
- ORIGINAL_SYSTEM_REFERENCE — source-system identifier used in data migration and interface contexts.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the extensible descriptive flexfield columns carried from BOM_OPERATION_NETWORKS.
Common Use Cases and Queries
Typical uses include routing network reports, operation precedence analysis, and integration extracts where operation descriptions are required without additional lookups.
- List all transitions for a routing with readable descriptions:
SELECT routing_sequence_id,
from_seq_num, from_operation_desc, from_dept_code,
to_seq_num, to_operation_desc, to_dept_code,
transition_type, planning_pct
FROM apps.bom_operation_networks_v
WHERE routing_sequence_id = :routing_sequence_id
ORDER BY from_seq_num, to_seq_num;
- Search transitions by operation description, the primary use of the searched term:
SELECT from_operation_code, from_operation_desc,
to_operation_code, to_operation_desc
FROM apps.bom_operation_networks_v
WHERE UPPER(from_operation_desc) LIKE UPPER('%'||:description||'%')
OR UPPER(to_operation_desc) LIKE UPPER('%'||:description||'%');
Because FROM_OPERATION_DESC and TO_OPERATION_DESC are resolved dynamically through the DECODE expression and the WSMPUTIL function calls, queries against description columns do not benefit from simple column indexes; filtering on FROM_OP_SEQ_ID, TO_OP_SEQ_ID, or ROUTING_SEQUENCE_ID is generally more efficient.
-
VIEW: APPS.BOM_OPERATION_NETWORKS_V
12.1.1
-
VIEW: APPS.BOM_OPERATION_NETWORKS_V
12.2.2
-
VIEW: AHL.AHL_OPERATIONS_H_TL#
12.2.2
-
VIEW: AHL.AHL_OPERATIONS_TL#
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: 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 ,
-
VIEW: MSC.MSC_ROUTING_OPERATIONS#
12.2.2
-
VIEW: BOM.BOM_RTG_OPERATION_TEMP#
12.2.2
-
VIEW: MSC.MSC_ST_ROUTING_OPERATIONS#
12.2.2
-
VIEW: BOM.BOM_STANDARD_OPERATIONS#
12.2.2
-
VIEW: ENG.ENG_REVISED_OPERATIONS#
12.2.2
-
VIEW: APPS.WSM_COPY_NEXT_OPERATIONS_V
12.2.2
-
VIEW: WSM.WSM_COPY_OPERATIONS#
12.2.2
-
VIEW: BOM.BOM_OP_SEQUENCES_ARCHIVE#
12.2.2
-
VIEW: BOM.BOM_OPERATION_SEQUENCES#
12.2.2
-
VIEW: APPS.MSC_FLP_OP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_OP_V, object_name:MSC_FLP_OP_V, status:VALID,
-
VIEW: APPS.WMS_WAVEPLAN_TIME_PER_TASK_V
12.1.1
owner:APPS, object_type:VIEW, object_name:WMS_WAVEPLAN_TIME_PER_TASK_V, status:VALID,
-
VIEW: APPS.WMS_WAVEPLAN_TIME_PER_TASK_V
12.2.2
owner:APPS, object_type:VIEW, object_name:WMS_WAVEPLAN_TIME_PER_TASK_V, status:VALID,
-
VIEW: APPS.MSC_FLP_OP_ATP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_OP_ATP_V, object_name:MSC_FLP_OP_ATP_V, status:VALID,
-
TABLE: AHL.AHL_OPERATIONS_H_TL
12.2.2
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_OPERATIONS_H_TL, object_name:AHL_OPERATIONS_H_TL, status:VALID,
-
VIEW: AHL.AHL_OPERATIONS_H_TL#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_OPERATIONS_H_TL#, status:VALID,
-
VIEW: APPS.WSM_COPY_NEXT_OPERATIONS_V
12.1.1
-
VIEW: BOM.BOM_OP_SEQUENCES_INTERFACE#
12.2.2
-
VIEW: AHL.AHL_OPERATIONS_TL#
12.2.2
owner:AHL, object_type:VIEW, object_name:AHL_OPERATIONS_TL#, status:VALID,
-
VIEW: APPS.MSC_FLP_OP_ATP_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_OP_ATP_V, object_name:MSC_FLP_OP_ATP_V, status:VALID,
-
VIEW: APPS.MSC_FLP_OP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MSC.MSC_FLP_OP_V, object_name:MSC_FLP_OP_V, status:VALID,
-
TABLE: AHL.AHL_OPERATIONS_H_TL
12.1.1
owner:AHL, object_type:TABLE, fnd_design_data:AHL.AHL_OPERATIONS_H_TL, object_name:AHL_OPERATIONS_H_TL, status:VALID,
-
VIEW: APPS.WIP_LINE_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_LINE_OPERATIONS_V, object_name:WIP_LINE_OPERATIONS_V, status:VALID,
-
View: WIP_FLOW_ASSEMBLY_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_FLOW_ASSEMBLY_EVENTS_V, status:VALID, product: WIP - Work in Process , description: Flow Workstation base view. , implementation_dba_data: APPS.WIP_FLOW_ASSEMBLY_EVENTS_V ,
-
VIEW: APPS.WIP_LINE_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_LINE_OPERATIONS_V, object_name:WIP_LINE_OPERATIONS_V, status:VALID,
-
View: WIP_FLOW_ASSEMBLY_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_FLOW_ASSEMBLY_EVENTS_V, status:VALID, product: WIP - Work in Process , description: Flow Workstation base view. , implementation_dba_data: APPS.WIP_FLOW_ASSEMBLY_EVENTS_V ,
-
VIEW: APPS.WSM_NEXT_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_NEXT_OPERATIONS_V, object_name:WSM_NEXT_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WIP_FLOW_ASSEMBLY_EVENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_FLOW_ASSEMBLY_EVENTS_V, status:VALID,
-
VIEW: APPS.BOM_COMPONENT_OPERATIONS_V
12.1.1
-
VIEW: APPS.BOM_COMPONENT_OPERATIONS_V
12.2.2
-
VIEW: APPS.WSM_ALL_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_ALL_OPERATIONS_V, object_name:WSM_ALL_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WSM_ALL_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_ALL_OPERATIONS_V, object_name:WSM_ALL_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WIP_FLOW_ASSEMBLY_EVENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_ASSEMBLY_EVENTS_V, object_name:WIP_FLOW_ASSEMBLY_EVENTS_V, status:VALID,
-
VIEW: APPS.WSM_NEXT_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_NEXT_OPERATIONS_V, object_name:WSM_NEXT_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WSM_COPY_ALL_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_COPY_ALL_OPERATIONS_V, object_name:WSM_COPY_ALL_OPERATIONS_V, status:VALID,
-
View: WSM_COPY_NEXT_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_COPY_NEXT_OPERATIONS_V, object_name:WSM_COPY_NEXT_OPERATIONS_V, status:VALID, product: WSM - Shop Floor Management , description: View for getting all valid next operations for a Job based on the network routing based on the copy tables of the job based on the copy tables of the job. , implementation_dba_data: APPS.WSM_COPY_NEXT_OPERATIONS_V ,
-
VIEW: APPS.WSM_COPY_ALL_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_COPY_ALL_OPERATIONS_V, object_name:WSM_COPY_ALL_OPERATIONS_V, status:VALID,
-
View: WSM_COPY_NEXT_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_COPY_NEXT_OPERATIONS_V, object_name:WSM_COPY_NEXT_OPERATIONS_V, status:VALID, product: WSM - Shop Floor Management , description: View for getting all valid next operations for a Job based on the network routing based on the copy tables of the job based on the copy tables of the job. , implementation_dba_data: APPS.WSM_COPY_NEXT_OPERATIONS_V ,
-
VIEW: APPS.FLM_MMM_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FLM.FLM_MMM_OPERATIONS_V, object_name:FLM_MMM_OPERATIONS_V, status:VALID,
-
VIEW: APPS.FLM_MMM_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FLM.FLM_MMM_OPERATIONS_V, object_name:FLM_MMM_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WSM_COPY_NEXT_OPERATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_COPY_NEXT_OPERATIONS_V, object_name:WSM_COPY_NEXT_OPERATIONS_V, status:VALID,
-
VIEW: APPS.WIP_FLOW_ASSEMBLY_EVENTS_V
12.2.2
-
VIEW: APPS.BOM_STANDARD_OPERATIONS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_ALL_V, object_name:BOM_STANDARD_OPERATIONS_ALL_V, status:VALID,
-
VIEW: APPS.WSM_COPY_NEXT_OPERATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WSM.WSM_COPY_NEXT_OPERATIONS_V, object_name:WSM_COPY_NEXT_OPERATIONS_V, status:VALID,
-
VIEW: APPS.BOM_STANDARD_OPERATIONS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_STANDARD_OPERATIONS_ALL_V, object_name:BOM_STANDARD_OPERATIONS_ALL_V, status:VALID,