Search Results mtl_eam_item_type
Overview
APPS.BOM_BILL_OF_MATERIALS_V is a reporting and integration view that exposes bill of materials (BOM) header records in Oracle E-Business Suite 12.1.1 and 12.2.2. It joins the base BOM header entity to item master attributes, item descriptions, lookup meanings, and structure type configuration, producing a denormalized row set suitable for inquiry screens, concurrent programs, interfaces, and ad hoc SQL. Because the view presents one row per bill of materials header (per assembly item, organization, and alternate designator), it is the standard entry point for retrieving assembly-level BOM metadata without manually joining BOM_BILL_OF_MATERIALS to MTL_SYSTEM_ITEMS and the surrounding lookup tables.
The view is relevant to searches involving mtl_eam_item_type because it explicitly resolves that lookup code to its display meaning through the MFG_LOOKUPS table, aliased as MGL. Users investigating Enterprise Asset Management (EAM) item classification alongside BOM structures will find this view a convenient, single-source projection of both manufacturing and EAM item attributes.
Underlying Base Objects
The view is defined over the following documented objects:
- BOM_BILL_OF_MATERIALS (VIEW) — the primary BOM header source, providing assembly item, organization, alternate designator, bill sequence, effectivity control, and audit columns.
- MTL_SYSTEM_ITEMS (SYNONYM) — supplies item master attributes such as UOM, BOM item type, pick components flag, replenish-to-order flag, EAM item type, and engineering item flag.
- MTL_SYSTEM_ITEMS_TL (SYNONYM) — provides the language-specific item description, filtered by the session language.
- FND_COMMON_LOOKUPS (VIEW) — resolves ITEM_TYPE lookup codes into a translated meaning.
- MFG_LOOKUPS (VIEW) — resolves the MTL_EAM_ITEM_TYPE lookup code into a translated meaning.
- BOM_STRUCTURE_TYPES_B (SYNONYM) — supplies structure type enablement attributes, notably whether unimplemented BOMs are permitted.
The MTL_SYSTEM_ITEMS and MTL_SYSTEM_ITEMS_TL joins are performed on inventory item and organization identifiers, and the session language is applied via USERENV('LANG'). Lookup joins are outer joins, so records without a matching lookup meaning remain visible.
Key Columns
- ASSEMBLY_ITEM_ID, ORGANIZATION_ID, COMMON_ASSEMBLY_ITEM_ID — identify the assembly item and the owning inventory organization.
- ALTERNATE_BOM_DESIGNATOR, BILL_SEQUENCE_ID, COMMON_BILL_SEQUENCE_ID — distinguish alternate BOMs and their sequence.
- BOM_ITEM_TYPE, ITEM_TYPE, EAM_ITEM_TYPE, EAM_ITEM_TYPE_VALUE — item classification columns, including the EAM item type code and its lookup meaning.
- UOM, DESCRIPTION — primary unit of measure and the translated item description.
- PICK_COMPONENTS_FLAG, REPLENISH_TO_ORDER_FLAG, ATP_COMPONENTS_FLAG, WIP_SUPPLY_TYPE, BOM_ENABLED_FLAG, ENG_ITEM_FLAG — planning and manufacturing behavior attributes.
- EFFECTIVITY_CONTROL, IMPLEMENTATION_DATE, PENDING_FROM_ECN, NEXT_EXPLODE_DATE — effectivity and change-management context.
- STRUCTURE_TYPE_ID and the enable-unimplemented-BOM indicator — structure type configuration.
Common Use Cases and Queries
Typical uses include listing all BOM headers for a given organization, reporting EAM-classified assemblies, and validating which structures may reference unimplemented engineering changes.
SELECT assembly_item_id, organization_id, alternate_bom_designator,
description, eam_item_type, eam_item_type_value
FROM apps.bom_bill_of_materials_v
WHERE organization_id = 207
AND bom_item_type = 4;
To inspect only EAM items:
SELECT assembly_item_id, description, eam_item_type_value FROM apps.bom_bill_of_materials_v WHERE eam_item_type IS NOT NULL ORDER BY description;
The view is appropriate for read-only reporting and integration extracts; because it derives from base BOM and item tables, direct DML should be performed against the underlying base entities rather than the view itself.
-
Lookup Type: MTL_EAM_ITEM_TYPE
12.1.1
product: INV - Inventory , meaning: MTL_EAM_ITEM_TYPE , description: Enterprise Asset Management Item Types ,
-
Lookup Type: MTL_EAM_ITEM_TYPE
12.2.2
product: INV - Inventory , meaning: MTL_EAM_ITEM_TYPE , description: Enterprise Asset Management Item Types ,
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_V
12.1.1
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_V
12.2.2
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_ERV
12.1.1
-
VIEW: APPS.BOM_BILL_OF_MATERIALS_ERV
12.2.2
-
View: BOM_BILL_OF_MATERIALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_V, object_name:BOM_BILL_OF_MATERIALS_V, status:VALID, product: BOM - Bills of Material , description: Bills of material , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_V ,
-
View: BOM_BILL_OF_MATERIALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_V, object_name:BOM_BILL_OF_MATERIALS_V, status:VALID, product: BOM - Bills of Material , description: Bills of material , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_V ,
-
View: BOM_BILL_OF_MATERIALS_ERV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_ERV, object_name:BOM_BILL_OF_MATERIALS_ERV, status:VALID, product: BOM - Bills of Material , description: Bill Of Materials view for ERES , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_ERV ,
-
View: BOM_BILL_OF_MATERIALS_ERV
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOM_BILL_OF_MATERIALS_ERV, object_name:BOM_BILL_OF_MATERIALS_ERV, status:VALID, product: BOM - Bills of Material , description: Bill Of Materials view for ERES , implementation_dba_data: APPS.BOM_BILL_OF_MATERIALS_ERV ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.INV_INVIRITD_XMLP_PKG
12.2.2
-
PACKAGE BODY: APPS.INV_INVIRITD_XMLP_PKG
12.1.1
-
PACKAGE BODY: APPS.INVPVDR4
12.1.1
-
PACKAGE BODY: APPS.INVPVDR4
12.2.2