Search Results eam_asset_meters
Overview
The EAM_ASSET_METERS table is a core Enterprise Asset Management (EAM) object within Oracle E-Business Suite releases 12.1.1 and 12.2.2. It defines the association between a maintenance asset and the meters that measure its usage, condition, or performance. Each row effectively records that a particular meter is assigned to a particular asset (or asset group) within a given organization. This association is what allows Oracle EAM to capture meter readings against assets, drive preventive maintenance scheduling, and trigger work orders when meter thresholds are reached.
The table resides in the EAM schema and contains 30 documented columns. Based on the foreign key structure — references to EAM_METERS, MTL_SERIAL_NUMBERS, and MTL_SYSTEM_ITEMS_B — the object behaves as an intersection or association entity. In Data Vault modeling terms, the metadata's heuristic classification is link, which suggests modeling this table as a link between asset and meter hubs, with its attribute columns carried as link satellites.
Key Information Stored
The primary business content of a row is the asset-to-meter relationship itself. The most significant columns are:
- METER_ID — identifies the meter being associated; foreign key to EAM_METERS.
- ASSET_NUMBER — the asset instance being metered; foreign key to MTL_SERIAL_NUMBERS.
- ASSET_GROUP_ID — the asset group (item definition) for the asset; foreign key to MTL_SYSTEM_ITEMS_B.
- ORGANIZATION_ID — the inventory organization that owns the asset/meter association.
- MAINTENANCE_OBJECT_TYPE and MAINTENANCE_OBJECT_ID — polymorphic reference supporting meter association to alternate maintenance objects.
- PRIMARY_FAILURE_METER — indicates whether the meter serves as the primary failure meter for the asset.
- MIGRATED_FLAG — denotes rows migrated during data conversion.
- CREATION_ORGANIZATION_ID — the organization in which the record was originally created.
- Standard WHO audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
- Descriptive flexfield columns ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15.
The unique business key is the combination of METER_ID with the asset identifiers (ASSET_NUMBER / ASSET_GROUP_ID) and ORGANIZATION_ID, which together prevent duplicate meter assignments. METER_ID alone is not a surrogate primary key; the table is keyed by the composite association, consistent with its link classification.
Common Use Cases and Queries
Typical scenarios include reporting all meters assigned to a given asset, identifying assets that lack meter coverage, and reviewing primary failure meters for reliability analysis.
- Meters for a specific asset: join EAM_ASSET_METERS to EAM_METERS on METER_ID filtering by ASSET_NUMBER and ORGANIZATION_ID.
- Assets without an assigned meter: outer-join MTL_SERIAL_NUMBERS to EAM_ASSET_METERS and filter where METER_ID is null.
- Primary failure meter listing: select rows where PRIMARY_FAILURE_METER is set, joined to asset item data via ASSET_GROUP_ID and ORGANIZATION_ID.
- Meter reading trending: join this table to meter-reading tables through METER_ID to build usage and threshold reports.
Sample pattern:
SELECT a.asset_number, m.meter_name
FROM eam_asset_meters a, eam_meters m
WHERE a.meter_id = m.meter_id
AND a.organization_id = :org_id;
Related Objects
The following are the most significant related objects based on the documented referential relationships:
- EAM_METERS — referenced via EAM_ASSET_METERS.METER_ID; holds meter definitions.
- MTL_SERIAL_NUMBERS — referenced via ASSET_NUMBER; the asset instance master.
- MTL_SYSTEM_ITEMS_B — referenced via ASSET_GROUP_ID and ORGANIZATION_ID; the asset item definition.
- EAM_METER_READINGS — stores readings captured against meters associated here.
- EAM_WORK_ORDERS — preventive and corrective work orders driven by meter thresholds.
- EAM_PM_RULES — preventive maintenance rules that consume meter associations.
- EAM_ASSET_ROUTES and EAM_ASSET_ACTIVITIES — related maintenance scheduling objects.
These objects together support the meter-driven maintenance lifecycle within Oracle Enterprise Asset Management.
-
Table: EAM_ASSET_METERS
12.2.2
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_ASSET_METERS, object_name:EAM_ASSET_METERS, status:VALID, product: EAM - Enterprise Asset Management , description: Asset Meter Association , implementation_dba_data: EAM.EAM_ASSET_METERS ,
-
Table: EAM_ASSET_METERS
12.1.1
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_ASSET_METERS, object_name:EAM_ASSET_METERS, status:VALID, product: EAM - Enterprise Asset Management , description: Asset Meter Association , implementation_dba_data: EAM.EAM_ASSET_METERS ,
-
SYNONYM: APPS.EAM_ASSET_METERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:EAM_ASSET_METERS, status:VALID,
-
VIEW: EAM.EAM_ASSET_METERS#
12.2.2
owner:EAM, object_type:VIEW, object_name:EAM_ASSET_METERS#, status:VALID,
-
SYNONYM: APPS.EAM_ASSET_METERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:EAM_ASSET_METERS, status:VALID,
-
VIEW: EAM.EAM_ASSET_METERS#
12.2.2
-
Table: EAM_METERS
12.2.2
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_METERS, object_name:EAM_METERS, status:VALID, product: EAM - Enterprise Asset Management , description: Table for asset meter definition , implementation_dba_data: EAM.EAM_METERS ,
-
Table: EAM_METERS
12.1.1
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_METERS, object_name:EAM_METERS, status:VALID, product: EAM - Enterprise Asset Management , description: Table for asset meter definition , implementation_dba_data: EAM.EAM_METERS ,
-
12.1.1 FND Design Data
12.1.1
-
View: EAM_ASSET_METERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_ASSET_METERS_V, object_name:EAM_ASSET_METERS_V, status:VALID, product: EAM - Enterprise Asset Management , description: This view gives all the information about a meter associated with an asset. , implementation_dba_data: APPS.EAM_ASSET_METERS_V ,
-
View: EAM_METER_READINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_METER_READINGS_V, object_name:EAM_METER_READINGS_V, status:VALID, product: EAM - Enterprise Asset Management , description: View gives details about meter and meter readings. , implementation_dba_data: APPS.EAM_METER_READINGS_V ,
-
TABLE: EAM.EAM_ASSET_METERS
12.2.2
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_ASSET_METERS, object_name:EAM_ASSET_METERS, status:VALID,
-
TABLE: EAM.EAM_ASSET_METERS
12.1.1
owner:EAM, object_type:TABLE, fnd_design_data:EAM.EAM_ASSET_METERS, object_name:EAM_ASSET_METERS, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.EAM_FAILURE_ANALYSIS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_FAILURE_ANALYSIS_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.EAM_FAILURE_ANALYSIS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_FAILURE_ANALYSIS_PVT, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
Table: MTL_SERIAL_NUMBERS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SERIAL_NUMBERS, object_name:MTL_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: Serial number definitions , implementation_dba_data: INV.MTL_SERIAL_NUMBERS ,
-
Table: MTL_SERIAL_NUMBERS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SERIAL_NUMBERS, object_name:MTL_SERIAL_NUMBERS, status:VALID, product: INV - Inventory , description: Serial number definitions , implementation_dba_data: INV.MTL_SERIAL_NUMBERS ,
-
APPS.EAM_METERASSOC_PUB SQL Statements
12.1.1
-
APPS.EAM_METERASSOC_PUB SQL Statements
12.2.2
-
APPS.EAM_TEXT_UTIL SQL Statements
12.1.1
-
APPS.EAM_METR_VALIDATOR SQL Statements
12.1.1
-
APPS.EAM_METR_VALIDATOR SQL Statements
12.2.2
-
APPS.EAM_TEXT_UTIL SQL Statements
12.2.2
-
Table: MTL_SYSTEM_ITEMS_B
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B, object_name:MTL_SYSTEM_ITEMS_B, status:VALID, product: INV - Inventory , description: Inventory item definitions , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_B ,
-
Table: MTL_SYSTEM_ITEMS_B
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_SYSTEM_ITEMS_B, object_name:MTL_SYSTEM_ITEMS_B, status:VALID, product: INV - Inventory , description: Inventory item definitions , implementation_dba_data: INV.MTL_SYSTEM_ITEMS_B ,
-
APPS.EAM_ACTIVITYSUPN_PUB SQL Statements
12.2.2
-
APPS.EAM_FAILURE_ANALYSIS_PVT dependencies on EAM_ASSET_METERS
12.1.1
-
APPS.EAM_ACTIVITYSUPN_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.EAM_METERREADING_VALIDATE_PVT
12.1.1
-
APPS.EAM_FAILURE_ANALYSIS_PVT dependencies on EAM_ASSET_METERS
12.2.2
-
PACKAGE BODY: APPS.EAM_METERREADING_VALIDATE_PVT
12.2.2
-
PACKAGE BODY: APPS.EAM_METERASSOC_PUB
12.2.2
-
PACKAGE BODY: APPS.EAM_METERASSOC_PUB
12.1.1
-
APPS.EAM_FAILURE_ANALYSIS_PVT SQL Statements
12.2.2
-
APPS.EAM_FAILURE_ANALYSIS_PVT SQL Statements
12.1.1
-
eTRM - EAM Tables and Views
12.1.1
description: Table for storing workflow item type and keys corresponding to a work order ,
-
APPS.EAM_FAILURE_ANALYSIS_PVT dependencies on EAM_METERS
12.2.2
-
APPS.EAM_FAILURE_ANALYSIS_PVT dependencies on EAM_METERS
12.1.1
-
PACKAGE BODY: APPS.EAM_ACTIVITYSUPN_PUB
12.2.2
-
APPS.EAM_FAILURE_ANALYSIS_PVT dependencies on EAM_METER_READINGS
12.2.2
-
eTRM - EAM Tables and Views
12.2.2
description: Table for storing workflow item type and keys corresponding to a work order ,