Search Results mth_equip_op_sum_pm_mv
Overview
MTH_EQUIP_OP_SUM_PM_MV is an APPS-owned table within the FND – Application Object Library product of Oracle E-Business Suite. Despite the _MV suffix, which in Oracle EBS nomenclature commonly denotes a materialized view, ETRM metadata classifies this object as a TABLE with a documented physical schema of 35 columns. The object appears in both 12.1.1 and 12.2.2 releases, with the ETRM physical definition recorded against 12.2.2. It functions as an equipment operations summary store, aggregating production, quality, scrap, rework, and labor-hour metrics across day, calendar month, department, customer, and product hierarchy dimensions.
The heuristic Data Vault classification mined from the foreign key structure is standalone. As a modeling suggestion, this indicates that MTH_EQUIP_OP_SUM_PM_MV behaves as an independent aggregate or summary artifact rather than a normalized hub, link, or satellite within a Data Vault model. Its single documented foreign key, from GROUPING_ID to HR_DM_TABLE_GROUPINGS, is consistent with this classification: the table references a grouping definition table but is not itself a dependent child in a broader relational chain.
Key Information Stored
The table's most significant columns fall into four functional groups:
- Time and calendar dimensions: DAY_ID, CALENDAR_MONTH_ID, TIME_DIM_KEY, and TIME_DIM_LEVEL. These provide the temporal grain for aggregation.
- Organizational and hierarchy keys: DEPT_KEY and DEPT_EFF_DATE identify the department with its effective-dated key; PRODUCT_LEVEL9_KEY identifies the product at level 9 of the product hierarchy; CUST_LEVEL9_KEY and CUST_LEVEL9_EFF_DATE identify the customer at level 9 with its effective date; EQUIP_HIER, EQUIP_HIER_KEY, and EQUIP_HIER_EFF_DATE describe the equipment hierarchy.
- Status and control fields: STATUS_CODE and GROUPING_ID. GROUPING_ID is the documented foreign key referencing HR_DM_TABLE_GROUPINGS.
- Quantitative measures: REJECTED_QTY, QTY_REWORK, QTY_SCRAP, QTY_GOOD, OUTPUT_QTY, COMPLETED_QTY, HRS_ACT_COMP_QTY, SHIFT_ACT_PROD, LOSS_BAD_QUALITY, LOSS_BAD_QUALTY_VAL, and TOTAL_COUNT. Each of these is paired with a corresponding
_COUNTcompanion column, supporting both summed value and record-count aggregation.
No explicit surrogate primary key column is documented in the metadata. The unique index I_SNAP$_MTH_EQUIP_OP_SUM_P, built with SYS_OP_MAP_NONNULL wrappers, represents the business-key candidate. It comprises DEPT_KEY, CALENDAR_MONTH_ID, PRODUCT_LEVEL9_KEY, DEPT_EFF_DATE, STATUS_CODE, CUST_LEVEL9_KEY, DAY_ID, CUST_LEVEL9_EFF_DATE, and GROUPING_ID. The SYS_OP_MAP_NONNULL function indicates the index treats null values as equal, a pattern typical of Oracle's dimension or summary tables where nulls are semantically meaningful rather than absent. Practitioners should treat this composite as the logical uniqueness constraint rather than expecting a single-column identity attribute.
Common Use Cases and Queries
This table supports manufacturing and operational analytics. Typical scenarios include equipment throughput reporting, quality loss analysis, scrap and rework trending, and department-level productivity measurement. Because measures are paired with counts, reports can present both totals and averages without recomputation.
A representative query aggregating good quantity by department and month would resemble:
SELECT dept_key, calendar_month_id,
SUM(qty_good) AS total_good,
SUM(qty_scrap) AS total_scrap,
SUM(qty_rework) AS total_rework
FROM apps.mth_equip_op_sum_pm_mv
WHERE calendar_month_id = :p_month
GROUP BY dept_key, calendar_month_id;
Filtering by GROUPING_ID allows reports to isolate specific grouping definitions registered in HR_DM_TABLE_GROUPINGS. Trend analysis over EQUIP_HIER_KEY and EQUIP_HIER_EFF_DATE supports effective-dated equipment hierarchy reporting, while PRODUCT_LEVEL9_KEY and CUST_LEVEL9_KEY enable product and customer rollups at the level-9 grain. Joins to a time dimension via TIME_DIM_KEY and TIME_DIM_LEVEL are appropriate when calendar attributes beyond DAY_ID and CALENDAR_MONTH_ID are required.
Related Objects
- HR_DM_TABLE_GROUPINGS — the only documented foreign key relationship, joined via MTH_EQUIP_OP_SUM_PM_MV.GROUPING_ID = HR_DM_TABLE_GROUPINGS.GROUPING_ID. This defines the grouping context for each summary row.
- Time dimension tables — referenced through TIME_DIM_KEY and TIME_DIM_LEVEL, supplying calendar and period attributes.
- Product hierarchy tables — represented by PRODUCT_LEVEL9_KEY, providing level-9 product attributes.
- Customer hierarchy tables — represented by CUST_LEVEL9_KEY and CUST_LEVEL9_EFF_DATE.
- Department and organization tables — represented by DEPT_KEY and DEPT_EFF_DATE.
- Equipment hierarchy definitions — represented by EQUIP_HIER, EQUIP_HIER_KEY, and EQUIP_HIER_EFF_DATE.
Because the metadata documents only one foreign key, the remaining relationships are inferred from column naming conventions. Implementers should validate join paths against the actual ETRM or data-model documentation for their specific release before building dependent reports or extractions.
-
Table: MTH_EQUIP_OP_SUM_PM_MV
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:FND.MTH_EQUIP_OP_SUM_PM_MV, object_name:MTH_EQUIP_OP_SUM_PM_MV, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.MTH_EQUIP_OP_SUM_PM_MV ,
-
Table: MTH_EQUIP_OP_SUM_PM_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.MTH_EQUIP_OP_SUM_PM_MV, object_name:MTH_EQUIP_OP_SUM_PM_MV, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.MTH_EQUIP_OP_SUM_PM_MV ,
-
MATERIALIZED VIEW: APPS.MTH_EQUIP_OP_SUM_PM_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MTH_EQUIP_OP_SUM_PM_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.MTH_EQUIP_OP_SUM_PM_MV
12.2.2
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MTH_EQUIP_OP_SUM_PM_MV, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: APPS.MTH_EQUIP_OP_SUM_DD_MV
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:FND.MTH_EQUIP_OP_SUM_DD_MV, object_name:MTH_EQUIP_OP_SUM_DD_MV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
TABLE: APPS.MTH_EQUIP_OP_SUM_PM_MV
12.2.2
owner:APPS, object_type:TABLE, fnd_design_data:FND.MTH_EQUIP_OP_SUM_PM_MV, object_name:MTH_EQUIP_OP_SUM_PM_MV, status:VALID,
-
TABLE: APPS.MTH_EQUIP_OP_SUM_PM_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.MTH_EQUIP_OP_SUM_PM_MV, object_name:MTH_EQUIP_OP_SUM_PM_MV, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TABLE: APPS.MTH_EQUIP_OP_SUM_DD_MV
12.1.1
owner:APPS, object_type:TABLE, fnd_design_data:FND.MTH_EQUIP_OP_SUM_DD_MV, object_name:MTH_EQUIP_OP_SUM_DD_MV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
MATERIALIZED VIEW: APPS.MTH_EQUIP_OP_SUM_DD_MV
12.2.2
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MTH_EQUIP_OP_SUM_DD_MV, status:VALID,
-
Lookup Type: MTH_MOC_CLEANUP_LIST
12.2.2
product: MTH - Oracle Manufacturing Operations Center , meaning: MTH_MOC_CLEANUP_LIST ,
-
MATERIALIZED VIEW: APPS.MTH_EQUIP_OP_SUM_DD_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:MTH_EQUIP_OP_SUM_DD_MV, status:VALID,
-
VIEW: APPS.MTH_EQUIP_OP_SUM_PM_MV#
12.2.2
owner:APPS, object_type:VIEW, object_name:MTH_EQUIP_OP_SUM_PM_MV#, status:VALID,
-
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.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.MTH_UTIL_PKG dependencies on MTH_RESOURCE_COST_MV
12.2.2
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.MTH_UTIL_PKG
12.2.2
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,