Search Results work_order_status
Overview
The view APPS.EAM_WO_STATUSES_VL exposes the complete set of work order statuses defined within Oracle Enterprise Asset Management (EAM). It is a "VL" (view with translation/language) object, meaning it joins the base status definitions to their translated descriptions so that each session sees status text in its own language. The view is owned by the APPS schema and is available in both Oracle EBS 12.1.1 and 12.2.2.
In practice this view is the primary reference for reporting and integration logic surrounding the "work order status" concept. Rather than reading the underlying pair of tables plus the lookup view directly, developers and report authors query this single view to obtain a clean, language-aware list of statuses, their internal coding values, and their translated labels. It supports validation, lookup display, LOV (list of values) population, and status-driven reporting on EAM work orders.
Underlying Base Objects
Per the ETRM metadata, the view is defined over three referenced objects:
EAM_WO_STATUSES_B(synonym) — the base table holding status identifiers, system status codes, seeded/enabled flags, and audit columns.EAM_WO_STATUSES_TL(synonym) — the translation table holding the user-defined status descriptions per language.MFG_LOOKUPS(view) — the manufacturing lookup view providing the seeded system status meanings via theWIP_JOB_STATUSlookup type.
The joins are driven by STATUS_ID between the _B base table and its _TL translation, and by SYSTEM_STATUS equated to MFG_LOOKUPS.LOOKUP_CODE. Notably, the join to EAM_WO_STATUSES_TL is an outer join ((+)) restricted to USERENV('LANG'), and the lookup is filtered to LOOKUP_TYPE = 'WIP_JOB_STATUS' with ENABLED_FLAG = 'Y'.
Key Columns
- ROW_ID — the row identifier derived from the base table ROWID.
- STATUS_ID — unique identifier for the work order status; the primary join key.
- SYSTEM_STATUS — the internal system status code that maps to the
WIP_JOB_STATUSlookup. - WORK_ORDER_STATUS — the display status. Derived via
DECODE: for seeded statuses, it uses the translated user-defined status if present, otherwise the lookup meaning; for non-seeded rows, it uses the user-defined text. - SYSTEM_STATUS_DESC — the lookup meaning for the system status.
- SEEDED_FLAG — indicates whether the status is Oracle-seeded ('Y') or user-defined.
- ENABLED_FLAG — indicates whether the status is active.
- Audit columns —
LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN,CREATED_BY, andCREATION_DATE.
Common Use Cases and Queries
Typical uses include populating status list-of-values, driving work order status reports, and validating status values during interface loads. A simple listing of enabled statuses:
SELECT status_id, work_order_status, system_status, seeded_flag
FROM apps.eam_wo_statuses_vl
WHERE enabled_flag = 'Y';
To identify seeded statuses only, or to map display text back to its system code:
SELECT work_order_status, system_status_desc
FROM apps.eam_wo_statuses_vl
WHERE seeded_flag = 'Y'
AND enabled_flag = 'Y';
Because the view is language-aware via USERENV('LANG'), results automatically reflect the session language, making it suitable for multilingual reporting and integration without additional joins.
-
VIEW: APPS.EAM_WO_STATUSES_VL
12.1.1
-
VIEW: APPS.BIV_MAINT_WO_STATUS_LVL_V
12.1.1
-
View: EAM_WO_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WO_STATUSES_VL, object_name:EAM_WO_STATUSES_VL, status:VALID, product: EAM - Enterprise Asset Management , description: View based on eam_wo_statuses for displaying user defined statuses and their mapping with corresponding wip status , implementation_dba_data: APPS.EAM_WO_STATUSES_VL ,
-
VIEW: APPS.EAM_WO_STATUSES_VL
12.2.2
-
VIEW: APPS.EAM_WO_STATUSES_VL
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_WO_STATUSES_VL, status:VALID,
-
VIEW: APPS.EAM_SAF_WO_CONCAT_STATUSES_VL
12.2.2
-
VIEW: APPS.WIP_OPSM_WORK_ORDER_EXPORT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_OPSM_WORK_ORDER_EXPORT_V, object_name:WIP_OPSM_WORK_ORDER_EXPORT_V, status:VALID,
-
VIEW: APPS.EAM_WO_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WO_STATUSES_VL, object_name:EAM_WO_STATUSES_VL, status:VALID,
-
VIEW: APPS.EAM_WORK_ORDER_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_WORK_ORDER_DETAILS_V, status:VALID,
-
VIEW: APPS.EAM_WORK_ORDER_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDER_DETAILS_V, object_name:EAM_WORK_ORDER_DETAILS_V, status:VALID,
-
View: EAM_SAF_WO_CONCAT_STATUSES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_SAF_WO_CONCAT_STATUSES_VL, object_name:EAM_SAF_WO_CONCAT_STATUSES_VL, status:VALID, product: EAM - Enterprise Asset Management , description: This view unions the Permit statuses, work clearance statuses, isolation statuses and Work Order statuses , implementation_dba_data: APPS.EAM_SAF_WO_CONCAT_STATUSES_VL ,
-
View: EAM_WORK_ORDER_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ORDER_DETAILS_V, object_name:EAM_WORK_ORDER_DETAILS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View based on the table eam_work_order_details to display user defined statuses based on pending flag and also displays material shortage description , implementation_dba_data: APPS.EAM_WORK_ORDER_DETAILS_V ,
-
VIEW: APPS.EAM_OUTSTANDING_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_OUTSTANDING_WORK_ORDERS_V, object_name:EAM_OUTSTANDING_WORK_ORDERS_V, status:VALID,
-
VIEW: APPS.EAM_OUTSTANDING_WORK_ORDERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_OUTSTANDING_WORK_ORDERS_V, object_name:EAM_OUTSTANDING_WORK_ORDERS_V, status:VALID,
-
View: EAM_OUTSTANDING_WORK_ORDERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_OUTSTANDING_WORK_ORDERS_V, object_name:EAM_OUTSTANDING_WORK_ORDERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View shows work orders forecasted by Preventive Maintenance scheduling. , implementation_dba_data: APPS.EAM_OUTSTANDING_WORK_ORDERS_V ,
-
VIEW: APPS.EAM_PM_SCHEDULINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_PM_SCHEDULINGS_V, object_name:EAM_PM_SCHEDULINGS_V, status:VALID,
-
VIEW: APPS.EAM_PM_SCHEDULINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_PM_SCHEDULINGS_V, object_name:EAM_PM_SCHEDULINGS_V, status:VALID,
-
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_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.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,
-
View: EAM_PM_SCHEDULINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_PM_SCHEDULINGS_V, object_name:EAM_PM_SCHEDULINGS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View is used to access individual Preventive Maintenance schedule. , implementation_dba_data: APPS.EAM_PM_SCHEDULINGS_V ,
-
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: 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 ,
-
APPS.ISC_MAINT_REQ_CMPL_RPT_PKG SQL Statements
12.1.1
-
APPS.EAM_WO_NETWORK_VALIDATE_PVT SQL Statements
12.1.1
-
APPS.EAM_WO_NETWORK_VALIDATE_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.ISC_MAINT_REQ_CMPL_RPT_PKG
12.1.1
-
PACKAGE: APPS.QA_SS_CONST
12.1.1
-
PACKAGE: APPS.QA_SS_CONST
12.2.2
-
APPS.EAM_WO_NETWORK_VALIDATE_PVT dependencies on EAM_WO_STATUSES_V
12.1.1
-
APPS.EAM_WO_NETWORK_VALIDATE_PVT dependencies on EAM_WO_STATUSES_V
12.2.2
-
APPS.EAM_WO_NETWORK_VALIDATE_PVT dependencies on EAM_WORK_ORDER_DETAILS
12.2.2
-
APPS.EAM_WO_NETWORK_VALIDATE_PVT dependencies on EAM_WORK_ORDER_DETAILS
12.1.1
-
PACKAGE BODY: APPS.EAM_WO_NETWORK_VALIDATE_PVT
12.1.1
-
PACKAGE BODY: APPS.EAM_WO_NETWORK_VALIDATE_PVT
12.2.2
-
APPS.ISC_MAINT_REQ_CMPL_RPT_PKG dependencies on ISC_MAINT_RPT_UTIL_PKG
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