Search Results pon_auction_headers_all_v
Overview
PON_AUCTION_HEADERS_ALL_V is an APPS-owned database view in the PON (Sourcing) module of Oracle E-Business Suite, valid in releases 12.1.1 and 12.2.2. It is a common view defined over the PON_AUCTION_HEADERS_ALL base table, exposing header-level information for sourcing auctions, including negotiation status, award status, bid schedules, pricing controls, and sealed-auction tracking attributes. Because it presents auction header data in a single denormalized row per negotiation, the view serves as a primary reporting and integration surface for sourcing professionals, BI Publisher reports, OBIEE extracts, and custom PL/SQL that must read auction metadata without joining the raw base table directly. A distinguishing characteristic of this view is that it does not simply project the base columns; it applies a decode to compute a dynamic close bidding date, and it resolves descriptive flexfield, lookup, and party information through the referenced companion objects. This makes the view the recommended access point where a business-meaningful close time and descriptive values are required.
Underlying Base Objects
The documented reference tree for the view includes PON_AUCTION_HEADERS_ALL, HR_ALL_ORGANIZATION_UNITS_TL, HZ_PARTIES, FND_LOOKUP_VALUES, and PON_LOCALE_PKG, all accessed through APPS synonyms. PON_AUCTION_HEADERS_ALL is the core base table supplying nearly all projected columns. HR_ALL_ORGANIZATION_UNITS_TL resolves the operating unit or organization description associated with the auction, typically exposed through the trading partner or ship-to context. HZ_PARTIES supplies trading partner (supplier) party details. FND_LOOKUP_VALUES resolves coded values such as auction status, award status, bid visibility, bid list type, and freight terms into their displayed meanings; the STATUS_NAME and AWARD_STATUS_NAME columns in the projection are populated from this source. PON_LOCALE_PKG is a PL/SQL package invoked for locale-sensitive formatting and territory or language handling, ensuring the view returns values consistent with the session locale rather than raw stored codes.
Key Columns
The view exposes the full auction header column set. Identity and descriptive columns include AUCTION_HEADER_ID (the primary key and the join anchor to lines, bidders, and awards), AUCTION_TITLE, AUCTION_TYPE, and CONTRACT_TYPE. Status columns include AUCTION_STATUS and AUCTION_STATUS_NAME plus AWARD_STATUS and AWARD_STATUS_NAME, which together drive dashboard filtering. Schedule columns include OPEN_BIDDING_DATE, ORIGINAL_CLOSE_BIDDING_DATE, VIEW_BY_DATE, AWARD_BY_DATE, PUBLISH_DATE, CLOSE_DATE, and CANCEL_DATE, along with TIME_ZONE. Notably, CLOSE_BIDDING_DATE is computed: when IS_PAUSED is 'Y', the view returns SYSDATE plus the remaining interval between CLOSE_BIDDING_DATE and LAST_PAUSE_DATE; otherwise it returns the stored close date. Trading partner columns include TRADING_PARTNER_ID, TRADING_PARTNER_NAME, TRADING_PARTNER_NAME_UPPER, and TRADING_PARTNER_CONTACT_NAME. Bidding control columns include BID_VISIBILITY_CODE, BID_SCOPE_CODE, BID_FREQUENCY_CODE, AUTO_EXTEND_FLAG, AUTO_EXTEND_NUMBER, AUTO_EXTEND_DURATION, MIN_BID_DECREMENT, MIN_BID_INCREMENT, MIN_BID_CHANGE_TYPE, NUMBER_OF_BIDS, NUMBER_PRICE_DECIMALS, PROXY_BID_ALLOWED_FLAG, ALLOW_OTHER_BID_CURRENCY_FLAG, and FULL_QUANTITY_BID_CODE. Sealed-auction tracking is supported by SEALED_AUCTION_STATUS, SEALED_ACTUAL_UNLOCK_DATE, SEALED_ACTUAL_UNSEAL_DATE, SEALED_UNLOCK_TP_CONTACT_ID, and SEALED_UNSEAL_TP_CONTACT_ID. Workflow and audit columns include WF_ITEM_KEY, WF_ROLE_NAME, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, and LAST_UPDATED_BY.
Common Use Cases and Queries
Typical uses include open-auction dashboards, supplier participation reports, award-cycle aging analysis, and integration extracts that feed external sourcing portals. Because CLOSE_BIDDING_DATE is dynamically computed for paused auctions, any report on remaining bid time should read this view rather than the base table. The STATUS_NAME columns eliminate the need to decode lookups manually.
- List active auctions with their effective close time:
SELECT auction_header_id, auction_title, auction_status_name, close_bidding_date FROM apps.pon_auction_headers_all_v WHERE auction_status IN ('ACTIVE','PUBLISHED'); - Award-cycle aging by trading partner:
SELECT trading_partner_name, auction_title, award_status_name, award_by_date FROM apps.pon_auction_headers_all_v WHERE award_status = 'PENDING' ORDER BY award_by_date; - Detect paused or auto-extended negotiations:
SELECT auction_header_id, auction_title, auto_extend_flag, number_of_extensions FROM apps.pon_auction_headers_all_v WHERE auto_extend_flag = 'Y'; - Sealed-auction monitoring:
SELECT auction_header_id, sealed_auction_status, sealed_actual_unseal_date FROM apps.pon_auction_headers_all_v WHERE sealed_auction_status IS NOT NULL;
Joins to PON_AUCTION_HEADERS_ALL on AUCTION_HEADER_ID, and to auction lines and bidder tables on the same key, support detail-level drill-down. As with all APPS views, queries should qualify the APPS schema and respect operating unit security where the underlying table is org-striped.
-
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: 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: APPS.PO_CLMREQ_LINE_SOL_REFS_V
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.PO_VERIFY_VENDOR_ELIGIBILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PO_VERIFY_VENDOR_ELIGIBILITY, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE: APPS.PON_LOCALE_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PON_LOCALE_PKG, status:VALID,
-
PACKAGE: APPS.PON_LOCALE_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PON_LOCALE_PKG, status:VALID,
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PON_AUCTION_PKG, status:VALID,
-
VIEW: APPS.PO_CLMREQ_LINE_SOL_REFS_V
12.2.2
owner:APPS, object_type:VIEW, object_name:PO_CLMREQ_LINE_SOL_REFS_V, status:VALID,
-
PACKAGE BODY: APPS.PON_AUCTION_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PON_AUCTION_PKG, status:VALID,
-
SYNONYM: APPS.PON_AUCTION_HEADERS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PON_AUCTION_HEADERS_ALL, status:VALID,
-
SYNONYM: APPS.PON_AUCTION_HEADERS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PON_AUCTION_HEADERS_ALL, status:VALID,
-
APPS.PO_VERIFY_VENDOR_ELIGIBILITY SQL Statements
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PON_AUCTION_HEADERS_ALL_V
12.1.1
-
APPS.PON_AUCTION_PKG SQL Statements
12.1.1
-
APPS.PON_AUCTION_PKG dependencies on PON_AUCTION_HEADERS_ALL_V
12.2.2
-
APPS.PO_VERIFY_VENDOR_ELIGIBILITY dependencies on PON_AUCTION_HEADERS_ALL_V
12.2.2
-
APPS.PON_AUCTION_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
PACKAGE BODY: APPS.PO_VERIFY_VENDOR_ELIGIBILITY
12.2.2
-
PACKAGE: APPS.PON_AUCTION_PKG
12.1.1
-
APPS.PON_AUCTION_PKG dependencies on PON_AUCTION_HEADERS_ALL
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PON_AUCTION_HEADERS_ALL
12.1.1
-
APPS.PO_VERIFY_VENDOR_ELIGIBILITY dependencies on PON_AUCTION_HEADERS_ALL
12.2.2
-
PACKAGE: APPS.PON_AUCTION_PKG
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on FND_LOOKUPS
12.1.1
-
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,
-
APPS.PON_AUCTION_PKG dependencies on PO_ALL_DOC_STYLE_LINES
12.1.1
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, status:VALID,
-
APPS.PON_AUCTION_PKG dependencies on PO_ALL_DOC_STYLE_LINES
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on FND_LOOKUPS
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PO_STYLE_ENABLED_PAY_ITEMS
12.1.1
-
SYNONYM: APPS.FND_LOOKUP_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_LOOKUP_VALUES, status:VALID,
-
APPS.PON_AUCTION_PKG dependencies on PO_DOC_STYLE_HEADERS
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PO_STYLE_ENABLED_PAY_ITEMS
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PO_LOOKUP_CODES
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PO_DOC_STYLE_HEADERS
12.1.1
-
APPS.PON_AUCTION_PKG dependencies on PO_LOOKUP_CODES
12.1.1
-
APPS.PO_VERIFY_VENDOR_ELIGIBILITY dependencies on PON_BID_HEADERS
12.2.2
-
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,
-
APPS.PO_VERIFY_VENDOR_ELIGIBILITY dependencies on PO_VENDORS
12.2.2
-
APPS.PON_AUCTION_PKG dependencies on PON_AUCTION_HEADERS_ALL
12.1.1
-
APPS.PON_AUCTION_PKG dependencies on PON_AUCTION_HEADERS_ALL
12.2.2
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, 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 ,