Search Results auction_number
Overview
The PON_MI_AUCTIONSUMMARY_V view is a reporting object owned by the APPS schema within the Oracle E-Business Suite PON (Sourcing) module. It is a supporting data source for the Awarded Bids Detail report and consolidates awarded auction activity into a single, denormalized result set. The view presents one row per auction award, capturing the outcome (spot or long), the buyer and seller parties, the winning bid reference, and the monetary amounts attributed to each side of the transaction. Notably, the data serves both Standard Purchase Orders and Blanket Purchase Agreements, so the same view supports reporting across multiple procurement document types without requiring separate queries.
From a reporting and integration perspective, PON_MI_AUCTIONSUMMARY_V acts as a stable abstraction over the raw buyer-auction base view. Rather than exposing internal sourcing tables directly, it fixes a consistent projection of columns such as AUCTION_NUMBER, AUCTION_TYPE, and the amount buckets, allowing custom reports, Oracle BI Publisher templates, and interface extracts to reference a single governed object. In Oracle EBS 12.1.1 and 12.2.2 the view remains VALID and unchanged in role, providing a durable foundation for auditing awarded sourcing activity.
Underlying Base Objects
Per the documented ETRM metadata, the view is defined over a single referenced base object: PON_MI_AUC_BUYERAUC_V, itself a view in the PON schema. The definition is a straight projection with no joins or aggregations. Its SELECT list applies a few DECODE and NVL expressions to reshape the buyer auction data:
SELLER_AMTis hard-coded to0, reflecting that this view reports the buyer-side view of the award.BUYER_SPOT_AMTreturnsPRICE * QUANTITYonly whenAUCTION_OUTCOME = 'SPOT', otherwise zero.BUYER_LONG_AMTreturnsPRICE * QUANTITYonly whenAUCTION_OUTCOME = 'LONG', otherwise zero.BUYER_AMTreturns the fullPRICE * QUANTITY, defaulting to zero where price or quantity is null.
All other columns — including AUCTION_NUMBER, BID_NUMBER, BUYER_ID, SELLER_ID, and COMPLETED_DATE — are passed through unchanged from the underlying view. Because the relationship is one-to-one, row counts and filtering behavior are inherited directly.
Key Columns
AUCTION_NUMBERandAUCTION_DISPLAY_NUMBER— the internal and user-facing identifiers for the sourcing auction; these are central to any search keyed on auction_number.AUCTION_TITLE— the descriptive name of the auction event.AUCTION_TYPE— populated with the literal'BUYER'in this view, indicating the buyer-side perspective.AUCTION_OUTCOME— distinguishes'SPOT'from'LONG'awards and drives the amount bucketing.BID_NUMBER— the winning bid reference associated with the award.BUYER_ID,BUYER_NAME,SELLER_ID,SELLER_NAME— the trading parties on the awarded transaction.CATEGORY_ID— the purchasing category of the awarded line or bid.COMPLETED_DATE— the date the auction was completed.CURRENCY_CODE— the currency in which the award amounts are expressed.SELLER_AMT,BUYER_SPOT_AMT,BUYER_LONG_AMT,BUYER_AMT— monetary measures split by perspective and outcome.
Common Use Cases and Queries
The primary use case is the Awarded Bids Detail report, but the view is equally suitable for ad hoc analysis of awarded sourcing events and reconciliation against downstream POs and BPAs. Typical queries include:
- Locating awards by auction number:
SELECT auction_number, auction_display_number, auction_title,
bid_number, buyer_amt, currency_code, completed_date
FROM apps.pon_mi_auctionsummary_v
WHERE auction_number = :p_auction_number;
- Summarizing buyer spend by auction outcome:
SELECT auction_outcome, COUNT(*) awards, SUM(buyer_amt) total_amt FROM apps.pon_mi_auctionsummary_v GROUP BY auction_outcome;
- Extracting awards within a date range for a specific seller:
SELECT auction_number, seller_name, category_id,
buyer_spot_amt, buyer_long_amt, completed_date
FROM apps.pon_mi_auctionsummary_v
WHERE seller_id = :p_seller_id
AND completed_date BETWEEN :p_from AND :p_to;
When embedding this view in custom reports, note that SELLER_AMT is always zero by design and that spot and long amounts are mutually exclusive, so BUYER_AMT equals whichever outcome-specific column is populated. Standard APPS data security and MOAC operating unit context should be applied where the underlying sourcing data requires it.
-
View: PON_MI_AUCTIONSUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUCTIONSUMMARY_V, object_name:PON_MI_AUCTIONSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used for the Awarded Bids Detail report. It contains data for both Standard Purchase Orders and Blanket Purchase Agreements. , implementation_dba_data: APPS.PON_MI_AUCTIONSUMMARY_V ,
-
View: PON_MI_AUC_BUYERAUC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_BUYERAUC_V, object_name:PON_MI_AUC_BUYERAUC_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Awarded Auctions. , implementation_dba_data: APPS.PON_MI_AUC_BUYERAUC_V ,
-
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: 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: APPS.PON_MI_RFQSUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_RFQSUMMARY_V, object_name:PON_MI_RFQSUMMARY_V, status:VALID,
-
View: PON_MI_AUCTIONSUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUCTIONSUMMARY_V, object_name:PON_MI_AUCTIONSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used for the Awarded Bids Detail report. It contains data for both Standard Purchase Orders and Blanket Purchase Agreements. , implementation_dba_data: APPS.PON_MI_AUCTIONSUMMARY_V ,
-
VIEW: APPS.PON_MI_RFQSUMMARY_V
12.1.1
-
VIEW: APPS.PON_MI_AUC_SAVINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_SAVINGS_V, object_name:PON_MI_AUC_SAVINGS_V, status:VALID,
-
VIEW: APPS.PON_MI_AUCTIONSUMMARY_V
12.1.1
-
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: APPS.PON_MI_RFQSUMMARY_V
12.2.2
-
View: PON_MI_RFQSUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_RFQSUMMARY_V, object_name:PON_MI_RFQSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used by the Accepted Quotations Detail report. It contains summarized data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_RFQSUMMARY_V ,
-
View: PON_MI_RFQSUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_RFQSUMMARY_V, object_name:PON_MI_RFQSUMMARY_V, status:VALID, product: PON - Sourcing , description: This view is used by the Accepted Quotations Detail report. It contains summarized data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_RFQSUMMARY_V ,
-
VIEW: APPS.PON_MI_AUCTIONSUMMARY_V
12.2.2
-
View: PON_MI_AUC_RFQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_RFQ_V, object_name:PON_MI_AUC_RFQ_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_AUC_RFQ_V ,
-
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_SAVINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_SAVINGS_V, object_name:PON_MI_AUC_SAVINGS_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer Auction Savings report. It contains data for all Awarded Auctions summarized by Category. , implementation_dba_data: APPS.PON_MI_AUC_SAVINGS_V ,
-
VIEW: APPS.PON_AUC_NOTIF_DELIV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUC_NOTIF_DELIV_V, object_name:PON_AUC_NOTIF_DELIV_V, status:VALID,
-
View: PON_MI_AUC_RFQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_RFQ_V, object_name:PON_MI_AUC_RFQ_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Accepted Quotations. , implementation_dba_data: APPS.PON_MI_AUC_RFQ_V ,
-
VIEW: APPS.PON_MI_AUC_BUYERAUC_V
12.1.1
-
VIEW: APPS.PON_MI_AUC_BUYERAUC_V
12.2.2
-
View: PON_MI_AUC_BUYERAUC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_BUYERAUC_V, object_name:PON_MI_AUC_BUYERAUC_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains data for all Awarded Auctions. , implementation_dba_data: APPS.PON_MI_AUC_BUYERAUC_V ,
-
VIEW: APPS.PON_MI_AUC_RFQ_V
12.2.2
-
View: PON_MI_AUC_SAVINGS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_SAVINGS_V, object_name:PON_MI_AUC_SAVINGS_V, status:VALID, product: PON - Sourcing , description: This view is used by the Buyer Auction Savings report. It contains data for all Awarded Auctions summarized by Category. , implementation_dba_data: APPS.PON_MI_AUC_SAVINGS_V ,
-
VIEW: APPS.PON_MI_AUC_RFQ_V
12.1.1
-
VIEW: APPS.PON_MI_RFQSUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_RFQSUMMARY_V, object_name:PON_MI_RFQSUMMARY_V, status:VALID,
-
VIEW: APPS.PON_AUC_NOTIF_DELIV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUC_NOTIF_DELIV_V, object_name:PON_AUC_NOTIF_DELIV_V, status:VALID,
-
VIEW: APPS.PON_MI_AUC_RFQ_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_RFQ_V, object_name:PON_MI_AUC_RFQ_V, status:VALID,
-
VIEW: APPS.PON_MI_AUCTIONSUMMARY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUCTIONSUMMARY_V, object_name:PON_MI_AUCTIONSUMMARY_V, status:VALID,
-
VIEW: APPS.PON_MI_AUC_RFQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_RFQ_V, object_name:PON_MI_AUC_RFQ_V, status:VALID,
-
VIEW: APPS.PON_MI_AUC_BUYERAUC_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_BUYERAUC_V, object_name:PON_MI_AUC_BUYERAUC_V, status:VALID,
-
VIEW: APPS.PON_MI_AUCTIONSUMMARY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUCTIONSUMMARY_V, object_name:PON_MI_AUCTIONSUMMARY_V, status:VALID,
-
VIEW: APPS.PON_MI_AUC_SAVINGS_V
12.1.1
-
VIEW: APPS.PON_MI_AUC_SAVINGS_V
12.2.2
-
VIEW: APPS.PON_MI_AUC_SAVINGS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_SAVINGS_V, object_name:PON_MI_AUC_SAVINGS_V, status:VALID,
-
View: PON_AUC_NOTIF_DELIV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUC_NOTIF_DELIV_V, object_name:PON_AUC_NOTIF_DELIV_V, status:VALID, product: PON - Sourcing , description: This is the view used by contract team about active bids and the associated auction information. , implementation_dba_data: APPS.PON_AUC_NOTIF_DELIV_V ,
-
VIEW: APPS.PON_MI_AUC_BUYERAUC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_MI_AUC_BUYERAUC_V, object_name:PON_MI_AUC_BUYERAUC_V, status:VALID,
-
View: PON_AUC_NOTIF_DELIV_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUC_NOTIF_DELIV_V, object_name:PON_AUC_NOTIF_DELIV_V, status:VALID, product: PON - Sourcing , description: This is the view used by contract team about active bids and the associated auction information. , implementation_dba_data: APPS.PON_AUC_NOTIF_DELIV_V ,
-
APPS.PON_AUCTION_PKG dependencies on STANDARD
12.1.1
-
APPS.PON_AUCTION_PKG dependencies on STANDARD
12.2.2
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.1.1
-
APPS.PON_NEGOTIATION_COPY_GRP dependencies on FND_MESSAGE
12.1.1
-
APPS.PON_NEGOTIATION_COPY_GRP dependencies on FND_MESSAGE
12.2.2
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on WF_ENGINE
12.1.1
-
eTRM - PON Tables and Views
12.1.1
description: Holds the debug statements for workflow processes ,
-
eTRM - PON Tables and Views
12.2.2
description: Holds the debug statements for workflow processes ,
-
APPS.PON_AUCTION_PKG dependencies on WF_ENGINE
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PON_AUCTION_HEADERS_ALL
12.1.1
-
PACKAGE BODY: APPS.PON_NEGOTIATION_COPY_GRP
12.1.1