Search Results commitment_number
Overview
PON_MI_OFFERSUMMARY_V is a reporting view within the Oracle E-Business Suite Sourcing (PON) module. Its documented purpose is to support the Committed Offers Detail report, supplying summarized data for all committed offers generated through the Oracle Sourcing auction and negotiation process. The view consolidates buyer-side commitment information for offers that have been committed in a sourcing event, exposing a normalized result set that the reporting layer consumes directly rather than assembling the data from multiple underlying tables at runtime.
In the context of Oracle EBS 12.1.1 and 12.2.2, the view functions as a read-only reporting interface. It is not a transactional object; no DML is performed against it. Its name follows the PON_MI_* convention, where "MI" designates management information or reporting-oriented database objects in Sourcing. The view standardizes the presentation of committed offer amounts so that the Committed Offers Detail report can render buyer commitments consistently across auctions and negotiation events.
Underlying Base Objects
According to the documented view text, PON_MI_OFFERSUMMARY_V is defined as a single SELECT statement over one base object: PON_MI_AUC_OFFERTOBUY_V. No additional tables, joins, or inline views appear in the exposed definition, though the ETRM metadata notes that referenced base objects were not documented at the physical table level. PON_MI_AUC_OFFERTOBUY_V is therefore the immediate parent view, and PON_MI_OFFERSUMMARY_V inherits its sourcing offer data and re-labels it for the buyer commitment summary context.
The definition performs limited transformation. It injects a literal for the seller amount, computes the buyer amount from PRICE multiplied by QUANTITY, appends a literal OFFER_TYPE of 'BUYER', and projects a defined column list from the parent view. This indicates that the parent view supplies auction, party, category, date, and currency context, while PON_MI_OFFERSUMMARY_V narrows the presentation to buyer commitments and derives the summarized monetary value.
Key Columns
- COMMITMENT_NUMBER — The commitment identifier associated with the offered line. This is the column most directly relevant to commitment_number searches and links the report output back to the originating sourcing commitment record.
- BUYER_AMT — The committed buyer value, computed as NVL(PRICE*QUANTITY, 0). This is the primary financial measure surfaced by the view.
- SELLER_AMT — Hard-coded to 0, reflecting that this view summarizes buyer-side commitments only.
- OFFER_TYPE — Always 'BUYER' in this view, distinguishing the commitment orientation of each row.
- AUCTION_NUMBER / AUCTION_TITLE — Identify the sourcing event to which the commitment belongs.
- BUYER_ID / BUYER_NAME — The buying party responsible for the commitment.
- SELLER_ID / SELLER_NAME — The supplier party participating in the event.
- CATEGORY_ID — The purchasing category assigned to the offer.
- COMPLETED_DATE — The date the sourcing event or commitment was completed.
- CURRENCY_CODE — Currency in which the amounts are expressed.
Common Use Cases and Queries
Because the Committed Offers Detail report depends on this view, the principal use case is report data retrieval and downstream extraction. Analysts and developers frequently query it to reconcile commitment numbers against sourcing events, to aggregate buyer commitment values by category or currency, and to extract committed offer detail for external reporting or integration.
A representative query retrieving commitment-level detail is:
SELECT commitment_number, auction_number, auction_title, buyer_name, seller_name, category_id, buyer_amt, currency_code, completed_date FROM pon_mi_offersummary_v WHERE completed_date >= :start_date AND completed_date < :end_date ORDER BY commitment_number;
To summarize committed buyer value by category and currency:
SELECT category_id, currency_code, SUM(buyer_amt) total_committed FROM pon_mi_offersummary_v GROUP BY category_id, currency_code ORDER BY category_id;
To trace a specific commitment number:
SELECT * FROM pon_mi_offersummary_v WHERE commitment_number = :commitment_number;
As with all PON_MI_* views, results should be treated as read-only reporting output; any reconciliation back to transactional sourcing data must be performed against the underlying base tables.
-
View: PON_MI_OFFERSUMMARY_V
12.2.2
product: PON - Sourcing , description: This view is used by the Committed Offers Detail report. It contains summarized data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
View: PON_MI_OFFERSUMMARY_V
12.1.1
product: PON - Sourcing , description: This view is used by the Committed Offers Detail report. It contains summarized data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
View: PON_MI_AUC_OFFERTOBUY_V
12.1.1
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
View: PON_MI_AUC_OFFERTOBUY_V
12.2.2
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Committed Offers. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.GMS_STATUS_COMMITMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID,
-
VIEW: APPS.GMS_STATUS_COMMITMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID,
-
VIEW: APPS.PABV_COMMITMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_COMMITMENTS, object_name:PABV_COMMITMENTS, status:VALID,
-
VIEW: APPS.PABV_COMMITMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_COMMITMENTS, object_name:PABV_COMMITMENTS, status:VALID,
-
VIEW: APPS.PAFV_COMMITMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_COMMITMENTS, object_name:PAFV_COMMITMENTS, status:VALID,
-
VIEW: APPS.PAFV_COMMITMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_COMMITMENTS, object_name:PAFV_COMMITMENTS, status:VALID,
-
View: GMS_STATUS_COMMITMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_COMMITMENTS_V ,
-
View: GMS_STATUS_COMMITMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_STATUS_COMMITMENTS_V, object_name:GMS_STATUS_COMMITMENTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_STATUS_COMMITMENTS_V ,
-
View: PABV_COMMITMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_COMMITMENTS, object_name:PABV_COMMITMENTS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_COMMITMENTS ,
-
View: FVFV_STATUS_OBLIGATIONS
12.1.1
product: FV - Federal Financials , implementation_dba_data: Not implemented in this database ,
-
View: PABV_COMMITMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_COMMITMENTS, object_name:PABV_COMMITMENTS, status:VALID, product: PA - Projects , description: - Retrofitted , implementation_dba_data: APPS.PABV_COMMITMENTS ,
-
View: FVFV_STATUS_OBLIGATIONS
12.2.2
product: FV - Federal Financials , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_COMMITMENTS_OBSOLETE
12.1.1
product: PA - Projects , description: Business view to show commitments for a project. , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_COMMITMENTS_OBSOLETE
12.2.2
product: PA - Projects , description: Business view to show commitments for a project. , implementation_dba_data: Not implemented in this database ,
-
View: PAFV_COMMITMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_COMMITMENTS, object_name:PAFV_COMMITMENTS, status:VALID, product: PA - Projects , description: Business view to show commitments for a project. Business view to show commitments for a project. , implementation_dba_data: APPS.PAFV_COMMITMENTS ,
-
VIEW: APPS.PJM_PROJECT_COMMIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_COMMIT_V, object_name:PJM_PROJECT_COMMIT_V, status:VALID,
-
View: PAFV_COMMITMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PAFV_COMMITMENTS, object_name:PAFV_COMMITMENTS, status:VALID, product: PA - Projects , description: Business view to show commitments for a project. Business view to show commitments for a project. , implementation_dba_data: APPS.PAFV_COMMITMENTS ,
-
VIEW: APPS.PJM_PROJECT_COMMIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_COMMIT_V, object_name:PJM_PROJECT_COMMIT_V, status:VALID,
-
View: PJM_PROJECT_COMMIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_COMMIT_V, object_name:PJM_PROJECT_COMMIT_V, status:VALID, product: PJM - Project Manufacturing , description: Project level commitments for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_COMMIT_V ,
-
View: PJM_PROJECT_COMMIT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PJM.PJM_PROJECT_COMMIT_V, object_name:PJM_PROJECT_COMMIT_V, status:VALID, product: PJM - Project Manufacturing , description: Project level commitments for the Web Inquiry. , implementation_dba_data: APPS.PJM_PROJECT_COMMIT_V ,
-
View: OEFV_SALES_ORDER_LINES
12.1.1
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: OEFV_SALES_ORDER_LINES
12.2.2
product: OE - Order Entry , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
APPS.GMS_WF_PKG SQL Statements
12.1.1
-
APPS.GMS_WF_PKG SQL Statements
12.2.2
-
APPS.OTA_EVT_BUS dependencies on FND_DATE
12.2.2
-
APPS.OTA_TDB_BUS2 dependencies on FND_DATE
12.2.2
-
APPS.OTA_TDB_BUS2 dependencies on FND_DATE
12.1.1
-
APPS.OTA_EVT_BUS dependencies on FND_DATE
12.1.1
-
PACKAGE BODY: APPS.OTA_TDB_BUS2
12.2.2
-
PACKAGE BODY: APPS.OTA_TDB_BUS2
12.1.1
-
APPS.OTA_TDB_BUS2 dependencies on FND_MESSAGE
12.2.2
-
APPS.OTA_TDB_BUS2 dependencies on FND_MESSAGE
12.1.1
-
APPS.OTA_EVT_BUS dependencies on FND_MESSAGE
12.2.2
-
APPS.OTA_EVT_BUS dependencies on FND_MESSAGE
12.1.1
-
APPS.OTA_TDB_BUS2 dependencies on HR_UTILITY
12.2.2
-
APPS.OTA_TDB_BUS2 dependencies on HR_UTILITY
12.1.1
-
PACKAGE BODY: APPS.GMS_WF_PKG
12.1.1
-
PACKAGE BODY: APPS.OTA_EVT_BUS
12.2.2
-
PACKAGE BODY: APPS.GMS_WF_PKG
12.2.2
-
PACKAGE BODY: APPS.OTA_EVT_BUS
12.1.1
-
eTRM - PJM Tables and Views
12.2.2
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - PJM Tables and Views
12.1.1
description: Change History of Serial Number - Model/Unit Number Associations ,
-
eTRM - GMS Tables and Views
12.1.1
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - GMS Tables and Views
12.2.2
description: Versions of award and budget workflows. There can be many workflows for an award or budget. ,
-
eTRM - PA Tables and Views
12.1.1
-
eTRM - PA Tables and Views
12.2.2