Search Results eam_establishment_details




Overview

EAM_ESTABLISHMENT_DETAILS is an Oracle Enterprise Asset Management (EAM) table that stores safety establishment records. Within Oracle EBS Release 12.1.1 and 12.2.2, this object supports the safety and lockout/tagout (LOTO) workflow that governs maintenance execution — associating an establishment of safety conditions (such as lockout devices, safety tags, and tag positions) with a source transaction, a maintenance object, and optionally a resource, department, or resource instance. The table is owned by the EAM schema and is documented with 52 physical columns in ETRM 12.2.2, with a primary key constraint named EAM_ESTABLISHMENT_DETAILS_PK on ESTABLISHMENT_ID.

The ETRM documentation classifies this table as standalone at the Data Vault level, meaning the mined foreign-key structure does not identify a dependent hub/link/satellite relationship to another EAM entity. Modeling it as an independent hub (or as a satellite of the establishment source entity, if a natural business key is inferred from ESTABLISHMENT_SOURCE and ESTABLISHMENT_SOURCE_ID) is a reasonable heuristic suggestion rather than a documented constraint.

Key Information Stored

The table's most operationally significant columns include:

Common Use Cases and Queries

Typical uses are compliance reporting on LOTO activity, listing all establishments for a maintenance object, and reconciling completed vs. open establishments for a work order. A representative query joins the establishment to its source:

  • Filter by organization for multi-org reporting: SELECT ESTABLISHMENT_ID, DESCRIPTION, SAFETY_TAG, LOCK_NUMBER, COMPLETION_DATE FROM EAM.EAM_ESTABLISHMENT_DETAILS WHERE ORGANIZATION_ID = :org_id;
  • Locate all establishments for a maintenance object: ... WHERE MAINTENANCE_OBJECT_ID = :object_id ORDER BY SEQUENCE_NUMBER;
  • Trace the source of an establishment: ... WHERE ESTABLISHMENT_SOURCE = :source AND ESTABLISHMENT_SOURCE_ID = :source_id;
  • Audit stale or uncompleted records: ... WHERE COMPLETION_DATE IS NULL;

Reporting views built on this table should honor the ORGANIZATION_ID column and the standard security profile to enforce operating-unit restrictions.

Related Objects

Because ETRM classes the table as standalone, few direct FK dependencies are documented. However, business linkage exists through the following objects (join on the indicated columns):

No documented public API is named in the ETRM excerpt; integrations should treat the table as EAM-internal and access it read-only for reporting.