Search Results asset_group_description
Overview
The MTL_EAM_ASSET_REBUILDS_V view is an APPS-owned database view in the Oracle E-Business Suite Inventory (INV) module that consolidates asset, rebuild, and object genealogy information for Enterprise Asset Management (EAM) items. It is defined as a VALID object within the ETRM documentation for releases 12.1.1 and 12.2.2. The view presents a read-only projection that joins item instance data with serial number records, object genealogy relationships, category assignments, and system item attributes, allowing reporting and integration consumers to identify assets alongside their rebuild parents and child counts without writing complex multi-table joins directly against the base tables.
Its primary role is to expose hierarchical asset relationships — specifically the linkage between a rebuilt asset and the parent object from which it originated — while filtering to EAM item types and active, serial-controlled instances. The view is commonly accessed in asset tracking dashboards, rebuild reporting, and integration extracts where consumers need a single-row-per-asset representation enriched with parent asset metadata.
Underlying Base Objects
The view is constructed over six documented base objects, all referenced through APPS synonyms except one view:
- CSI_ITEM_INSTANCES (SYNONYM) — source of the item instance, serial number, instance description, criticality, maintainability flag, and active date ranges.
- MTL_SYSTEM_ITEMS_B_KFV (VIEW) — provides concatenated item segments, EAM item type, and asset group description.
- MTL_SERIAL_NUMBERS (SYNONYM) — supplies serial number and genealogy object identifiers for both the asset and its parent.
- MTL_OBJECT_GENEALOGY (SYNONYM) — defines the parent-child object relationship used to derive PARENT_ITEM_ID, PARENT_SERIAL_NUMBER, and PARENT_OBJECT_ID.
- MTL_CATEGORIES_KFV (SYNONYM) — resolves the category name via an outer join on CATEGORY_ID.
- MTL_PARAMETERS (SYNONYM) — anchors the current maintenance organization identifier.
The join conditions restrict results to EAM item types 1 and 3, serial-controlled items, and instances whose active date range encompasses the current system date. Genealogy rows are further filtered to genealogy type 5 with active date validation.
Key Columns
- INVENTORY_ITEM_ID and SERIAL_NUMBER — primary asset identifiers from CSI_ITEM_INSTANCES.
- PARENT_ITEM_ID, PARENT_SERIAL_NUMBER, and PARENT_OBJECT_ID — the rebuild parent linkage derived from MTL_SERIAL_NUMBERS and MTL_OBJECT_GENEALOGY; these are the columns most frequently queried, including by the search term "parent_item_id".
- GEN_OBJECT_ID — the genealogy object identifier for the current asset.
- NO_OF_CHILDREN — a scalar subquery count of active MTL_OBJECT_GENEALOGY records where the current object acts as parent.
- CURRENT_ORGANIZATION_ID — the maintenance organization from MTL_PARAMETERS.
- CONCATENATED_SEGMENTS, EAM_ITEM_TYPE, and ASSET_GROUP_DESCRIPTION — item-level attributes.
- CATEGORY_NAME — resolved via the outer join to MTL_CATEGORIES_KFV.
- CURRENT_STATUS, INSTANCE_NUMBER, INSTANCE_ID, and DESCRIPTIVE_TEXT — instance-level detail.
- ASSET_CRITICALITY and MAINTAINABLE_FLAG — asset management flags, with maintainable defaulting to 'Y' via NVL.
Common Use Cases and Queries
Typical usage includes locating all assets that share a given rebuild parent, auditing rebuild trees, and counting descendant objects. A representative query retrieving parent linkage is:
SELECT INVENTORY_ITEM_ID, SERIAL_NUMBER, PARENT_ITEM_ID, PARENT_SERIAL_NUMBER, NO_OF_CHILDREN FROM APPS.MTL_EAM_ASSET_REBUILDS_V WHERE PARENT_ITEM_ID = :item_id;SELECT CONCATENATED_SEGMENTS, INSTANCE_NUMBER, CURRENT_STATUS FROM APPS.MTL_EAM_ASSET_REBUILDS_V WHERE CURRENT_ORGANIZATION_ID = :org_id AND MAINTAINABLE_FLAG = 'Y';SELECT PARENT_ITEM_ID, COUNT(*) FROM APPS.MTL_EAM_ASSET_REBUILDS_V GROUP BY PARENT_ITEM_ID HAVING COUNT(*) > 1;
Because the view already filters for active, serial-controlled EAM assets, consumers avoid re-implementing those predicates. For performance, queries filtering on PARENT_ITEM_ID, INVENTORY_ITEM_ID, or CURRENT_ORGANIZATION_ID benefit from the indexed base tables beneath the view.
-
View: MTL_EAM_ASSET_REBUILDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_V, object_name:MTL_EAM_ASSET_REBUILDS_V, status:VALID, product: INV - Inventory , description: View for Asset and Rebuild information. , implementation_dba_data: APPS.MTL_EAM_ASSET_REBUILDS_V ,
-
View: MTL_EAM_ASSET_REBUILDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_V, object_name:MTL_EAM_ASSET_REBUILDS_V, status:VALID, product: INV - Inventory , description: View for Asset and Rebuild information. , implementation_dba_data: APPS.MTL_EAM_ASSET_REBUILDS_V ,
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_V
12.2.2
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_V, object_name:MTL_EAM_ASSET_REBUILDS_V, status:VALID,
-
View: MTL_EAM_ASSET_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_V, object_name:MTL_EAM_ASSET_NUMBERS_V, status:VALID, product: INV - Inventory , description: View for Asset Numbers , implementation_dba_data: APPS.MTL_EAM_ASSET_NUMBERS_V ,
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_V, object_name:MTL_EAM_ASSET_REBUILDS_V, status:VALID,
-
View: MTL_EAM_ASSET_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_V, object_name:MTL_EAM_ASSET_NUMBERS_V, status:VALID, product: INV - Inventory , description: View for Asset Numbers , implementation_dba_data: APPS.MTL_EAM_ASSET_NUMBERS_V ,
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_V
12.1.1
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_V
12.1.1
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_V
12.2.2
-
View: MTL_EAM_ASSET_REBUILDS_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_DTLS_V, object_name:MTL_EAM_ASSET_REBUILDS_DTLS_V, status:VALID, product: INV - Inventory , description: View shows the details of Assets and Rebuilds. , implementation_dba_data: APPS.MTL_EAM_ASSET_REBUILDS_DTLS_V ,
-
View: MTL_EAM_ASSET_REBUILDS_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_DTLS_V, object_name:MTL_EAM_ASSET_REBUILDS_DTLS_V, status:VALID, product: INV - Inventory , description: View shows the details of Assets and Rebuilds. , implementation_dba_data: APPS.MTL_EAM_ASSET_REBUILDS_DTLS_V ,
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_DTLS_V
12.1.1
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_DTLS_V
12.2.2
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_V, object_name:MTL_EAM_ASSET_NUMBERS_V, status:VALID,
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_V, object_name:MTL_EAM_ASSET_NUMBERS_V, status:VALID,
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_DTLS_V, object_name:MTL_EAM_ASSET_REBUILDS_DTLS_V, status:VALID,
-
VIEW: APPS.MTL_EAM_ASSET_REBUILDS_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_REBUILDS_DTLS_V, object_name:MTL_EAM_ASSET_REBUILDS_DTLS_V, status:VALID,
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_ALL_V, object_name:MTL_EAM_ASSET_NUMBERS_ALL_V, status:VALID,
-
View: MTL_EAM_ASSET_NUMBERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_ALL_V, object_name:MTL_EAM_ASSET_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: View for Asset Number details , implementation_dba_data: APPS.MTL_EAM_ASSET_NUMBERS_ALL_V ,
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_ALL_V, object_name:MTL_EAM_ASSET_NUMBERS_ALL_V, status:VALID,
-
View: MTL_EAM_ASSET_NUMBERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_EAM_ASSET_NUMBERS_ALL_V, object_name:MTL_EAM_ASSET_NUMBERS_ALL_V, status:VALID, product: INV - Inventory , description: View for Asset Number details , implementation_dba_data: APPS.MTL_EAM_ASSET_NUMBERS_ALL_V ,
-
View: EAM_CFR_WORK_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_CFR_WORK_ORDER_V, object_name:EAM_CFR_WORK_ORDER_V, status:VALID, product: EAM - Enterprise Asset Management , description: This view displays details of all maintenance work orders.This view is used for ERES at the time of work order completion in the XGM. , implementation_dba_data: APPS.EAM_CFR_WORK_ORDER_V ,
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_ALL_V
12.1.1
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.1.1
owner:APPS, object_type:VIEW, object_name:EAM_CFR_WORK_ORDER_V, status:VALID,
-
VIEW: APPS.MTL_EAM_ASSET_NUMBERS_ALL_V
12.2.2
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.2.2
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:EAM.EAM_CFR_WORK_ORDER_V, object_name:EAM_CFR_WORK_ORDER_V, status:VALID,
-
VIEW: APPS.EAM_CFR_WORK_ORDER_V
12.1.1
-
PACKAGE BODY: APPS.WIP_EAM_WRAPPROVAL_PVT
12.1.1
-
PACKAGE BODY: APPS.WIP_EAM_WRAPPROVAL_PVT
12.2.2
-
APPS.WIP_EAM_WRAPPROVAL_PVT dependencies on WF_ENGINE
12.1.1
-
APPS.WIP_EAM_WRAPPROVAL_PVT dependencies on WF_ENGINE
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 ,
-
eTRM - INV Tables and Views
12.1.1
-
eTRM - INV Tables and Views
12.2.2