Results for “eam_work_order_details_u1”

10 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

EAM.EAM_WORK_ORDER_DETAILS is an Oracle Enterprise Asset Management (eAM) table that stores work order detail information specific to the eAM application, complementing the core work order records held in WIP. It resides in the APPS schema under the EAM owner, is registered as VALID, and has FND Design Data registered as EAM.EAM_WORK_ORDER_DETAILS. The table is stored in the APPS_TS_TX_DATA tablespace with a PCTFREE of 10, reflecting a transaction-data orientation. In Oracle EBS 12.1.1 and 12.2.2 it carries no date-effective (11i-style) columns; instead it uses the standard WHO audit columns and enhanced WHO columns (REQUEST_ID, PROGRAM_ID, PROGRAM_APPLICATION_ID, PROGRAM_UPDATE_DATE).

From a Data Vault modeling perspective, the documented FK structure indicates a satellite-leaning classification: the table hangs off a work order parent key (WIP_ENTITY_ID) and carries descriptive, context-specific attributes rather than serving as a standalone hub or a many-to-many link. This is a heuristic suggestion only, since the physical schema predates Data Vault conventions.

Key Information Stored

The table documents 29 columns spanning 12.2.2. The most operationally significant are:

Two indexes exist: the unique business-key candidate EAM_WORK_ORDER_DETAILS_U1 on (WIP_ENTITY_ID, ORGANIZATION_ID), and the non-unique EAM_WORK_ORDER_DETAILS_N1 on LAST_UPDATE_DATE, which supports incremental/CDC extraction patterns.

Common Use Cases and Queries

Typical usage covers work order status enrichment, material shortage reporting, PM-based work order generation analysis, and warranty tracking. A simple retrieval by work order and organization uses the unique index:

  • SELECT * FROM eam.eam_work_order_details WHERE wip_entity_id = :p_wip_entity_id AND organization_id = :p_org_id;
  • Incremental extraction for a data warehouse relies on N1: SELECT * FROM eam.eam_work_order_details WHERE last_update_date >= :p_since;
  • Reporting of material shortage work orders: SELECT wip_entity_id, organization_id, material_shortage_check_date FROM eam.eam_work_order_details WHERE material_shortage_flag = 1;

These patterns are frequently joined to WIP_ENTITIES and EAM_CONSTRUCTION_ESTIMATES for full work order reporting.

Related Objects