Search Results rebuild_item_id
Overview
APPS.WIP_EAM_WO_SRV_ASSOC_V is a reporting view in Oracle E-Business Suite (12.1.1 and 12.2.2) that consolidates Enterprise Asset Management (EAM) work order information with the service requests associated with those work orders. It joins the work order definition in WIP_DISCRETE_JOBS and WIP_ENTITIES to the maintenance asset, activity, department, priority, and instance data, and it links each work order to an external service request through EAM_WO_SERVICE_ASSOCIATION. The view is commonly used in maintenance dashboards, work order status reports, and integrations that require the relationship between a work order and its originating service request.
The view is read-only and is not a substitute for the base maintenance tables. It is intended for query, reporting, and interface extraction, not for transactional inserts or updates.
Underlying Base Objects
The view is defined over the following documented base objects:
- WIP_DISCRETE_JOBS — the core work order record, supplying scheduling, status, priority, asset, and completion data.
- WIP_ENTITIES — provides the work order name and organization context.
- EAM_WO_SERVICE_ASSOCIATION — the link table between the work order and its external service request; only rows with a null or 'Y' enable_flag are included.
- EAM_WORK_ORDER_DETAILS_V — supplies the user-defined work order status and status identifier.
- MTL_SYSTEM_ITEMS_B_KFV — joined twice, once for the asset group (nvl(asset_group_id, rebuild_item_id)) and once for the activity item.
- MTL_PARAMETERS — joined for the work order organization and the maintenance organization.
- CSI_ITEM_INSTANCES — supplies the installed asset instance number.
- BOM_DEPARTMENTS — supplies the department code for the owning department.
- MFG_LOOKUPS — used three times for priority meaning, asset type meaning, and status lookup context.
The view also references the FND_MESSAGE package in its full definition. Because the join to the asset group uses nvl(asset_group_id, rebuild_item_id), the rebuild_item_id column from WIP_DISCRETE_JOBS is a first-class component of the view's key join predicate. This is the column most often sought when users search for "rebuild_item_id" against this view.
Key Columns
- work_order_name — the WIP entity name of the work order.
- status — the displayed work order status.
- inventory_item_id — defined as nvl(wdj.asset_group_id, rebuild_item_id); when the asset group is null, the rebuild item is returned. This is the column most directly tied to "rebuild_item_id".
- activity_id — the primary item of the work order.
- asset_group, asset_number, asset_type — the maintenance asset grouping, instance number, and asset type meaning.
- firm_flag — decoded from firm_planned_flag as 'Y' or 'N'.
- priority — the priority lookup meaning.
- department_id, department_code — the owning department.
- service_request_id — the associated external service request.
- requested_start_date, due_date, scheduled_start_date, scheduled_completion_date, actual_start_date, actual_end_date, date_completed, date_closed, date_released — the scheduling and completion timeline.
- duration — elapsed scheduled hours, computed as scheduled_completion_date minus scheduled_start_date multiplied by 24, truncated to two decimals.
- organization_code, organization_id, wip_entity_id, status_id, priority_id — identifiers used for filtering and joining.
Common Use Cases and Queries
The view is typically queried to report on open EAM work orders, to reconcile work orders with service requests, or to extract work order details for downstream systems. Because inventory_item_id resolves to rebuild_item_id when no asset group is assigned, queries involving rebuild items can be written against the view without inspecting WIP_DISCRETE_JOBS directly.
A representative query retrieving work orders that resolve to a rebuild item is:
SELECT work_order_name, status, asset_group, asset_number, activity, priority, firm_flag, scheduled_start_date, scheduled_completion_date, duration FROM apps.wip_eam_wo_srv_assoc_v WHERE inventory_item_id = :rebuild_item_id AND organization_code = :org;
To report work orders linked to service requests:
SELECT work_order_name, service_request_id, status, due_date FROM apps.wip_eam_wo_srv_assoc_v WHERE service_request_id IS NOT NULL ORDER BY due_date;
Because the view applies ONLY the enable_flag filter on EAM_WO_SERVICE_ASSOCIATION and performs several outer joins, callers should apply their own organization and date predicates for performance, and should not assume that every work order has a service request, asset group, or department.
-
APPS.WIP_EAMMTLPROC_PRIV SQL Statements
12.1.1
-
APPS.WIP_EAMMTLPROC_PRIV SQL Statements
12.2.2
-
VIEW: APPS.WIP_EAM_WO_SRV_ASSOC_V
12.2.2
-
VIEW: APPS.WIP_EAM_WO_SRV_ASSOC_V
12.1.1
-
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_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: EAM.EAM_WORK_ORDER_IMPORT#
12.2.2
-
VIEW: WIP.WIP_COMPLETION_INTERFACE#
12.2.2
-
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: 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: WIP.WIP_ENTITIES_INTERFACE#
12.2.2
-
APPS.EAM_MATERIALISSUE_PVT SQL Statements
12.1.1
-
VIEW: EAM.EAM_FORECAST_WDJ#
12.2.2
-
VIEW: WIP.WIP_DISCRETE_JOBS#
12.2.2
-
VIEW: WIP.WIP_JOB_SCHEDULE_INTERFACE#
12.2.2
-
APPS.EAM_MATERIALISSUE_PVT SQL Statements
12.2.2
-
VIEW: APPS.WIP_EAM_CST_HEADER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_CST_HEADER_V, object_name:WIP_EAM_CST_HEADER_V, status:VALID,
-
VIEW: APPS.MTL_EAM_JOBS_RESOURCES_V
12.2.2
-
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.WIP_EAM_CST_HEADER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_CST_HEADER_V, object_name:WIP_EAM_CST_HEADER_V, status:VALID,
-
PACKAGE BODY: APPS.WIP_EAMMTLPROC_PRIV
12.1.1
-
VIEW: APPS.MTL_EAM_JOBS_RESOURCES_V
12.1.1
-
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,
-
PACKAGE BODY: APPS.WIP_EAMMTLPROC_PRIV
12.2.2
-
APPS.WMA_MATERIAL SQL Statements
12.1.1
-
APPS.WMA_MATERIAL SQL Statements
12.2.2
-
VIEW: APPS.CST_DISTRIBUTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DISTRIBUTION_V, object_name:CST_DISTRIBUTION_V, status:VALID,
-
VIEW: APPS.CST_DISTRIBUTION_LITE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DISTRIBUTION_LITE_V, object_name:CST_DISTRIBUTION_LITE_V, status:VALID,
-
VIEW: APPS.CST_DISTRIBUTION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DISTRIBUTION_V, object_name:CST_DISTRIBUTION_V, status:VALID,
-
VIEW: APPS.CST_DISTRIBUTION_LITE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.CST_DISTRIBUTION_LITE_V, object_name:CST_DISTRIBUTION_LITE_V, status:VALID,
-
APPS.EAM_WO_COMP_DEFAULT_PVT SQL Statements
12.1.1
-
APPS.EAM_WO_COMP_DEFAULT_PVT SQL Statements
12.2.2
-
VIEW: APPS.WIP_EAM_ENTITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_ENTITIES_V, object_name:WIP_EAM_ENTITIES_V, status:VALID,
-
VIEW: APPS.WIP_EAM_ENTITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:WIP.WIP_EAM_ENTITIES_V, object_name:WIP_EAM_ENTITIES_V, status:VALID,
-
View: EAM_REBUILD_COMPLETION_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_REBUILD_COMPLETION_JOBS_V, object_name:EAM_REBUILD_COMPLETION_JOBS_V, status:VALID, product: EAM - Enterprise Asset Management , description: Rebuild Work Order Completion View , implementation_dba_data: APPS.EAM_REBUILD_COMPLETION_JOBS_V ,
-
VIEW: APPS.EAM_REBUILD_COMPLETION_JOBS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_REBUILD_COMPLETION_JOBS_V, object_name:EAM_REBUILD_COMPLETION_JOBS_V, status:VALID,
-
VIEW: APPS.EAM_REBUILD_COMPLETION_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_REBUILD_COMPLETION_JOBS_V, object_name:EAM_REBUILD_COMPLETION_JOBS_V, status:VALID,
-
VIEW: EAM.EAM_WORK_ORDER_IMPORT#
12.2.2
owner:EAM, object_type:VIEW, object_name:EAM_WORK_ORDER_IMPORT#, status:VALID,
-
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 ,
-
PACKAGE: APPS.WMA_MATERIAL
12.2.2
-
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: WMS.WMS_MATERIAL_TXN_TRACE#
12.2.2
-
View: EAM_REBUILD_COMPLETION_JOBS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_REBUILD_COMPLETION_JOBS_V, object_name:EAM_REBUILD_COMPLETION_JOBS_V, status:VALID, product: EAM - Enterprise Asset Management , description: Rebuild Work Order Completion View , implementation_dba_data: APPS.EAM_REBUILD_COMPLETION_JOBS_V ,
-
PACKAGE: APPS.WMA_MATERIAL
12.1.1
-
VIEW: INV.MTL_MATERIAL_TRANSACTIONS_TEM#
12.2.2
-
VIEW: WIP.WIP_COMPLETION_INTERFACE#
12.2.2
owner:WIP, object_type:VIEW, object_name:WIP_COMPLETION_INTERFACE#, status:VALID,
-
APPS.MRP_RELEASE_EAM_WO SQL Statements
12.2.2
-
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 ,