Search Results eam_asset_failures_pk
Overview
EAM_ASSET_FAILURES is a table in the EAM (Enterprise Asset Management) schema of Oracle E-Business Suite, valid across releases 12.1.1 and 12.2.2. It stores information about failure events recorded against assets, forming the transactional backbone of maintenance failure analysis, reliability reporting, and root-cause tracking within the Oracle EAM module. Each row represents a discrete failure event tied to a maintained asset, with associations to the organization, department, and functional area responsible for the event. Typical database administrators and EAM implementers query this object through the synonym EAM.EAM_ASSET_FAILURES or the corresponding EAM data model views.
From a Data Vault modeling perspective, the heuristic classification for this table is standalone — that is, it does not cleanly resolve to a pure hub, link, or satellite. It carries its own surrogate key, business keys, and descriptive attributes, reflecting a self-contained record of failure history rather than a normalized dimensional construct.
Key Information Stored
The table contains 15 documented columns. The most significant columns and their roles are:
- FAILURE_ID — surrogate primary key (EAM_ASSET_FAILURES_PK) and unique index EAM_ASSET_FAILURES_U1. Uniquely identifies each failure event.
- FAILURE_DATE — the date the failure occurred; central to reliability metrics such as MTBF.
- SOURCE_ID — business-key candidate carrying the unique index EAM_ASSET_FAILURES_U2; identifies the originating record.
- SOURCE_TYPE — classifies the source of the failure record.
- OBJECT_TYPE / OBJECT_ID — identify the asset or object that experienced the failure.
- MAINT_ORGANIZATION_ID — maintenance organization responsible for the asset.
- CURRENT_ORGANIZATION_ID — the organization where the record currently resides.
- DEPARTMENT_ID — department associated with the failure; foreign key to BOM_DEPARTMENTS.
- AREA_ID — functional area associated with the failure; foreign key to PAY_FUNCTIONAL_AREAS.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS WHO columns for audit and change tracking.
Common Use Cases and Queries
Reliability engineers and maintenance planners use this table to analyze failure trends by asset, organization, department, and area. Common queries include:
- Failure counts grouped by asset:
SELECT OBJECT_ID, COUNT(*) FROM EAM.EAM_ASSET_FAILURES GROUP BY OBJECT_ID; - Failures within a date range:
SELECT FAILURE_ID, FAILURE_DATE FROM EAM.EAM_ASSET_FAILURES WHERE FAILURE_DATE BETWEEN :from_date AND :to_date; - Failures by maintenance organization:
SELECT MAINT_ORGANIZATION_ID, COUNT(*) FROM EAM.EAM_ASSET_FAILURES GROUP BY MAINT_ORGANIZATION_ID; - Joining to departments:
SELECT f.FAILURE_ID, d.DEPARTMENT_CODE FROM EAM.EAM_ASSET_FAILURES f, BOM.BOM_DEPARTMENTS d WHERE f.DEPARTMENT_ID = d.DEPARTMENT_ID;
These patterns support MTBF/MTTR reporting, maintenance cost analysis, and asset performance dashboards.
Related Objects
The following objects are most significant in relation to EAM_ASSET_FAILURES, based on the documented FK relationships:
- EAM_ASSET_FAILURE_CODES — references EAM_ASSET_FAILURES via FAILURE_ID; stores failure code details.
- BOM_DEPARTMENTS — referenced by DEPARTMENT_ID; provides department context.
- PAY_FUNCTIONAL_AREAS — referenced by AREA_ID; provides functional area context.
- EAM_ASSET_FAILURES_PK / _U1 / _U2 — primary and unique indexes enforcing uniqueness on FAILURE_ID and SOURCE_ID.
Together these objects enable comprehensive failure analysis across the Oracle EAM data model.
-
Table: EAM_ASSET_FAILURES
12.1.1
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_ASSET_FAILURES, object_name:EAM_ASSET_FAILURES, status:VALID, product: EAM - Enterprise Asset Management , description: Stores Information about failure events against the asset. , implementation_dba_data: EAM.EAM_ASSET_FAILURES ,
-
Table: EAM_ASSET_FAILURES
12.2.2
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_ASSET_FAILURES, object_name:EAM_ASSET_FAILURES, status:VALID, product: EAM - Enterprise Asset Management , description: Stores Information about failure events against the asset. , implementation_dba_data: EAM.EAM_ASSET_FAILURES ,
-
eTRM - EAM Tables and Views
12.1.1
description: Table for storing workflow item type and keys corresponding to a work order ,
-
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 - EAM Tables and Views
12.2.2
description: Table for storing workflow item type and keys corresponding to a work order ,