Search Results wip_eam_cst_header_v
Overview
WIP_EAM_CST_HEADER_V is an Oracle EBS Work in Process (WIP) view owned by the APPS schema. It presents cost header information for Enterprise Asset Management (EAM) work orders, consolidating attributes from discrete job records, work order status details, asset instance data, and estimation status lookups into a single reporting interface. The view is defined as a UNION ALL of two query blocks, allowing it to surface both asset-linked work orders and non-asset (rebuild or standalone) work orders within one result set. Because it exposes status, department, estimation, and asset context together, it is well suited to cost estimation reporting, work order dashboards, and downstream integrations that require a normalized EAM cost header row.
Underlying Base Objects
The view is defined over the following documented base objects:
- WIP_DISCRETE_JOBS (SYNONYM) — primary source of the WIP entity, organization, item, estimation, and asset grouping attributes.
- WIP_ENTITIES (SYNONYM) — supplies the WIP entity name, used here as PARENT_WIP_ENTITY_NAME via an outer join on PARENT_WIP_ENTITY_ID and ORGANIZATION_ID.
- BOM_DEPARTMENTS (SYNONYM) — provides DEPARTMENT_CODE as OWNING_DEPARTMENT, joined on the department ID and organization.
- MFG_LOOKUPS (VIEW) — resolves the estimation status code to its meaning using the lookup type CST_EAM_ESTIMATION_STATUS.
- CSI_ITEM_INSTANCES (SYNONYM) — supplies asset instance attributes such as INSTANCE_NUMBER and SERIAL_NUMBER.
- EAM_WORK_ORDER_DETAILS_V (VIEW) — provides the EAM work order status (JOB_STATUS) and user-defined status identifier.
- FND_MESSAGE (PACKAGE) — referenced for message resolution within the view definition context.
The relationships are enforced through outer joins on WIP_ENTITIES and BOM_DEPARTMENTS, and inner joins on MFG_LOOKUPS, CSI_ITEM_INSTANCES, and EAM_WORK_ORDER_DETAILS_V, ensuring consistent cost header rows for maintained EAM work orders.
Key Columns
- WIP_ENTITY_ID / ORGANIZATION_ID — Unique identifier and operating unit context of the work order.
- USER_DEFINED_STATUS_ID / JOB_STATUS — Status identifiers derived from the EAM work order details view.
- PRIMARY_ITEM_ID — The primary assembly item being built.
- SCHEDULED_COMPLETION_DATE — Planned completion date for the work order.
- ASSET_GROUP_ID — Groups work orders by asset, where applicable.
- ESTIMATION_STATUS / ESTIMATION_STATUS_MEANING — Numeric estimation status and its decoded lookup meaning.
- OWNING_DEPARTMENT — Department code responsible for the work order.
- REBUILD_ITEM_ID — Item identifier for rebuild activities.
- PARENT_WIP_ENTITY_NAME — Name of the parent WIP entity.
- LAST_ESTIMATION_REQ_ID / LAST_ESTIMATION_DATE — Most recent estimation request and its date.
- SERIAL_NUMBER / INSTANCE_NUMBER — Asset instance identifiers exposed through CSI_ITEM_INSTANCES.
Common Use Cases and Queries
The view is typically used to report estimation status across EAM work orders or to feed cost estimation processes. A sample query listing open estimations by department is shown below:
SELECT h.wip_entity_id,
h.organization_id,
h.job_status,
h.estimation_status_meaning,
h.owning_department,
h.scheduled_completion_date,
h.serial_number
FROM apps.wip_eam_cst_header_v h
WHERE h.estimation_status IN (1,2,3)
AND h.organization_id = :org_id
ORDER BY h.scheduled_completion_date;
Typical scenarios include tracking work orders pending estimation, reconciling last estimation dates, reporting asset-linked versus rebuild work orders, and driving dashboards that combine WIP cost headers with asset instance details.
-
View: 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, product: WIP - Work in Process , description: Cost information for EAM work orders , implementation_dba_data: APPS.WIP_EAM_CST_HEADER_V ,
-
View: 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, product: WIP - Work in Process , description: Cost information for EAM work orders , implementation_dba_data: APPS.WIP_EAM_CST_HEADER_V ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
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,
-
12.1.1 FND Design Data
12.1.1
-
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.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,
-
SYNONYM: APPS.BOM_DEPARTMENTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BOM_DEPARTMENTS, status:VALID,
-
SYNONYM: APPS.BOM_DEPARTMENTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BOM_DEPARTMENTS, status:VALID,
-
SYNONYM: APPS.WIP_ENTITIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_ENTITIES, status:VALID,
-
SYNONYM: APPS.WIP_ENTITIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_ENTITIES, status:VALID,
-
SYNONYM: APPS.WIP_DISCRETE_JOBS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:WIP_DISCRETE_JOBS, status:VALID,
-
SYNONYM: APPS.CSI_ITEM_INSTANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CSI_ITEM_INSTANCES, status:VALID,
-
SYNONYM: APPS.WIP_DISCRETE_JOBS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:WIP_DISCRETE_JOBS, status:VALID,
-
SYNONYM: APPS.CSI_ITEM_INSTANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CSI_ITEM_INSTANCES, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
VIEW: APPS.MFG_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MFG_LOOKUPS, object_name:MFG_LOOKUPS, status:VALID,
-
eTRM - EAM Tables and Views
12.2.2
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
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - INV Tables and Views
12.2.2
-
eTRM - INV Tables and Views
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 ,
-
PACKAGE: APPS.FND_MESSAGE
12.2.2
owner:APPS, object_type:PACKAGE, object_name:FND_MESSAGE, status:VALID,
-
PACKAGE: APPS.FND_MESSAGE
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_MESSAGE, status:VALID,
-
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