Search Results pon_mi_auc_rfq_v
Overview
PON_MI_AUC_RFQ_V is a reporting view owned by the APPS schema within the PON (Sourcing) product family of Oracle E-Business Suite. Its documented purpose is narrow and well defined: it supplies the data set consumed by the Buyer's Activity Summary report, restricted to accepted quotations. In EBS sourcing terminology, an accepted quotation corresponds to a bid line that has been awarded, meaning the buyer has completed evaluation and finalized the award decision for the RFQ. The view therefore exposes the closed-out, transacted portion of the sourcing lifecycle rather than the open solicitation pipeline.
The object is classified as VALID in the ETRM repository for release 12.2.2. Its name follows the standard EBS convention of a "MI" (management information) reporting view layered on transactional sourcing tables, and it is intended primarily for read-only reporting access rather than for application processing logic.
Underlying Base Objects
The view is defined over four documented base objects, all referenced through APPS synonyms: PON_AUCTION_HEADERS, PON_AUC_DOCTYPES, PON_BID_HEADERS, and PON_BID_ITEM_PRICES. These tables represent the auction or RFQ header, the document-type lookup, the supplier bid headers, and the bid line price and award details respectively.
The joins are constructed as follows: PON_AUCTION_HEADERS joins to PON_BID_HEADERS on AUCTION_HEADER_ID; PON_BID_HEADERS joins to PON_BID_ITEM_PRICES on AUCTION_HEADER_ID and BID_NUMBER; and PON_AUCTION_HEADERS joins to PON_AUC_DOCTYPES on DOCTYPE_ID. Two filter predicates complete the definition: BI.AWARD_STATUS must equal 'AWARDED', and the document type internal name must equal 'REQUEST_FOR_QUOTE'. Consequently, the view returns only RFQ-type sourcing events with awarded bid lines, excluding reverse auctions and any non-awarded or cancelled bid activity.
Key Columns
The view exposes nineteen columns covering price, quantity, identification, party, classification, and timing attributes.
- PRICE and QUANTITY — sourced from PON_BID_ITEM_PRICES as BI.PRICE and BI.AWARD_QUANTITY, representing the awarded unit price and awarded quantity.
- ITEM_DESCRIPTION — descriptive text for the sourced item line.
- AUCTION_NUMBER, AUCTION_TITLE, and AUCTION_DISPLAY_NUMBER — the auction header identifier and descriptive labels; the display number uses a CASE expression that returns the header ID for original rounds and a concatenation of original round and round number otherwise.
- BID_NUMBER — the supplier bid identifier.
- BUYER_ID / BUYER_NAME / BUYER_CONTACT_ID / BUYER_CONTACT_NAME — internal party and contact identifiers plus display names for the buying organization.
- SELLER_ID / SELLER_NAME / SELLER_CONTACT_ID / SELLER_CONTACT_NAME — the corresponding attributes for the awarded supplier.
- CATEGORY_ID and CURRENCY_CODE — purchasing category and transaction currency.
- AUCTION_OUTCOME — derived via DECODE on CONTRACT_TYPE, mapping 'BLANKET' to 'LONG' and 'SPOT' to 'SPOT', indicating whether the award produced a blanket agreement or a spot purchase.
- COMPLETED_DATE — mapped from BI.AWARD_DATE, giving the award completion timestamp used for period-based activity reporting.
Common Use Cases and Queries
The principal consumer is the Buyer's Activity Summary report, which aggregates awarded quotation activity by buyer, category, and time period. Beyond that report, the view is useful for ad hoc spend and procurement analytics that require a denormalized, award-only RFQ data set without joining the underlying four tables manually. A typical query filters on completion date to constrain a reporting period:
- SELECT buyer_name, category_id, currency_code, SUM(price * quantity) awarded_value FROM pon_mi_auc_rfq_v WHERE completed_date BETWEEN :start_date AND :end_date GROUP BY buyer_name, category_id, currency_code;
- SELECT auction_display_number, bid_number, seller_name, auction_outcome, price, quantity FROM pon_mi_auc_rfq_v WHERE buyer_id = :buyer_id;
- SELECT auction_outcome, COUNT(*) award_count FROM pon_mi_auc_rfq_v GROUP BY auction_outcome;
Because the view is filtered to AWARDED status and REQUEST_FOR_QUOTE document types, queries against it cannot be used to inspect pending, cancelled, or auction-type events; those require the underlying tables directly. Standard EBS read-only privileges on the APPS schema objects are sufficient to query it.
-
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: 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: APPS.PON_MI_RFQSUMMARY_V
12.2.2
-
VIEW: APPS.PON_MI_RFQSUMMARY_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
SYNONYM: APPS.PON_AUCTION_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_AUCTION_HEADERS, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.PON_AUCTION_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_AUCTION_HEADERS, status:VALID,
-
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: PON_MI_REPORTSUMMARY_V
12.1.1
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains summarized data for all Awarded Auctions, Committed Offers and Accepted Quotations. , implementation_dba_data: Not implemented in this database ,
-
View: PON_MI_REPORTSUMMARY_V
12.2.2
product: PON - Sourcing , description: This view is used by the Buyer's Activity Summary report. It contains summarized data for all Awarded Auctions, Committed Offers and Accepted Quotations. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.PON_AUC_DOCTYPES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_AUC_DOCTYPES, status:VALID,
-
SYNONYM: APPS.PON_AUC_DOCTYPES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_AUC_DOCTYPES, status:VALID,
-
SYNONYM: APPS.PON_BID_ITEM_PRICES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_BID_ITEM_PRICES, status:VALID,
-
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: 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,
-
SYNONYM: APPS.PON_BID_HEADERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_BID_HEADERS, 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,
-
SYNONYM: APPS.PON_BID_ITEM_PRICES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_BID_ITEM_PRICES, status:VALID,
-
SYNONYM: APPS.PON_BID_HEADERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_BID_HEADERS, 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,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
12.1.1 DBA Data
12.1.1