Search Results pmi_prod_sum
Overview
PMI_PROD_SUM is a summary table owned by the PMI schema in Oracle E-Business Suite, classified under the Process Manufacturing Intelligence (PMI) product family. Within the ETRM 12.2.2 documentation, PMI is marked Obsolete, meaning the module is no longer actively shipped or enhanced, though the underlying table and its supporting objects frequently remain VALID in existing installations. The table stores pre-aggregated production transaction data derived from OPM (Oracle Process Manufacturing) activity, rolling detailed shop-floor and inventory movements up to the organization, warehouse, item, and accounting-period grain so that reporting and analytics do not need to scan high-volume transaction tables.
The documented physical schema contains 30 columns with a single unique index, PMI_PROD_SUM_PK. Heuristic Data Vault classification mined from the foreign-key structure identifies this object as standalone, with no declared parent-child links. As a modeling suggestion, this positions PMI_PROD_SUM as neither a classic hub nor a link but rather a consolidated satellite-style aggregate: a denormalized snapshot accumulating measures (usage and yield quantities and values) keyed by a composite business key. Because the object is obsolete, it should be treated as a read-only historical or migration source rather than a target for new integration work.
Key Information Stored
The primary key, PMI_PROD_SUM_PK, is a composite business key comprising five columns: FISCAL_YEAR, ORGN_CODE, WHSE_CODE, PERIOD_ID, and ITEM_ID. No separate surrogate key column is documented; the uniqueness of a production-summary row is therefore defined entirely by the combination of fiscal year, organization, warehouse, period, and item. The most significant columns fall into four groups:
- Key and organizational identifiers: FISCAL_YEAR, ORGN_CODE, WHSE_CODE, PERIOD_ID, and ITEM_ID form the composite primary key. CO_CODE provides the company context, while ITEM_NO and ITEM_UM carry the item number and unit of measure for display and joining convenience.
- Reporting period attributes: QUARTER, PERIOD, PERIOD_NAME, QUARTER_NAME, PERIOD_IND, and PERIOD_SET_NAME describe the accounting calendar position. GL_PERIOD_YEAR, GL_FISCAL_YEAR, GL_FISCAL_YEAR_NAME, GL_PERIOD_START_DATE, and GL_PERIOD_END_DATE align the summary to the General Ledger calendar and support date-range reporting.
- Descriptive labels: WHSE_NAME and ORGN_NAME hold the human-readable warehouse and organization names, denormalized to avoid repeated lookups at query time.
- Production measures: WHSE_USAGE_QTY and WHSE_USAGE_CONV capture consumed quantity in native and converted units, with WHSE_USAGE_VALUE holding the associated value. WHSE_YIELD_QTY, WHSE_YIELD_CONV, and WHSE_YIELD_VALUE mirror this for production output. CONVERTIBLE_UOM indicates whether a conversion exists, and MISS_CONV_FACT_CNT flags records where a conversion factor was missing. LOG_END_DATE records the load boundary of the summarization run.
Common Use Cases and Queries
The principal use case is period-over-period production reporting by organization, warehouse, and item without traversing OPM transaction history. A typical aggregation query retrieves yield and usage for an organization and item across periods:
SELECT period_name, SUM(whse_yield_qty), SUM(whse_usage_qty) FROM pmi.pmi_prod_sum WHERE orgn_code = :orgn AND item_id = :item AND fiscal_year = :yr GROUP BY period_name;SELECT whse_code, SUM(whse_yield_value), SUM(whse_usage_value) FROM pmi.pmi_prod_sum WHERE period_id = :period GROUP BY whse_code;SELECT * FROM pmi.pmi_prod_sum WHERE miss_conv_fact_cnt > 0 AND fiscal_year = :yr;— used to audit conversion gaps before trusting converted quantities.
Because GL_PERIOD_START_DATE and GL_PERIOD_END_DATE are persisted, reports can filter on GL date ranges directly rather than resolving the calendar. Data-quality checks should isolate rows where CONVERTIBLE_UOM is null or MISS_CONV_FACT_CNT is non-zero, since converted measures are unreliable in those cases.
Related Objects
The supplied relationship data classifies PMI_PROD_SUM as standalone, so no explicit foreign keys are documented to parent tables. In practice, the composite key columns resolve to standard OPM and GL master data at query time rather than through enforced constraints:
- OPM organizations and warehouses: join ORGN_CODE and WHSE_CODE to the OPM organization and warehouse definition tables to obtain validated master attributes.
- Items: join ITEM_ID to the OPM item master to reconcile ITEM_NO and ITEM_UM with current definitions.
- GL calendars and periods: join PERIOD_ID or PERIOD_SET_NAME to the accounting calendar definitions to expand period attributes.
- OPM production and inventory transaction tables: the detailed source records from which these summaries are derived, useful for drill-down reconciliation.
- PMI reporting views and concurrent programs: the aggregation processes that populate LOG_END_DATE and refresh this table.
Given the Obsolete status of the PMI module, related objects should be verified as VALID in the target instance before relying on them for new development.
-
Table: PMI_PROD_SUM
12.1.1
owner:PMI, object_type:TABLE, fnd_design_data:PMI.PMI_PROD_SUM, object_name:PMI_PROD_SUM, status:VALID, product: PMI - Process Manufacturing Intelligence , description: Summary table for OPM transactions related with production , implementation_dba_data: PMI.PMI_PROD_SUM ,
-
Table: PMI_PROD_SUM
12.2.2
owner:PMI, object_type:TABLE, fnd_design_data:PMI.PMI_PROD_SUM, object_name:PMI_PROD_SUM, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: Summary table for OPM transactions related with production , implementation_dba_data: PMI.PMI_PROD_SUM ,
-
Concurrent Program: PMI_PROD_SUM
12.2.2
execution_filename: PMI_BUILD_PROD_SUM.BUILD_SUMMARY , product: PMI - Process Manufacturing Intelligence (Obsolete) , user_name: PMI Production Summary Calculation Package , description: PMI Production Summary Calculation Package , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
Concurrent Program: PMI_PROD_SUM
12.1.1
execution_filename: PMI_BUILD_PROD_SUM.BUILD_SUMMARY , product: PMI - Process Manufacturing Intelligence , user_name: PMI Production Summary Calculation Package , description: PMI Production Summary Calculation Package , argument_method: Standard , enabled: Yes , execution_method: PL/SQL Stored Procedure ,
-
APPS.PMI_BUILD_PROD_SUM SQL Statements
12.2.2
-
APPS.PMI_BUILD_PROD_SUM SQL Statements
12.1.1
-
VIEW: PMI.PMI_PROD_SUM#
12.2.2
-
VIEW: PMI.PMI_PROD_SUM#
12.2.2
owner:PMI, object_type:VIEW, object_name:PMI_PROD_SUM#, status:VALID,
-
PACKAGE BODY: APPS.PMI_SUMM_TAB_PURGE
12.2.2
-
PACKAGE BODY: APPS.PMI_SUMM_TAB_PURGE
12.1.1
-
SYNONYM: APPS.PMI_PROD_SUM
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PMI_PROD_SUM, status:VALID,
-
SYNONYM: APPS.PMI_PROD_SUM
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PMI_PROD_SUM, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.PMI_REP_TOP_10_PROD_INGRD_V
12.1.1
-
PACKAGE BODY: APPS.PMI_BUILD_PROD_SUM
12.1.1
-
PACKAGE BODY: APPS.PMI_BUILD_PROD_SUM
12.2.2
-
VIEW: APPS.PMI_REP_TOP_10_PROD_INGRD_V
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
Lookup Type: PMI_SUMMARY_TABLE_LIST
12.1.1
product: PMI - Process Manufacturing Intelligence , meaning: List of PMI Summary Tables for Purge , description: List of PMI Summary Tables for Purge ,
-
APPS.PMI_SUMM_TAB_PURGE SQL Statements
12.2.2
-
Lookup Type: PMI_SUMMARY_TABLE_LIST
12.2.2
product: PMI - Process Manufacturing Intelligence (Obsolete) , meaning: List of PMI Summary Tables for Purge , description: List of PMI Summary Tables for Purge ,
-
12.2.2 DBA Data
12.2.2
-
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
-
APPS.PMI_SUMM_TAB_PURGE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.PMI_SUMM_TAB_PURGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_SUMM_TAB_PURGE, status:VALID,
-
PACKAGE BODY: APPS.PMI_SUMM_TAB_PURGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_SUMM_TAB_PURGE, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
View: PMI_REP_TOP_10_PROD_INGRD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_REP_TOP_10_PROD_INGRD_V, object_name:PMI_REP_TOP_10_PROD_INGRD_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: This view is used for PMI Production Reports , implementation_dba_data: APPS.PMI_REP_TOP_10_PROD_INGRD_V ,
-
PACKAGE BODY: APPS.PMI_BUILD_PROD_SUM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_BUILD_PROD_SUM, status:VALID,
-
PACKAGE BODY: APPS.PMI_BUILD_PROD_SUM
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PMI_BUILD_PROD_SUM, status:VALID,
-
View: PMI_REP_TOP_10_PROD_INGRD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_REP_TOP_10_PROD_INGRD_V, object_name:PMI_REP_TOP_10_PROD_INGRD_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: This view is used for PMI Production Reports , implementation_dba_data: APPS.PMI_REP_TOP_10_PROD_INGRD_V ,
-
TABLE: PMI.PMI_PROD_SUM
12.2.2
owner:PMI, object_type:TABLE, fnd_design_data:PMI.PMI_PROD_SUM, object_name:PMI_PROD_SUM, status:VALID,
-
TABLE: PMI.PMI_PROD_SUM
12.1.1
owner:PMI, object_type:TABLE, fnd_design_data:PMI.PMI_PROD_SUM, object_name:PMI_PROD_SUM, status:VALID,
-
VIEW: APPS.PMI_REP_TOP_10_PROD_INGRD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_REP_TOP_10_PROD_INGRD_V, object_name:PMI_REP_TOP_10_PROD_INGRD_V, status:VALID,
-
VIEW: APPS.PMI_REP_TOP_10_PROD_INGRD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMI_REP_TOP_10_PROD_INGRD_V, object_name:PMI_REP_TOP_10_PROD_INGRD_V, status:VALID,
-
APPS.PMI_BUILD_PROD_SUM dependencies on PMI_PROD_SUM
12.2.2
-
APPS.PMI_SUMM_TAB_PURGE dependencies on PMI_PROD_SUM
12.1.1
-
APPS.PMI_BUILD_PROD_SUM dependencies on PMI_PROD_SUM
12.1.1
-
APPS.PMI_SUMM_TAB_PURGE dependencies on PMI_PROD_SUM
12.2.2
-
eTRM - PMI Tables and Views
12.2.2
-
eTRM - PMI Tables and Views
12.1.1
-
APPS.PMI_SUMM_TAB_PURGE dependencies on PMI_ONHAND_SALE_SUM
12.2.2
-
APPS.PMI_SUMM_TAB_PURGE dependencies on PMI_ONHAND_SALE_SUM
12.1.1