Search Results mtl_eam_network_assets
Overview
MTL_EAM_NETWORK_ASSETS is an Enterprise Asset Management (EAM) table owned by the INV (Inventory) schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its documented purpose is to store the association of assets to an asset route — that is, the network relationship that links a maintainable asset (or network object) to the asset or serialized item it belongs to or traverses. Asset routes, sometimes called linear assets or network assets, are used in EAM to model infrastructure such as pipelines, transmission lines, and roadways, where the relationship between a network parent and its associated assets must be tracked across an organization.
The table is documented with 37 columns and is registered in the ETRM repository as VALID. Based on the mined foreign key structure, the heuristic Data Vault classification for this object is a link table. This classification is a modeling suggestion only: the table serves as an associative entity that resolves many-to-many relationships between serialized network objects and maintenance assets, rather than acting as a standalone hub or a descriptive satellite.
Key Information Stored
The primary key is NETWORK_ASSOCIATION_ID, defined by the constraint MTL_EAM_NETWORK_ASSETS_PK and reinforced by the unique index MTL_EAM_NETWORK_ASSETS_U1, which makes it the principal business-key candidate for the row identity.
- ORGANIZATION_ID — the inventory organization that owns the asset association; participates in foreign keys to MTL_PARAMETERS and to the serial number references.
- NETWORK_ASSOCIATION_ID — the surrogate primary key uniquely identifying each association record.
- NETWORK_ITEM_ID and NETWORK_SERIAL_NUMBER — identify the network (parent) object by item and serial number. The serial number joins to MTL_SERIAL_NUMBERS.
- INVENTORY_ITEM_ID and SERIAL_NUMBER — identify the associated maintenance asset by item and serial number, also joining to MTL_SERIAL_NUMBERS.
- NETWORK_OBJECT_TYPE and NETWORK_OBJECT_ID — generic descriptor and identifier for the network-side object.
- MAINTENANCE_OBJECT_TYPE and MAINTENANCE_OBJECT_ID — generic descriptor and identifier for the maintenance-side object.
- START_DATE_ACTIVE and END_DATE_ACTIVE — the effective date range during which the association is active.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the flexfield descriptive columns available for customer extensions.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, and PROGRAM_UPDATE_DATE — concurrent program audit columns identifying the process that created or last modified the row.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, and LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
Typical reporting needs include listing all assets associated with a given network object, auditing associations created by a specific concurrent program, and checking which associations are currently active. A representative query is:
SELECT network_association_id, organization_id,
network_item_id, network_serial_number,
inventory_item_id, serial_number,
start_date_active, end_date_active
FROM mtl_eam_network_assets
WHERE organization_id = :org_id
AND TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE)
AND NVL(end_date_active, SYSDATE);
Because the table references MTL_SERIAL_NUMBERS twice, joins must alias the serial number table distinctly for network and maintenance sides to avoid ambiguous column resolution. The ATTRIBUTE columns support customer-specific reporting where standard columns are insufficient, and the program audit columns assist in data correction and reconciliation tasks.
Related Objects
- MTL_PARAMETERS — joined on ORGANIZATION_ID to resolve organization context.
- MTL_SERIAL_NUMBERS — joined twice: on (NETWORK_ITEM_ID, NETWORK_SERIAL_NUMBER) for the network object and on (INVENTORY_ITEM_ID, SERIAL_NUMBER) for the maintenance asset, both qualified by ORGANIZATION_ID.
- MTL_SYSTEM_ITEMS_B — referenced indirectly via the item identifiers for descriptive item information.
- EAM asset route and network API/forms — the application layer that maintains these associations.
- MTL_EAM_NETWORK_ASSETS_PK / U1 — the constraints and unique index enforcing row identity.
-
Table: MTL_EAM_NETWORK_ASSETS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS, object_name:MTL_EAM_NETWORK_ASSETS, status:VALID, product: INV - Inventory , description: Table for association of assets to asset route. , implementation_dba_data: INV.MTL_EAM_NETWORK_ASSETS ,
-
Table: MTL_EAM_NETWORK_ASSETS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS, object_name:MTL_EAM_NETWORK_ASSETS, status:VALID, product: INV - Inventory , description: Table for association of assets to asset route. , implementation_dba_data: INV.MTL_EAM_NETWORK_ASSETS ,
-
VIEW: APPS.EAM_WORK_ASSET_ROUTE_V
12.2.2
-
VIEW: APPS.MTL_EAM_NETWORK_ASSETS_DFV
12.1.1
-
VIEW: APPS.EAM_WORK_ASSET_ROUTE_V
12.1.1
-
SYNONYM: APPS.MTL_EAM_NETWORK_ASSETS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTL_EAM_NETWORK_ASSETS, status:VALID,
-
VIEW: APPS.MTL_EAM_NETWORK_ASSETS_DFV
12.2.2
-
VIEW: INV.MTL_EAM_NETWORK_ASSETS#
12.2.2
owner:INV, object_type:VIEW, object_name:MTL_EAM_NETWORK_ASSETS#, status:VALID,
-
View: EAM_WORK_ASSET_ROUTE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ASSET_ROUTE_V, object_name:EAM_WORK_ASSET_ROUTE_V, status:VALID, product: EAM - Enterprise Asset Management , description: The view shows the work order route infromation , implementation_dba_data: APPS.EAM_WORK_ASSET_ROUTE_V ,
-
SYNONYM: APPS.MTL_EAM_NETWORK_ASSETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTL_EAM_NETWORK_ASSETS, status:VALID,
-
APPS.EAM_WORKBENCH_TREE SQL Statements
12.2.2
-
APPS.EAM_WORKBENCH_TREE SQL Statements
12.1.1
-
VIEW: INV.MTL_EAM_NETWORK_ASSETS#
12.2.2
-
APPS.EAM_NETWORK_ASSETS_PVT SQL Statements
12.1.1
-
APPS.EAM_NETWORK_ASSETS_PVT SQL Statements
12.2.2
-
VIEW: APPS.MTL_EAM_NETWORK_ASSETS_V
12.2.2
-
VIEW: APPS.MTL_EAM_NETWORK_ASSETS_V
12.1.1
-
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 ,
-
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 ,
-
APPS.EAM_ASSET_ROUTES_PUB SQL Statements
12.1.1
-
APPS.EAM_ASSET_ROUTES_PUB SQL Statements
12.2.2
-
PACKAGE BODY: APPS.EAM_WORKBENCH_TREE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_WORKBENCH_TREE, status:VALID,
-
PACKAGE BODY: APPS.EAM_WORKBENCH_TREE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_WORKBENCH_TREE, status:VALID,
-
PACKAGE BODY: APPS.EAM_NETWORK_ASSETS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_NETWORK_ASSETS_PVT, status:VALID,
-
PACKAGE BODY: APPS.EAM_NETWORK_ASSETS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_NETWORK_ASSETS_PVT, status:VALID,
-
VIEW: APPS.MTL_EAM_NETWORK_ASSETS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:MTL_EAM_NETWORK_ASSETS_DFV, status:VALID,
-
PACKAGE BODY: APPS.EAM_ASSET_ROUTES_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_ASSET_ROUTES_PUB, status:VALID,
-
PACKAGE BODY: APPS.EAM_ASSET_ROUTES_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_ASSET_ROUTES_PUB, status:VALID,
-
VIEW: APPS.MTL_EAM_NETWORK_ASSETS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:MTL_EAM_NETWORK_ASSETS_DFV, status:VALID,
-
TABLE: INV.MTL_EAM_NETWORK_ASSETS
12.1.1
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS, object_name:MTL_EAM_NETWORK_ASSETS, status:VALID,
-
TABLE: INV.MTL_EAM_NETWORK_ASSETS
12.2.2
owner:INV, object_type:TABLE, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS, object_name:MTL_EAM_NETWORK_ASSETS, status:VALID,
-
PACKAGE BODY: APPS.EAM_WORKBENCH_TREE
12.2.2
-
PACKAGE BODY: APPS.EAM_WORKBENCH_TREE
12.1.1
-
VIEW: APPS.EAM_WORK_ASSET_ROUTE_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_WORK_ASSET_ROUTE_V, status:VALID,
-
PACKAGE BODY: APPS.EAM_WO_CHANGE_STATUS_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_WO_CHANGE_STATUS_PVT, status:VALID,
-
VIEW: APPS.EAM_WORK_ASSET_ROUTE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_WORK_ASSET_ROUTE_V, object_name:EAM_WORK_ASSET_ROUTE_V, status:VALID,
-
PACKAGE BODY: APPS.EAM_COMMON_UTILITIES_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_COMMON_UTILITIES_PVT, status:VALID,
-
PACKAGE BODY: APPS.EAM_WO_CHANGE_STATUS_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_WO_CHANGE_STATUS_PVT, status:VALID,
-
View: MTL_EAM_NETWORK_ASSETS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS_V, object_name:MTL_EAM_NETWORK_ASSETS_V, status:VALID, product: INV - Inventory , description: View for EAM Asset Routes , implementation_dba_data: APPS.MTL_EAM_NETWORK_ASSETS_V ,
-
PACKAGE BODY: APPS.EAM_COMMON_UTILITIES_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:EAM_COMMON_UTILITIES_PVT, status:VALID,
-
View: MTL_EAM_NETWORK_ASSETS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_NETWORK_ASSETS_V, object_name:MTL_EAM_NETWORK_ASSETS_V, status:VALID, product: INV - Inventory , description: View for EAM Asset Routes , implementation_dba_data: APPS.MTL_EAM_NETWORK_ASSETS_V ,
-
PACKAGE BODY: APPS.CST_EAMCOST_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CST_EAMCOST_PUB, status:VALID,
-
PACKAGE BODY: APPS.CST_EAMCOST_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CST_EAMCOST_PUB, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.EAM_ASSET_ROUTES_PUB
12.2.2
-
PACKAGE BODY: APPS.EAM_ASSET_ROUTES_PUB
12.1.1