Search Results pon_award_items_interface
Overview
The PON_AWARD_ITEMS_INTERFACE table is a critical staging object within the Oracle E-Business Suite Sourcing (PON) module, specifically for versions 12.1.1 and 12.2.2. As documented in the ETRM, its primary role is to serve as a temporary data transfer table, facilitating the bulk import of award information from external spreadsheets into the core negotiation award tables. This interface-driven approach enables users to efficiently upload and process large volumes of award decisions for multiple negotiation lines and suppliers, streamlining the award creation and finalization process outside of the standard online transaction flow.
Key Information Stored
The table's structure is designed to hold award data for specific line items within a sourcing negotiation. Its primary key, composed of AUCTION_LINE_NUMBER, BATCH_ID, and BID_NUMBER, ensures uniqueness for each award record being processed in a given upload batch. Key columns include AUCTION_LINE_NUMBER, which identifies the specific line item in the negotiation (auction), and BID_NUMBER, which identifies the supplier's bid. The BATCH_ID groups all records from a single spreadsheet upload session, allowing for collective processing and error handling. While the provided metadata does not list all columns, typical data stored includes the awarded quantity, price, and potentially the award status for each line item and bid combination being interfaced.
Common Use Cases and Queries
The predominant use case is the "Spreadsheet Awards" functionality, where a buyer downloads a template, populates award decisions offline, and uploads the file. The data lands in this interface table before being validated and transferred to permanent tables. Common queries involve monitoring the status of upload batches or troubleshooting errors. A sample SQL pattern to review interface records for a specific batch would be:
- SELECT batch_id, auction_line_number, bid_number FROM pon_award_items_interface WHERE batch_id = <BATCH_ID> ORDER BY auction_line_number;
Reporting from this table is typically transient, focused on data validation prior to submission for further processing by the appropriate concurrent program or API that consumes this interface data.
Related Objects
As per the documented foreign key relationships, PON_AWARD_ITEMS_INTERFACE has a direct dependency on the PON_BID_ITEM_PRICES table. This relationship validates that the award data being interfaced corresponds to an existing bid line. The join is performed on the composite key of AUCTION_LINE_NUMBER and BID_NUMBER, ensuring the award is mapped to the correct supplier's quoted line item. This table is the source for the PON_AWARD_ITEMS table, into which successful interface records are moved. It is primarily accessed by proprietary Sourcing APIs and concurrent programs that manage the award import lifecycle.
-
Table: PON_AWARD_ITEMS_INTERFACE
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AWARD_ITEMS_INTERFACE, object_name:PON_AWARD_ITEMS_INTERFACE, status:VALID, product: PON - Sourcing , description: Temporary table used to transfer data from spreadsheet to the negotiation award table. , implementation_dba_data: PON.PON_AWARD_ITEMS_INTERFACE ,
-
Table: PON_AWARD_ITEMS_INTERFACE
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AWARD_ITEMS_INTERFACE, object_name:PON_AWARD_ITEMS_INTERFACE, status:VALID, product: PON - Sourcing , description: Temporary table used to transfer data from spreadsheet to the negotiation award table. , implementation_dba_data: PON.PON_AWARD_ITEMS_INTERFACE ,
-
Table: PON_BID_ITEM_PRICES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_BID_ITEM_PRICES, object_name:PON_BID_ITEM_PRICES, status:VALID, product: PON - Sourcing , description: Contains information regarding the responses submitted by a supplier on a negotiation. , implementation_dba_data: PON.PON_BID_ITEM_PRICES ,
-
Table: PON_BID_ITEM_PRICES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_BID_ITEM_PRICES, object_name:PON_BID_ITEM_PRICES, status:VALID, product: PON - Sourcing , description: Contains the response details for an item in a negotiation , implementation_dba_data: PON.PON_BID_ITEM_PRICES ,