Search Results mth_items_d
Overview
MTH_ITEMS_D is a table in the MTH schema, owned by the Oracle Manufacturing Operations Center (MOC) product within Oracle E-Business Suite 12.1.1 and 12.2.2. It serves as the item dimension store for MOC — the analytic and shop-floor visibility layer that consolidates manufacturing execution data across plants, systems, and source organizations. Each row represents a single item definition as it is known to the Operations Center, carrying descriptive attributes, unit-of-measure information, physical characteristics, and a configurable block of user-defined attributes and measures.
The ETRM metadata classifies this object, heuristically, as a standalone structure with no mined foreign-key links to other documented tables. In Data Vault terms, this suggests modeling it as a standalone hub-and-satellite combination keyed on ITEM_PK, rather than as a link table. The absence of mined FK relationships does not mean the table is unreferenced in practice; it reflects that relationships are maintained through EBS identifiers (EBS_ITEM_ID, EBS_ORGANIZATION_ID) and application logic rather than enforced database constraints.
Key Information Stored
The table contains 58 documented columns. The most significant are:
- ITEM_PK — the surrogate primary key, enforced by unique index MTH_ITEMS_D_U1. This is the column consumed by downstream MOC fact and staging structures.
- ITEM_PK_KEY and ITEM_NAME — the business-key candidates, enforced by unique indexes MTH_ITEMS_D_U2 (ITEM_NAME, ITEM_PK_KEY) and MTH_ITEMS_D_U3 (ITEM_PK_KEY, ITEM_NAME). ITEM_PK_KEY is the imported source-system key, allowing reconciliation back to the originating system.
- EBS_ITEM_ID and EBS_ORGANIZATION_ID — the Oracle EBS inventory item and organization identifiers, providing the linkage back to MTL_SYSTEM_ITEMS_B.
- PLANT_FK_KEY and SYSTEM_FK_KEY — references to the plant and source system context in which the item is defined.
- PRIMARY_UOM and SECONDARY_UOM — the primary and dual unit of measure for the item.
- UNIT_WEIGHT, WEIGHT_UOM, UNIT_VOLUME, and VOLUME_UOM — physical characteristics used in logistics, yield, and capacity calculations.
- BASE_ITEM and SOURCE_ORG_CODE — flags identifying the item as a base item and the code of the source organization.
- DESCRIPTION — the item description text.
- USER_ATTR1 through USER_ATTR30 and USER_MEASURE1 through USER_MEASURE5 — configurable attribute and numeric measure columns extended during MOC implementation.
- CREATION_DATE, LAST_UPDATE_DATE, CREATED_BY, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATION_SYSTEM_ID, LAST_UPDATE_SYSTEM_ID — standard audit columns supporting incremental extraction and change tracking.
Common Use Cases and Queries
Typical usage centers on item master reporting, MOC dimension enrichment, and reconciliation between MOC and EBS. Because the table is the item dimension, joins to MOC fact data are performed on ITEM_PK, while joins to EBS masters use EBS_ITEM_ID and EBS_ORGANIZATION_ID.
Reconciling MOC items to EBS inventory items:
- SELECT d.ITEM_PK, d.ITEM_NAME, d.EBS_ITEM_ID, m.SEGMENT1, m.DESCRIPTION FROM MTH.MTH_ITEMS_D d JOIN MTL_SYSTEM_ITEMS_B m ON m.INVENTORY_ITEM_ID = d.EBS_ITEM_ID AND m.ORGANIZATION_ID = d.EBS_ORGANIZATION_ID;
Resolving an item by its business key or surrogate key:
- SELECT * FROM MTH.MTH_ITEMS_D WHERE ITEM_NAME = :item_name AND ITEM_PK_KEY = :source_key;
- SELECT * FROM MTH.MTH_ITEMS_D WHERE ITEM_PK = :item_pk;
Incremental extraction for downstream reporting, using the audit columns and system identifiers, allows efficient delta loads. Filtering by PLANT_FK_KEY or SYSTEM_FK_KEY supports plant-scoped or source-system-scoped reporting, which is common when MOC is deployed across multiple facilities.
Related Objects
The metadata documents no enforced foreign keys, so related objects are identified through shared business identifiers and MOC application wiring:
- MTL_SYSTEM_ITEMS_B — joined on INVENTORY_ITEM_ID = EBS_ITEM_ID and ORGANIZATION_ID = EBS_ORGANIZATION_ID.
- MTL_ITEM_REVISIONS_B — item revision detail, joined via EBS_ITEM_ID.
- MTL_UNITS_OF_MEASURE — resolves PRIMARY_UOM, SECONDARY_UOM, WEIGHT_UOM, and VOLUME_UOM codes.
- MTH plant and system dimension tables — referenced through PLANT_FK_KEY and SYSTEM_FK_KEY.
- MOC fact and staging tables — consume ITEM_PK as the item dimension key in shop-floor and execution reporting.
- MTL_ITEM_CATEGORIES / MTL_CATEGORY_SETS_B — category assignment context, reachable via EBS_ITEM_ID.
Because referential integrity is managed by the application rather than the database, any custom query joining this table should validate key assumptions against the MOC data load and refresh procedures before relying on them for production reporting.
-
Table: MTH_ITEMS_D
12.1.1
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_D, object_name:MTH_ITEMS_D, status:VALID, product: MTH - Oracle Manufacturing Operations Center , implementation_dba_data: MTH.MTH_ITEMS_D ,
-
Table: MTH_ITEMS_D
12.2.2
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_D, object_name:MTH_ITEMS_D, status:VALID, product: MTH - Oracle Manufacturing Operations Center , description: This table stores information on items and its attributes. It holds information like Item name, Item description, Base item, Primary UOM, Secondary UOM, Unit weight, Weight UOM, Unit volume and Volume UOM. , implementation_dba_data: MTH.MTH_ITEMS_D ,
-
SYNONYM: APPS.MTH_ITEMS_D
12.1.1
owner:APPS, object_type:SYNONYM, object_name:MTH_ITEMS_D, status:VALID,
-
SYNONYM: APPS.MTH_ITEMS_D
12.2.2
owner:APPS, object_type:SYNONYM, object_name:MTH_ITEMS_D, status:VALID,
-
VIEW: MTH.MTH_ITEMS_D#
12.2.2
owner:MTH, object_type:VIEW, object_name:MTH_ITEMS_D#, status:VALID,
-
Table: MTH_ITEMS_I_STG
12.2.2
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_I_STG, object_name:MTH_ITEMS_I_STG, status:VALID, product: MTH - Oracle Manufacturing Operations Center , description: Interface table for MTH_ITEMS_D , implementation_dba_data: MTH.MTH_ITEMS_I_STG ,
-
Table: MTH_ITEMS_ERR
12.2.2
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_ERR, object_name:MTH_ITEMS_ERR, status:VALID, product: MTH - Oracle Manufacturing Operations Center , description: Error table for MTH_ITEMS_D , implementation_dba_data: MTH.MTH_ITEMS_ERR ,
-
VIEW: MTH.MTH_ITEMS_D#
12.2.2
-
PACKAGE BODY: APPS.MTH_ITEM_DIMENSION_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MTH_ITEM_DIMENSION_PKG, status:VALID,
-
PACKAGE BODY: APPS.MTH_ITEM_DIMENSION_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MTH_ITEM_DIMENSION_PKG, status:VALID,
-
PACKAGE BODY: APPS.MTH_SEED_DATA_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MTH_SEED_DATA_PKG, status:VALID,
-
PACKAGE BODY: APPS.MTH_LOAD_TAG_READINGS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MTH_LOAD_TAG_READINGS_PKG, status:VALID,
-
PACKAGE BODY: APPS.MTH_PROCESS_OUTPUT_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:MTH_PROCESS_OUTPUT_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
TABLE: MTH.MTH_ITEMS_D
12.1.1
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_D, object_name:MTH_ITEMS_D, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
TABLE: MTH.MTH_ITEMS_D
12.2.2
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_D, object_name:MTH_ITEMS_D, status:VALID,
-
Lookup Type: MTH_MOC_CLEANUP_LIST
12.2.2
product: MTH - Oracle Manufacturing Operations Center , meaning: MTH_MOC_CLEANUP_LIST ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
Lookup Type: MTH_ALL_CLEANUP_LIST
12.2.2
product: MTH - Oracle Manufacturing Operations Center , meaning: MTH_ALL_CLEANUP_LIST ,
-
12.2.2 DBA Data
12.2.2
-
APPS.MTH_ITEM_DIMENSION_PKG SQL Statements
12.1.1
-
TABLE: MTH.MTH_ITEMS_ERR
12.1.1
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_ERR, object_name:MTH_ITEMS_ERR, status:VALID,
-
APPS.MTH_ITEM_DIMENSION_PKG SQL Statements
12.2.2
-
TABLE: MTH.MTH_ITEMS_I_STG
12.1.1
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_I_STG, object_name:MTH_ITEMS_I_STG, status:VALID,
-
TABLE: MTH.MTH_ITEMS_I_STG
12.2.2
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_I_STG, object_name:MTH_ITEMS_I_STG, status:VALID,
-
TABLE: MTH.MTH_ITEMS_ERR
12.2.2
owner:MTH, object_type:TABLE, fnd_design_data:MTH.MTH_ITEMS_ERR, object_name:MTH_ITEMS_ERR, status:VALID,
-
PACKAGE BODY: APPS.MTH_ITEM_DIMENSION_PKG
12.1.1
-
APPS.MTH_PROCESS_OUTPUT_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.MTH_ITEM_DIMENSION_PKG
12.2.2
-
APPS.MTH_SEED_DATA_PKG dependencies on MTH_ITEMS_D
12.2.2
-
APPS.MTH_LOAD_TAG_READINGS_PKG dependencies on MTH_ITEMS_D
12.2.2
-
APPS.MTH_ITEM_DIMENSION_PKG dependencies on MTH_ITEMS_D
12.1.1
-
APPS.MTH_PROCESS_OUTPUT_PKG dependencies on MTH_ITEMS_D
12.2.2
-
APPS.MTH_ITEM_DIMENSION_PKG dependencies on MTH_ITEMS_D
12.2.2
-
PACKAGE BODY: APPS.MTH_SEED_DATA_PKG
12.2.2
-
eTRM - MTH Tables and Views
12.1.1
-
PACKAGE BODY: APPS.MTH_PROCESS_OUTPUT_PKG
12.2.2
-
eTRM - MTH Tables and Views
12.2.2
-
APPS.MTH_LOAD_TAG_READINGS_PKG SQL Statements
12.2.2
-
APPS.MTH_LOAD_TAG_READINGS_PKG dependencies on MTH_PRODUCTION_SEGMENTS_F
12.2.2
-
APPS.MTH_ITEM_DIMENSION_PKG dependencies on MTH_ITEM_HIERARCHY
12.2.2
-
APPS.MTH_SEED_DATA_PKG SQL Statements
12.2.2
-
APPS.MTH_PROCESS_OUTPUT_PKG dependencies on MTH_SYSTEMS_SETUP
12.2.2