Search Results pon_offer_commitments
Overview
The PON_OFFER_COMMITMENTS table is a core data repository within the Oracle E-Business Suite Sourcing (PON) module, specifically for the negotiation functionality. It is designed to store commitment records associated with supplier offers submitted during a sourcing negotiation, such as a Request for Quotation (RFQ) or an Auction. A commitment represents a formal pledge or guarantee made by a supplier, often concerning aspects like minimum or maximum order quantities, delivery schedules, or pricing tiers, which forms a contractual component of their offer. The table's primary role is to persist these structured commitment details, enabling buyers to evaluate and compare offers not just on price but on these additional commercial terms, and to enforce them upon award and subsequent purchase order creation.
Key Information Stored
Based on the provided ETRM metadata, the central and most critical column in this table is the COMMITMENT_ID. This field serves as the unique primary key identifier for each commitment record, as defined by the primary key constraint PON_OFFER_COMMITMENTS_PK. While the full column list is not detailed in the excerpt, typical columns in such a table would logically link the commitment to its parent offer and negotiation, and define its terms. These likely include foreign key columns like BID_NUMBER and LINE_NUMBER to associate the commitment with a specific line in a supplier's offer (PON_BID_HEADERS, PON_BID_ITEM_PRICES), along with columns to store the commitment type, value, effective dates, and associated tolerances or conditions.
Common Use Cases and Queries
A primary use case is the extraction of commitment data for offer analysis and award decision support. Reports often aggregate commitments by supplier or negotiation to assess compliance with solicitation requirements. Another critical use is the downstream enforcement of commitments when creating blanket or standard purchase orders from a awarded negotiation line. A common query pattern involves joining this table to the offer and negotiation headers to analyze supplier proposals. For example, to find all commitments for a specific auction, one might use a SQL pattern such as:
- SELECT poc.* FROM PON_OFFER_COMMITMENTS poc, PON_BID_HEADERS pbh WHERE poc.BID_NUMBER = pbh.BID_NUMBER AND pbh.AUCTION_HEADER_ID = <auction_id>;
Queries frequently filter on COMMITMENT_ID for precise record retrieval during integration or data validation processes.
Related Objects
The PON_OFFER_COMMITMENTS table is intrinsically linked to other key Sourcing tables. Its most direct relationships are with the PON_BID_HEADERS and PON_BID_ITEM_PRICES tables, as each commitment is tied to a supplier's bid (offer) and typically to a specific line item within that bid. It may also relate to PON_AUCTION_HEADERS_ALL, which stores the parent negotiation. For downstream procurement processes, data from this table influences the creation of purchase orders in the PO_HEADERS_ALL and PO_LINES_ALL tables via the Sourcing award and document creation workflows. The primary key constraint PON_OFFER_COMMITMENTS_PK enforces the uniqueness of the COMMITMENT_ID column.
-
Table: PON_OFFER_COMMITMENTS
12.1.1
product: PON - Sourcing , description: Stores the commitments for an Offer , implementation_dba_data: Not implemented in this database ,
-
Table: PON_OFFER_COMMITMENTS
12.2.2
product: PON - Sourcing , description: Stores the commitments for an Offer , 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 ,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
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 ,