Search Results pon_acceptances
Overview
The PON_ACCEPTANCES table is a core transactional data object within the Oracle E-Business Suite Sourcing (PON) module. It serves as the system of record for formally capturing and storing supplier acceptances of awarded lines during an online negotiation, such as a reverse auction or a request for quotation (RFQ). This table is fundamental to the sourcing award workflow, transitioning a negotiated response into a binding commitment. Its data is critical for generating purchase orders, tracking supplier performance, and maintaining a complete audit trail of the sourcing event lifecycle from solicitation through to award acceptance.
Key Information Stored
The table's primary function is to record the acceptance of a specific line item from a supplier's response. While a full column list is not provided in the excerpt, the documented foreign key relationships and primary key reveal its essential structure. The ACCEPTANCE_ID column serves as the unique primary key for each acceptance record. Each acceptance is intrinsically linked to a specific line in a specific negotiation via the composite foreign key columns AUCTION_HEADER_ID (identifying the sourcing event) and AUCTION_LINE_NUMBER (identifying the item within that event). Typical data stored would include identifiers for the accepting supplier, the accepted price and quantity, the acceptance date, and the user or interface that recorded the acceptance, providing a complete snapshot of the award agreement.
Common Use Cases and Queries
This table is central to post-award reporting and process automation. Common operational queries involve identifying all accepted lines for a given negotiation to proceed with purchase order generation, or checking the acceptance status of specific awarded lines. For reporting, it is used to analyze supplier acceptance rates and timelines. A typical SQL pattern joins PON_ACCEPTANCES to the PON_AUCTION_ITEM_PRICES_ALL table to retrieve the detailed price and item information for the accepted line.
SELECT paa.auction_header_id,
paa.auction_line_number,
paa.accepted_price,
paa.accepted_quantity,
paip.supplier_part_auxid
FROM pon_acceptances paa,
pon_auction_item_prices_all paip
WHERE paa.auction_header_id = paip.auction_header_id
AND paa.auction_line_number = paip.line_number
AND paa.auction_header_id = :p_auction_id;
Related Objects
The PON_ACCEPTANCES table has a direct and documented foreign key relationship with the PON_AUCTION_ITEM_PRICES_ALL table. This relationship is defined on the composite key of (AUCTION_HEADER_ID, AUCTION_LINE_NUMBER). PON_AUCTION_ITEM_PRICES_ALL stores all the price lines submitted by suppliers during a negotiation. Therefore, each record in PON_ACCEPTANCES points to the specific awarded price line in PON_AUCTION_ITEM_PRICES_ALL that the supplier has accepted. This table is also a likely parent to other sourcing transactional tables and is accessed by standard Oracle APIs for award processing and downstream integration with the Purchasing (PO) module for purchase order creation.
-
Table: PON_ACCEPTANCES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_ACCEPTANCES, object_name:PON_ACCEPTANCES, status:VALID, product: PON - Sourcing , description: Stores the acceptance of a respomses for an on-line negotiation of an item. , implementation_dba_data: PON.PON_ACCEPTANCES ,
-
Table: PON_ACCEPTANCES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_ACCEPTANCES, object_name:PON_ACCEPTANCES, status:VALID, product: PON - Sourcing , description: Stores the acceptance of a respomses for an on-line negotiation of an item. , implementation_dba_data: PON.PON_ACCEPTANCES ,
-
APPS.PON_AUCTION_PKG dependencies on PON_ACCEPTANCES
12.2.2
-
APPS.PON_UNSOL_AWARD_PKG dependencies on PON_ACCEPTANCES
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PON_ACCEPTANCES
12.1.1
-
APPS.PON_AWARD_PKG dependencies on PON_ACCEPTANCES
12.1.1
-
APPS.PON_AWARD_PKG dependencies on PON_ACCEPTANCES
12.2.2
-
VIEW: PON.PON_ACCEPTANCES#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_ACCEPTANCES#, status:VALID,
-
VIEW: PON.PON_ACCEPTANCES#
12.2.2
-
SYNONYM: APPS.PON_ACCEPTANCES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_ACCEPTANCES, status:VALID,
-
SYNONYM: APPS.PON_ACCEPTANCES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_ACCEPTANCES, status:VALID,
-
TABLE: PON.PON_ACCEPTANCES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_ACCEPTANCES, object_name:PON_ACCEPTANCES, status:VALID,
-
TABLE: PON.PON_ACCEPTANCES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_ACCEPTANCES, object_name:PON_ACCEPTANCES, status:VALID,
-
APPS.PON_UNSOL_AWARD_PKG SQL Statements
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.PON_UNSOL_AWARD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_UNSOL_AWARD_PKG, status:VALID,
-
Table: PON_AUCTION_ITEM_PRICES_ALL
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_ITEM_PRICES_ALL, object_name:PON_AUCTION_ITEM_PRICES_ALL, status:VALID, product: PON - Sourcing , description: Stores the negotiation item details including price. , implementation_dba_data: PON.PON_AUCTION_ITEM_PRICES_ALL ,
-
12.1.1 FND Design Data
12.1.1
-
Table: PON_AUCTION_ITEM_PRICES_ALL
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_ITEM_PRICES_ALL, object_name:PON_AUCTION_ITEM_PRICES_ALL, status:VALID, product: PON - Sourcing , description: Stores the negotiation item details including price. , implementation_dba_data: PON.PON_AUCTION_ITEM_PRICES_ALL ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PON_AWARD_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PON_AWARD_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PON_AWARD_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_AWARD_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PON_AUCTION_PKG, status:VALID,
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_AUCTION_PKG, status:VALID,
-
APPS.PON_AWARD_PKG SQL Statements
12.1.1
-
APPS.PON_UNSOL_AWARD_PKG dependencies on PON_AWARD_PKG
12.2.2
-
APPS.PON_AWARD_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PON_UNSOL_AWARD_PKG
12.2.2
-
APPS.PON_AWARD_PKG dependencies on PON_AUCTION_ITEM_PRICES_ALL
12.1.1
-
APPS.PON_AWARD_PKG dependencies on PON_AUCTION_ITEM_PRICES_ALL
12.2.2
-
PACKAGE BODY: APPS.PON_AWARD_PKG
12.1.1
-
PACKAGE BODY: APPS.PON_AWARD_PKG
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 ,
-
APPS.PON_AUCTION_PKG SQL Statements
12.1.1
-
APPS.PON_AUCTION_PKG SQL Statements
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.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.1.1
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.2.2