Search Results activity_cause_disp
Overview
APPS.WIP_EAM_WORK_ORDERS_V is a reporting and integration view within the Work in Process (WIP) product of Oracle E-Business Suite, documented for releases 12.1.1 and 12.2.2. It exposes Maintenance Work Orders created and managed through Oracle Enterprise Asset Management (EAM), presenting a consolidated, denormalized projection of work order header data. Rather than requiring report authors and integration developers to join the discrete job table, the work order details view, asset instance data, lookup tables, and project accounting packages manually, the view performs this assembly in a single queryable object with STATUS = VALID in the APPS schema.
Its practical role is to serve as the primary read-only interface for EAM maintenance work order inquiries, custom concurrent programs, Oracle Reports and BI Publisher data models, and outbound interface extracts. Because it is a view rather than a table, all access is governed by the standard EBS security model applied to the underlying objects, and no DML should be issued against it.
Underlying Base Objects
The view draws from a documented set of base objects spanning several EAM and manufacturing schemas:
- WIP_DISCRETE_JOBS and WIP_ENTITIES — synonym access providing the core work order identifier, work order name, entity type, organization, and scheduling attributes.
- EAM_WORK_ORDER_DETAILS_V — the view supplying EAM-specific attributes such as asset group, activity type, priority, shutdown and tagout flags, and maintenance planning indicators.
- CSI_ITEM_INSTANCES — source of asset instance number and instance description for serialized asset work orders.
- BOM_DEPARTMENTS — resolving the owning department code.
- MFG_LOOKUPS — referenced multiple times to translate stored lookup codes into display meanings for work order type, activity type, activity cause, priority, and shutdown type.
- WIP_SCHEDULE_GROUPS — providing the schedule group name.
- MTL_PARAMETERS — organization-level parameters.
- EAM_COMMON_UTILITIES_PVT and PJM_PROJECT — PL/SQL packages invoked within the view definition to derive parent asset information and to convert internal project and task identifiers into their display numbers and names.
Key Columns
- WIP_ENTITY_ID / WIP_ENTITY_NAME — the work order primary key and descriptive name.
- ORGANIZATION_ID — the inventory organization owning the work order, essential for multi-org filtering.
- ASSET_GROUP_ID / ASSET_NUMBER / INSTANCE_DESCRIPTION — the maintained asset, resolved through a nested
NVL/DECODEexpression that falls back to the parent work order's asset viaGET_PARENT_ASSET. - WORK_ORDER_TYPE and WORK_ORDER_TYPE_DISP — the stored code and its lookup meaning.
- STATUS_TYPE, CLASS_CODE, ENTITY_TYPE — work order classification and lifecycle state.
- ACTIVITY_TYPE_DISP, ACTIVITY_CAUSE_DISP, PRIORITY_DISP — decoded maintenance context values.
- SCHEDULED_START_DATE, SCHEDULED_COMPLETION_DATE, DATE_RELEASED, DATE_COMPLETED, DATE_CLOSED, REQUESTED_START_DATE, DUE_DATE — the scheduling and completion timeline.
- PROJECT_NUMBER, PROJECT_NAME, TASK_NUMBER, TASK_NAME — project and task references resolved through
PJM_PROJECTfunctions. - PARENT_WIP_ENTITY_ID — linkage to a parent rebuild or maintenance work order.
- Accounting columns including MATERIAL_ACCOUNT, RESOURCE_ACCOUNT, OVERHEAD_ACCOUNT and the associated variance accounts.
Common Use Cases and Queries
Typical scenarios include open work order listings, asset maintenance history, overdue work order exception reports, and project-charged maintenance extracts.
- Listing open maintenance work orders for an organization.
- Reporting on work orders by asset instance and activity type.
- Identifying work orders past their due date.
SELECT wip_entity_name, asset_number, work_order_type_disp,
priority_disp, scheduled_start_date, due_date
FROM apps.wip_eam_work_orders_v
WHERE organization_id = :p_org_id
AND status_type IN ('RELEASED', 'UNRELEASED')
ORDER BY due_date;
SELECT wip_entity_name, asset_number, activity_type_disp,
project_number, task_number
FROM apps.wip_eam_work_orders_v
WHERE due_date < SYSDATE
AND date_completed IS NULL
ORDER BY due_date;
Because project and asset values are resolved through packaged function calls, queries should always constrain on indexed identifiers such as ORGANIZATION_ID or WIP_ENTITY_ID where possible to avoid unnecessary function execution across large result sets.
-
View: WIP_EAM_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDERS_V, object_name:WIP_EAM_WORK_ORDERS_V, status:VALID, product: WIP - Work in Process , description: Maintenance Work Orders , implementation_dba_data: APPS.WIP_EAM_WORK_ORDERS_V ,
-
View: WIP_EAM_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDERS_V, object_name:WIP_EAM_WORK_ORDERS_V, status:VALID, product: WIP - Work in Process , description: Maintenance Work Orders , implementation_dba_data: APPS.WIP_EAM_WORK_ORDERS_V ,
-
VIEW: APPS.WIP_EAM_WORK_ORDERS_V
12.1.1
-
VIEW: APPS.WIP_EAM_WORK_ORDERS_V
12.2.2
-
View: EAM_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDERS_V, object_name:EAM_WORK_ORDERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows all maintenance work orders along with the work requests/service requests associated to them. , implementation_dba_data: APPS.EAM_WORK_ORDERS_V ,
-
View: EAM_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDERS_V, object_name:EAM_WORK_ORDERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows all maintenance work orders alongwith the service requests associated to them , implementation_dba_data: APPS.EAM_WORK_ORDERS_V ,
-
View: EAM_CFR_WORK_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_CFR_WORK_ORDER_V, object_name:EAM_CFR_WORK_ORDER_V, status:VALID, product: EAM - Enterprise Asset Management , description: This view displays details of all maintenance work orders.This view is used for ERES at the time of work order completion in the XGM. , implementation_dba_data: APPS.EAM_CFR_WORK_ORDER_V ,
-
VIEW: APPS.EAM_WORK_ORDERS_V
12.2.2
-
VIEW: APPS.EAM_WORK_ORDERS_V
12.1.1
-
VIEW: APPS.EAM_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDERS_V, object_name:EAM_WORK_ORDERS_V, status:VALID,
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_CFR_WORK_ORDER_V, object_name:EAM_CFR_WORK_ORDER_V, status:VALID,
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.1.1
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_CFR_WORK_ORDER_V, status:VALID,
-
VIEW: APPS.EAM_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDERS_V, object_name:EAM_WORK_ORDERS_V, status:VALID,
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.2.2
-
VIEW: APPS.WIP_EAM_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDERS_V, object_name:WIP_EAM_WORK_ORDERS_V, status:VALID,
-
VIEW: APPS.WIP_EAM_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_WORK_ORDERS_V, object_name:WIP_EAM_WORK_ORDERS_V, status:VALID,
-
APPS.CST_PENDINGTXNSREPORT_PVT SQL Statements
12.1.1
-
APPS.CST_PENDINGTXNSREPORT_PVT SQL Statements
12.2.2
-
APPS.CST_PENDINGTXNSREPORT_PVT dependencies on MFG_LOOKUPS
12.1.1
-
APPS.CST_PENDINGTXNSREPORT_PVT dependencies on MFG_LOOKUPS
12.2.2
-
PACKAGE BODY: APPS.CST_PENDINGTXNSREPORT_PVT
12.2.2
-
PACKAGE BODY: APPS.CST_PENDINGTXNSREPORT_PVT
12.1.1
-
eTRM - EAM Tables and Views
12.2.2
description: Table for storing workflow item type and keys corresponding to a work order ,
-
eTRM - EAM Tables and Views
12.1.1
description: Table for storing workflow item type and keys corresponding to a work order ,
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - WIP Tables and Views
12.1.1