Search Results work_order_name
Overview
The WIP_EAM_WO_SRV_ASSOC_V view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 consolidates Enterprise Asset Management (EAM) work order information with associated service requests. Owned by the APPS schema, this view joins data from discrete jobs, asset instances, departments, and service association records to present a unified reporting structure for maintenance activities. It is particularly relevant to organizations that use Oracle Enterprise Asset Management within the Work in Process (WIP) module to track work orders linked to service requests.
The view exposes both descriptive and operational attributes of EAM work orders, including status, priority, asset details, durations, and scheduling information. Because it incorporates the PRIORITY column from WIP_DISCRETE_JOBS as PRIORITY_ID, users searching for priority_id will find this view relevant to queries that resolve priority lookups for work orders. The view is primarily used for reporting and integration purposes, enabling maintenance supervisors, planners, and analysts to extract consolidated work order data without constructing complex joins manually.
Underlying Base Objects
The view is defined over a combination of synonyms, views, and base tables within the EBS data model. Documented referenced objects include:
- WIP_DISCRETE_JOBS (synonym) — supplies core work order fields such as status, priority, schedule dates, and firm-planned flag.
- WIP_ENTITIES (synonym) — provides the work order name (
WIP_ENTITY_NAME) and organization linkage. - EAM_WO_SERVICE_ASSOCIATION (synonym) — the association between the EAM work order and its service request, filtered by
ENABLE_FLAG. - EAM_WORK_ORDER_DETAILS_V (view) — supplies work order status and user-defined status identifiers.
- BOM_DEPARTMENTS (synonym) — resolves the department code for the owning department.
- MTL_SYSTEM_ITEMS_B_KFV (view) — provides concatenated segment values for asset group, activity, and inventory item identification.
- MTL_PARAMETERS (synonym) — links maintenance organization and organization code.
- MFG_LOOKUPS (view) — resolves lookup meanings for priority (
PRIORITY) and asset type (ASSET_TYPE). - CSI_ITEM_INSTANCES (synonym) — supplies asset instance numbers.
- FND_MESSAGE (package) — referenced indirectly for message handling.
The joins relate work orders to service associations, asset instances, departments, and lookup values, producing a denormalized result set suited for reporting.
Key Columns
- WORK_ORDER_NAME — EAM work order identifier from
WIP_ENTITIES. - STATUS — Work order status derived from
EAM_WORK_ORDER_DETAILS_V. - DEPARTMENT_CODE — Owning department code from
BOM_DEPARTMENTS. - ASSET_GROUP / ASSET_NUMBER / ACTIVITY / ASSET_TYPE — Asset identification and classification fields.
- PRIORITY — Lookup meaning resolved via
MFG_LOOKUPSfor the work order priority. - PRIORITY_ID — The raw priority identifier from
WIP_DISCRETE_JOBS.PRIORITY, matching the search term. - ORGANIZATION_CODE — Maintenance organization code from
MTL_PARAMETERS. - FIRM_FLAG — Indicates whether the work order is firm (Y/N), decoded from
FIRM_PLANNED_FLAG. - SERVICE_REQUEST_ID — Identifier of the associated service request.
- REQUESTED_START_DATE, DUE_DATE, SCHEDULED_START_DATE, SCHEDULED_COMPLETION_DATE — Scheduling columns.
- DURATION — Computed hours between scheduled start and completion.
- ACTUAL_START_DATE, ACTUAL_END_DATE, DATE_COMPLETED, DATE_CLOSED, DATE_RELEASED — Execution timeline columns.
- WIP_ENTITY_ID, ORGANIZATION_ID, INVENTORY_ITEM_ID, ACTIVITY_ID, STATUS_ID, DEPARTMENT_ID — Key identifiers for integration and drill-down.
Common Use Cases and Queries
Typical use cases include maintenance reporting of work orders by priority, service request reconciliation, and asset maintenance history extraction. A query driven by the priority_id search term might appear as follows:
SELECT WORK_ORDER_NAME, STATUS, PRIORITY, PRIORITY_ID, ASSET_NUMBER FROM APPS.WIP_EAM_WO_SRV_ASSOC_V WHERE PRIORITY_ID = :priority_id;
Analysts also use the view to summarize open service-associated work orders by department or organization, or to calculate average durations for scheduled maintenance. Because the view filters EAM_WO_SERVICE_ASSOCIATION to enabled associations, results reflect only active service linkages, making it suitable for operational dashboards and integration extracts.
-
View: WIP_EAM_WO_SRV_ASSOC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WO_SRV_ASSOC_V, object_name:WIP_EAM_WO_SRV_ASSOC_V, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIP_EAM_WO_SRV_ASSOC_V ,
-
View: WIP_EAM_WO_SRV_ASSOC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WO_SRV_ASSOC_V, object_name:WIP_EAM_WO_SRV_ASSOC_V, status:VALID, product: WIP - Work in Process , implementation_dba_data: APPS.WIP_EAM_WO_SRV_ASSOC_V ,
-
View: WIP_ICX_OSP_WORKBENCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_OSP_WORKBENCH_V, object_name:WIP_ICX_OSP_WORKBENCH_V, status:VALID, product: WIP - Work in Process , description: WIP outside processing purchase orders information , implementation_dba_data: APPS.WIP_ICX_OSP_WORKBENCH_V ,
-
View: WIP_ICX_OSP_WORKBENCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_ICX_OSP_WORKBENCH_V, object_name:WIP_ICX_OSP_WORKBENCH_V, status:VALID, product: WIP - Work in Process , description: WIP outside processing purchase orders information , implementation_dba_data: APPS.WIP_ICX_OSP_WORKBENCH_V ,