Search Results proxy_bid_allowed_flag
AI-generated from documented ETRM metadata — verify critical details on the linked pages.
Overview
PON_AUCTION_TEMPLATES is a core table in the Oracle Sourcing module (product code PON) of Oracle E-Business Suite, present in both release 12.1.1 and 12.2.2. It stores the template definitions from which sourcing negotiations — RFQs, RFIs, and reverse auctions — are created. A template captures the reusable configuration of a negotiation: auction type and duration, currency and rate behavior, terms and shipping data, bid visibility and ranking rules, auto-extend behavior, and the structured lists of attributes, price elements, currency rates, bidding parties, and negotiation team members that accompany each event. Because negotiation creation reads heavily from this table, it functions as the master configuration source for the entire sourcing lifecycle.
The documented ETRM metadata classifies this object, heuristically, as satellite-leaning within a Data Vault model. That is a modeling suggestion rather than a physical property: the table carries a surrogate primary key and a dense set of descriptive, mutable attributes (status, flags, terms), which is characteristic of a satellite surrounding a negotiation business key rather than a pure hub or link.
Key Information Stored
The table documents 96 columns. The most operationally significant include:
- TEMPLATE_ID — surrogate primary key, enforced by PON_AUCTION_TEMPLATES_PK and also backed by the unique index PON_AUCTION_TEMPLATE_U1, making it the effective business-key candidate for lookups.
- NAME and DESCRIPTION — the user-facing identity of the template.
- TEMPLATE_TYPE, AUCTION_TYPE, DOCTYPE_ID — classify the negotiation style (for example auction versus RFQ) and link to the document type definition.
- STATUS, STATUS_DSP, SCOPE — control whether a template is active and how widely it may be reused.
- AUCTION_DURATION and AUCTION_DURATION_UNIT — default open period for negotiations created from the template.
- CURRENCY_CODE, RATE_TYPE, RATE_DATE, RATE — currency and conversion defaults used by the negotiation.
- PAYMENT_TERMS_CODE, FREIGHT_TERMS_CODE, SHIPPING_TERMS_CODE, FOB_CODE, CARRIER_CODE — commercial terms, each with a corresponding *_NEG_FLAG indicating negotiability.
- TRADING_PARTNER_ID, TRADING_PARTNER_NAME, TRADING_PARTNER_CONTACT_ID — the invited supplier and contact, referencing HZ_PARTIES.
- CATEGORY_ID and CATEGORY_NAME — sourcing category, referencing MTL_CATEGORIES_B.
- BID_VISIBILITY_CODE, BID_RANKING, RANK_INDICATOR, SHOW_BIDDER_NOTES, SHOW_BIDDER_SCORES — control how much bidder information is disclosed.
- AUTO_EXTEND_FLAG, AUTO_EXTEND_NUMBER, AUTO_EXTEND_DURATION, MANUAL_EXTEND_FLAG, MANUAL_CLOSE_FLAG — auction extension and closure rules.
- ATTRIBUTES_EXIST, HAS_PRICE_ELEMENTS_FLAG — indicators that related attribute and price element lines exist.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical reporting and integration scenarios include listing active templates by scope, retrieving the full configuration before creating a negotiation, and auditing which templates allow auto-extension or proxy bids. For example, to list reusable active templates with their default currency and auction type:
SELECT template_id, name, auction_type, currency_code, status FROM pon.pon_auction_templates WHERE status = 'ACTIVE' ORDER BY name;SELECT t.template_id, t.name, p.party_name FROM pon.pon_auction_templates t, hz_parties p WHERE t.trading_partner_id = p.party_id;- To confirm which templates carry attribute or price element structures, filter on ATTRIBUTES_EXIST = 'Y' or HAS_PRICE_ELEMENTS_FLAG = 'Y'.
These queries support template governance reporting, negotiation setup validation, and data migration scripts that map legacy templates into PON.
Related Objects
PON_AUCTION_TEMPLATES is the parent of several child tables keyed by LIST_ID, and it references external master data through its foreign keys:
- PON_AUCTION_ATTRIBUTES — joined via ATTRIBUTE_LIST_ID, holds the template's line attributes.
- PON_PRICE_ELEMENTS — joined via LIST_ID, holds cost/price element definitions.
- PON_AUCTION_CURRENCY_RATES — joined via LIST_ID, holds multi-currency rate setups.
- PON_BIDDING_PARTIES — joined via LIST_ID, holds invited bidders.
- PON_NEG_TEAM_MEMBERS — joined via LIST_ID, holds negotiation team assignments.
- HZ_PARTIES — referenced by TRADING_PARTNER_ID and TRADING_PARTNER_CONTACT_ID.
- MTL_CATEGORIES_B — referenced by CATEGORY_ID.
- FND_CURRENCIES, GL_DAILY_CONVERSION_TYPES, FND_LANGUAGES, PON_AUC_DOCTYPES — supply currency, rate type, language, and document type defaults.
-
Table: PON_AUCTION_TEMPLATES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_TEMPLATES, object_name:PON_AUCTION_TEMPLATES, status:VALID, product: PON - Sourcing , description: Stores the template information from which negotiations can be created , implementation_dba_data: PON.PON_AUCTION_TEMPLATES ,
-
Table: PON_AUCTION_TEMPLATES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_TEMPLATES, object_name:PON_AUCTION_TEMPLATES, status:VALID, product: PON - Sourcing , description: Stores the template information from which negotiations can be created , implementation_dba_data: PON.PON_AUCTION_TEMPLATES ,
-
Table: PON_AUCTION_HEADERS_ALL
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID, product: PON - Sourcing , description: Stores the negotiations header level details. , implementation_dba_data: PON.PON_AUCTION_HEADERS_ALL ,
-
Table: PON_AUCTION_HEADERS_ALL
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID, product: PON - Sourcing , description: Stores the negotiations header level details. , implementation_dba_data: PON.PON_AUCTION_HEADERS_ALL ,
-
VIEW: PON.PON_AUCTION_TEMPLATES#
12.2.2
-
VIEW: PON.PON_AUCTION_TEMPLATES#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_AUCTION_TEMPLATES#, status:VALID,
-
VIEW: PON.PON_AUCTION_HEADERS_ALL#
12.2.2
-
VIEW: APPS.PON_AUCTION_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_V, object_name:PON_AUCTION_HEADERS_V, status:VALID,
-
TABLE: PON.PON_AUCTION_TEMPLATES
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_TEMPLATES, object_name:PON_AUCTION_TEMPLATES, status:VALID,
-
TABLE: PON.PON_AUCTION_TEMPLATES
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_TEMPLATES, object_name:PON_AUCTION_TEMPLATES, status:VALID,
-
VIEW: APPS.PON_AUCTION_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_V, object_name:PON_AUCTION_HEADERS_V, status:VALID,
-
View: PON_AUCTION_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_V, object_name:PON_AUCTION_HEADERS_V, status:VALID, product: PON - Sourcing , description: This is the MOAC sensitive view of pon_auction_headers , implementation_dba_data: APPS.PON_AUCTION_HEADERS_V ,
-
VIEW: PON.PON_AUCTION_HEADERS_ALL#
12.2.2
owner:PON, object_type:VIEW, object_name:PON_AUCTION_HEADERS_ALL#, status:VALID,
-
View: PON_AUCTION_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_V, object_name:PON_AUCTION_HEADERS_V, status:VALID, product: PON - Sourcing , description: This is the MOAC sensitive view of pon_auction_headers , implementation_dba_data: APPS.PON_AUCTION_HEADERS_V ,
-
View: PON_AUCTION_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL_V, object_name:PON_AUCTION_HEADERS_ALL_V, status:VALID, product: PON - Sourcing , description: Common View on pon_auction_headers_all , implementation_dba_data: APPS.PON_AUCTION_HEADERS_ALL_V ,
-
View: PON_AUCTION_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL_V, object_name:PON_AUCTION_HEADERS_ALL_V, status:VALID, product: PON - Sourcing , description: Common View on pon_auction_headers_all , implementation_dba_data: APPS.PON_AUCTION_HEADERS_ALL_V ,
-
VIEW: APPS.PON_AUCTION_HEADERS_ALL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL_V, object_name:PON_AUCTION_HEADERS_ALL_V, status:VALID,
-
VIEW: APPS.PON_AUCTION_HEADERS_ALL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL_V, object_name:PON_AUCTION_HEADERS_ALL_V, status:VALID,
-
TABLE: PON.PON_AUCTION_HEADERS_ALL
12.1.1
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID,
-
PACKAGE: APPS.PON_OPEN_INTERFACE_PVT
12.2.2
-
TABLE: PON.PON_AUCTION_HEADERS_ALL
12.2.2
owner:PON, object_type:TABLE, fnd_design_data:PON.PON_AUCTION_HEADERS_ALL, object_name:PON_AUCTION_HEADERS_ALL, status:VALID,
-
APPS.PON_NEGOTIATION_COPY_GRP SQL Statements
12.1.1
-
APPS.PON_OPEN_INTERFACE_PVT dependencies on PON_AUCTION_HEADERS_ALL
12.2.2
-
APPS.PON_NEGOTIATION_COPY_GRP SQL Statements
12.2.2
-
APPS.PON_OPEN_INTERFACE_PVT 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 ,
-
PACKAGE BODY: APPS.PON_NEGOTIATION_COPY_GRP
12.1.1
-
PACKAGE BODY: APPS.PON_NEGOTIATION_COPY_GRP
12.2.2
-
PACKAGE BODY: APPS.PON_OPEN_INTERFACE_PVT
12.2.2