Search Results status_type_meaning
Overview
APPS.MTL_EAM_JOBS_RESOURCES_V is a reporting and integration view in Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 that exposes Enterprise Asset Management (EAM) work order job operations together with their assigned resources. The view presents discrete job header information from WIP_DISCRETE_JOBS and WIP_ENTITIES alongside operation-level resource assignments from WIP_OPERATION_RESOURCES and WIP_OPERATIONS, joining lookup tables to translate raw coded values into user-readable meanings. Its principal role is to give EAM and maintenance reporting a single denormalized source that resolves the resource-to-job relationship without requiring report authors to reconstruct the WIP entity, operation, and resource join paths themselves.
A defining characteristic of the view is its use of a UNION: the primary branch returns current discrete jobs whose scheduled window includes the current system date, while a second branch returns the same column shape from GMP_EAM_JOBS_RESOURCES_V. This design allows consumers to query EAM jobs and their resources through a consistent column list, regardless of which underlying process maintenance regime produced the record. The user search term status_type_meaning refers directly to one of the decoded columns the view provides, making this object a common entry point for status-driven reporting.
Underlying Base Objects
The documented referenced objects are GMP_EAM_JOBS_RESOURCES_V (VIEW), MFG_LOOKUPS (VIEW), WIP_DISCRETE_JOBS (SYNONYM), WIP_ENTITIES (SYNONYM), WIP_OPERATIONS (SYNONYM), and WIP_OPERATION_RESOURCES (SYNONYM). The WIP objects resolve to the core Work in Process tables that store job headers, entities, routing operations, and operation resource assignments; MFG_LOOKUPS supplies the meaning values used to decode WIP_JOB_STATUS and WIP_ENTITY lookup codes.
The join path enforces consistency across organizations and entities: WIP_OPERATION_RESOURCES is matched to WIP_OPERATIONS on organization, WIP entity, and operation sequence number; WIP_OPERATIONS is matched to WIP_ENTITIES and WIP_DISCRETE_JOBS on the WIP entity; and organization identifiers are carried through to prevent cross-organization mixing. Two independent lookup joins decode the status type and the entity/job type. The predicate restricting WIP_DISCRETE_JOBS.STATUS_TYPE to 1, 3, or 6 limits the primary branch to selected job statuses, and the date predicate SYSDATE BETWEEN scheduled_start_date AND scheduled_completion_date ensures only jobs within their active scheduled window are returned.
Key Columns
- ROW_ID — the WIP_DISCRETE_JOBS row identifier from the primary branch.
- RESOURCE_ID — the resource assigned to the operation.
- DEPARTMENT_ID — derived with NVL from the resource's department, falling back to the operation's department.
- WIP_ENTITY_ID, WIP_ENTITY_NAME, DESCRIPTION — the job/entity identity and description.
- SCHEDULED_START_DATE, SCHEDULED_COMPLETION_DATE — the job window used by the SYSDATE filter.
- STATUS_TYPE — the coded WIP job status.
- STATUS_TYPE_MEANING — the decoded meaning of STATUS_TYPE from MFG_LOOKUPS (WIP_JOB_STATUS).
- JOB_TYPE, JOB_TYPE_MEANING — the job classification and its decoded meaning.
- CLASS_CODE, REBUILD_ITEM_ID — EAM job classification and rebuild item reference.
- ENTITY_TYPE, ENTITY_TYPE_CODE — the entity type value and its decoded meaning from MFG_LOOKUPS (WIP_ENTITY).
Common Use Cases and Queries
Typical uses include listing active EAM jobs by status meaning, reporting resource loading per department, and driving integrations that need decoded rather than coded values.
SELECT wip_entity_name,
status_type,
status_type_meaning,
resource_id,
department_id,
scheduled_start_date,
scheduled_completion_date
FROM apps.mtl_eam_jobs_resources_v
WHERE status_type_meaning = 'Released'
ORDER BY scheduled_start_date;
A second common pattern aggregates resource assignments per job to support capacity and scheduling analysis:
SELECT wip_entity_name,
status_type_meaning,
COUNT(DISTINCT resource_id) resource_count
FROM apps.mtl_eam_jobs_resources_v
GROUP BY wip_entity_name, status_type_meaning;
Because the view is restricted to jobs whose scheduled window contains the current date and to selected status types in its primary branch, queries seeking historical or completed jobs should not rely on this object alone; the GMP_EAM_JOBS_RESOURCES_V union branch covers the maintenance-specific records excluded by those predicates.
-
VIEW: APPS.MTL_EAM_JOBS_RESOURCES_V
12.2.2
-
VIEW: APPS.MTL_EAM_JOBS_RESOURCES_V
12.1.1
-
View: MTL_EAM_JOBS_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_JOBS_RESOURCES_V, object_name:MTL_EAM_JOBS_RESOURCES_V, status:VALID, product: INV - Inventory , description: Job resources for EAM (Enterprise Asset management) , implementation_dba_data: APPS.MTL_EAM_JOBS_RESOURCES_V ,
-
View: MTL_EAM_JOBS_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_JOBS_RESOURCES_V, object_name:MTL_EAM_JOBS_RESOURCES_V, status:VALID, product: INV - Inventory , description: Job resources for EAM (Enterprise Asset management) , implementation_dba_data: APPS.MTL_EAM_JOBS_RESOURCES_V ,
-
View: PER_COBRA_COVERAGE_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_COVERAGE_STATUSES_V, object_name:PER_COBRA_COVERAGE_STATUSES_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_COBRA_COVERAGE_STATUSES_V ,
-
View: PER_COBRA_COVERAGE_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_COVERAGE_STATUSES_V, object_name:PER_COBRA_COVERAGE_STATUSES_V, status:VALID, product: PER - Human Resources , description: Used to support user interface , implementation_dba_data: APPS.PER_COBRA_COVERAGE_STATUSES_V ,
-
VIEW: APPS.OKI_STATUS_CHANGE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OKI_STATUS_CHANGE_V, status:VALID,
-
VIEW: APPS.GMP_EAM_JOBS_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_JOBS_RESOURCES_V, object_name:GMP_EAM_JOBS_RESOURCES_V, status:VALID,
-
VIEW: APPS.OKI_STATUS_CHANGE_V
12.1.1
-
VIEW: APPS.GMP_EAM_JOBS_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_JOBS_RESOURCES_V, object_name:GMP_EAM_JOBS_RESOURCES_V, status:VALID,
-
VIEW: APPS.MTL_EAM_JOBS_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_JOBS_RESOURCES_V, object_name:MTL_EAM_JOBS_RESOURCES_V, status:VALID,
-
VIEW: APPS.MTL_EAM_JOBS_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_JOBS_RESOURCES_V, object_name:MTL_EAM_JOBS_RESOURCES_V, status:VALID,
-
View: OKI_SALES_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_HEADERS_V, object_name:OKI_SALES_K_HEADERS_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about contracts with the sell intent. , implementation_dba_data: APPS.OKI_SALES_K_HEADERS_V ,
-
VIEW: APPS.PER_COBRA_COVERAGE_STATUSES_V
12.2.2
-
VIEW: APPS.PER_COBRA_COVERAGE_STATUSES_V
12.1.1
-
View: OKI_SALES_K_NEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_NEW_V, object_name:OKI_SALES_K_NEW_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about new contracts, those that are not renewals of previous contracts. , implementation_dba_data: APPS.OKI_SALES_K_NEW_V ,
-
View: OKI_SALES_K_RENEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_RENEW_V, object_name:OKI_SALES_K_RENEW_V, status:VALID, product: OKI - Contracts Intelligence , description: Information about renewal contracts. , implementation_dba_data: APPS.OKI_SALES_K_RENEW_V ,
-
View: OKI_SALES_K_HEADERS_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about contracts with the sell intent. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.PER_COBRA_COVERAGE_STATUSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_COVERAGE_STATUSES_V, object_name:PER_COBRA_COVERAGE_STATUSES_V, status:VALID,
-
VIEW: APPS.PER_COBRA_COVERAGE_STATUSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_COBRA_COVERAGE_STATUSES_V, object_name:PER_COBRA_COVERAGE_STATUSES_V, status:VALID,
-
View: OKI_SALES_K_RENEW_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about renewal contracts. , implementation_dba_data: Not implemented in this database ,
-
View: GMP_EAM_JOBS_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_JOBS_RESOURCES_V, object_name:GMP_EAM_JOBS_RESOURCES_V, status:VALID, product: GMP - Process Manufacturing Process Planning , description: View for eAM jobs on OPM resources , implementation_dba_data: APPS.GMP_EAM_JOBS_RESOURCES_V ,
-
View: OKI_SALES_K_NEW_V
12.2.2
product: OKI - Contracts Intelligence (Obsolete) , description: Information about new contracts, those that are not renewals of previous contracts. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.OKI_SALES_K_RENEW_V
12.1.1
-
View: WIP_JOB_SCHEDULE_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_JOB_SCHEDULE_INTERFACE , implementation_dba_data: APPS.WIP_JOB_SCHEDULE_INTERFACE_V ,
-
View: WIP_JOB_SCHEDULE_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID, product: WIP - Work in Process , description: Foreign-key data for WIP_JOB_SCHEDULE_INTERFACE , implementation_dba_data: APPS.WIP_JOB_SCHEDULE_INTERFACE_V ,
-
View: GMP_EAM_JOBS_RESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_EAM_JOBS_RESOURCES_V, object_name:GMP_EAM_JOBS_RESOURCES_V, status:VALID, product: GMP - Process Manufacturing Process Planning , implementation_dba_data: APPS.GMP_EAM_JOBS_RESOURCES_V ,
-
VIEW: APPS.OKI_SALES_K_HEADERS_V
12.1.1
-
VIEW: APPS.OKI_SALES_K_NEW_V
12.1.1
-
VIEW: APPS.WIP_JOB_SCHEDULE_INTERFACE_V
12.2.2
-
VIEW: APPS.WIP_JOB_SCHEDULE_INTERFACE_V
12.1.1
-
VIEW: APPS.OKI_SOLD_ITEM_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SOLD_ITEM_LINES_V, object_name:OKI_SOLD_ITEM_LINES_V, status:VALID,
-
View: 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, 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.WIP_JOB_SCHEDULE_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID,
-
VIEW: APPS.WIP_JOB_SCHEDULE_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_JOB_SCHEDULE_INTERFACE_V, object_name:WIP_JOB_SCHEDULE_INTERFACE_V, status:VALID,
-
VIEW: APPS.OKI_COV_PROD_LINES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_COV_PROD_LINES_V, object_name:OKI_COV_PROD_LINES_V, status:VALID,
-
VIEW: APPS.OKI_SALES_K_RENEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_RENEW_V, object_name:OKI_SALES_K_RENEW_V, status:VALID,
-
VIEW: APPS.OKI_SALES_K_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_HEADERS_V, object_name:OKI_SALES_K_HEADERS_V, status:VALID,
-
VIEW: APPS.OKI_SALES_K_NEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OKI.OKI_SALES_K_NEW_V, object_name:OKI_SALES_K_NEW_V, status:VALID,
-
eTRM - OKI Tables and Views
12.1.1
description: Holds information about the value of renewed contracts on a historical basis. ,
-
eTRM - GMP Tables and Views
12.2.2
description: * NOT USED * ,
-
eTRM - GMP Tables and Views
12.1.1
description: * NOT USED * ,
-
eTRM - WIP Tables and Views
12.2.2
-
eTRM - WIP Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - PER Tables and Views
12.2.2
description: Table to store NQF Training info for a person ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,