Search Results line_description
Overview
WIP_LINE_OPERATIONS_V is an APPS-owned database view in the Oracle E-Business Suite Work in Process (WIP) module, documented as the "Flow Workstation base view." It presents a consolidated, denormalized picture of the standard operations that are defined against production lines used by the Flow Manufacturing workstation. Rather than requiring a report or integration to join line definitions, organization definitions, and standard operation records independently, the view resolves those relationships in a single query, returning one row per line-operation combination.
The view is particularly significant because of its NODE_LABEL column, which is the attribute most frequently associated with Flow Workstation configuration and search. NODE_LABEL is a synthetic key produced by concatenating the WIP line code and the standard operation code, separated by a colon (for example, LINE1:OP10). This composite identifier allows Flow Workstation setups, routing displays, and integration payloads to reference a line-operation node unambiguously using a single string, without carrying separate line and operation keys.
Because it is a view and not a table, WIP_LINE_OPERATIONS_V is read-only. It is intended for reporting, inquiry, and integration extraction, and it applies the business rule that only standard operations of type "LINE OP" (OPERATION_TYPE = 3) are included. Assignments, routing updates, and other DML must still be performed against the underlying base objects.
Underlying Base Objects
The view is defined over three principal sources joined on organization and line identity:
- BOM_STANDARD_OPERATIONS (referenced as a synonym in APPS) — supplies the operation-level attributes, including OPERATION_CODE, STANDARD_OPERATION_ID, OPERATION_DESCRIPTION, MINIMUM_TRANSFER_QUANTITY, and OPERATION_TYPE. The join restricts rows to OPERATION_TYPE = 3, the "LINE OP" operation type.
- WIP_LINES (referenced as a synonym in APPS) — supplies the line definition, including LINE_ID, LINE_CODE, LINE_DESCRIPTION, and ORGANIZATION_ID.
- ORG_ORGANIZATION_DEFINITIONS (a view) — supplies ORGANIZATION_CODE and ORGANIZATION_ID, giving the human-readable inventory organization context.
The documented join conditions are OOD.ORGANIZATION_ID = WL.ORGANIZATION_ID, BSO.LINE_ID = WL.LINE_ID, and BSO.ORGANIZATION_ID = WL.ORGANIZATION_ID, ensuring that operations are matched to lines within the same organization. The referenced objects HR_GENERAL and HR_SECURITY are supplied by the EBS security framework and support organization-level access control (MOAC) rather than contributing business data to the projection itself.
Key Columns
- NODE_LABEL — Composite identifier formed as LINE_CODE || ':' || OPERATION_CODE. This is the primary search and integration key for the view.
- ORGANIZATION_CODE / ORGANIZATION_ID — The inventory organization supplying the line and operation; used for MOAC filtering and cross-organization reporting.
- LINE_CODE / LINE_ID — The Flow line identifier and its surrogate primary key.
- OPERATION_CODE / STANDARD_OPERATION_ID — The operation code and its surrogate key from BOM_STANDARD_OPERATIONS.
- MINIMUM_TRANSFER_QUANTITY — The minimum transfer quantity defined for the operation, used in line balancing and flow scheduling.
- OPERATION_DESCRIPTION — Descriptive text for the standard operation.
- LINE_DESCRIPTION — Descriptive text for the line (aliased from WIP_LINES.DESCRIPTION).
Common Use Cases and Queries
Typical uses include Flow Workstation configuration listings, validation of line-operation assignments during implementation, and integration extracts that publish line-operation nodes to external scheduling or MES systems.
Retrieve all line-operation nodes for an organization:
SELECT node_label,
line_code,
operation_code,
operation_description,
minimum_transfer_quantity
FROM apps.wip_line_operations_v
WHERE organization_code = :p_org_code
ORDER BY line_code, operation_code;
Locate a specific node by its NODE_LABEL value:
SELECT node_label,
line_description,
operation_description
FROM apps.wip_line_operations_v
WHERE node_label = 'LINE1:OP10';
List operations for a given line:
SELECT operation_code,
operation_description,
minimum_transfer_quantity
FROM apps.wip_line_operations_v
WHERE line_code = :p_line_code
AND organization_id = :p_org_id;
Because organization security is enforced through the HR security packages, queries executed by a responsibility limited to specific organizations will return only those organizations that the user is authorized to access. This makes the view suitable for direct use in concurrent programs, BI Publisher data models, and OAF-based inquiry pages without additional filtering logic.
-
View: 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, product: WIP - Work in Process , description: Flow Workstation base view , implementation_dba_data: APPS.WIP_LINE_OPERATIONS_V ,
-
View: 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, product: WIP - Work in Process , description: Flow Workstation base view , implementation_dba_data: APPS.WIP_LINE_OPERATIONS_V ,
-
View: WIP_FLOW_OPEN_ALLOCATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_OPEN_ALLOCATIONS_V, object_name:WIP_FLOW_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for flow schedules , implementation_dba_data: APPS.WIP_FLOW_OPEN_ALLOCATIONS_V ,
-
View: WIP_FLOW_OPEN_ALLOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_FLOW_OPEN_ALLOCATIONS_V, object_name:WIP_FLOW_OPEN_ALLOCATIONS_V, status:VALID, product: WIP - Work in Process , description: Open allocations for flow schedules , implementation_dba_data: APPS.WIP_FLOW_OPEN_ALLOCATIONS_V ,
-
View: WIP_REPETITIVE_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REPETITIVE_ITEMS_V, object_name:WIP_REPETITIVE_ITEMS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_REPETITIVE_ITEMS , implementation_dba_data: APPS.WIP_REPETITIVE_ITEMS_V ,
-
View: WIP_REPETITIVE_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REPETITIVE_ITEMS_V, object_name:WIP_REPETITIVE_ITEMS_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_REPETITIVE_ITEMS , implementation_dba_data: APPS.WIP_REPETITIVE_ITEMS_V ,
-
View: WIP_REPETITIVE_SCHEDULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REPETITIVE_SCHEDULES_V, object_name:WIP_REPETITIVE_SCHEDULES_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_REPETITIVE_SCHEDULES , implementation_dba_data: APPS.WIP_REPETITIVE_SCHEDULES_V ,
-
View: WIP_REPETITIVE_SCHEDULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_REPETITIVE_SCHEDULES_V, object_name:WIP_REPETITIVE_SCHEDULES_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_REPETITIVE_SCHEDULES , implementation_dba_data: APPS.WIP_REPETITIVE_SCHEDULES_V ,