Search Results pon_auc_attributes_interface




Overview

The PON_AUC_ATTRIBUTES_INTERFACE table is a temporary staging table within the Oracle E-Business Suite Sourcing (PON) module. Its documented purpose is to hold attribute details that have been imported from, or exported to, Microsoft Excel during auction and sourcing event configuration. In EBS 12.1.1 and 12.2.2, this table functions as an intermediate buffer between the file-based spreadsheet interface used by sourcing managers and the application's transactional attribute structures, allowing bulk upload and download of line-level attribute definitions, response types, scoring parameters, and grouping information.

Because the table is a transient interface construct rather than a permanent business entity, the Data Vault classification mined from its foreign key structure is standalone. This suggests modeling the object as an isolated staging artifact rather than integrating it into a hub, link, or satellite pattern in a data warehouse. Its single documented foreign key—AUCTION_HEADER_ID referencing PON_AUCTION_HEADERS_ALL—anchors each interface row to a specific auction, but the table itself carries no downstream dependents.

Key Information Stored

The table is documented with 28 columns. The most significant are:

Common Use Cases and Queries

Typical scenarios include validating an Excel upload before committing it to the auction, auditing what was exported, and troubleshooting import failures. A representative query identifies attributes staged for a given auction:

  • SELECT attribute_name, datatype, response_type, mandatory_flag, value FROM pon_auc_attributes_interface WHERE auction_header_id = :auction_id ORDER BY sequence_number;
  • SELECT action, COUNT(*) FROM pon_auc_attributes_interface WHERE batch_id#1 = :batch_id GROUP BY action; — summarizes pending operations within a batch.
  • Joining to PON_AUCTION_HEADERS_ALL confirms the parent auction context for reconciliation reporting.

Because the table is temporary, rows are typically consumed by concurrent Sourcing programs and purged afterward; reporting should therefore target it only during active interface processing.

Related Objects

  • PON_AUCTION_HEADERS_ALL — parent auction table, joined via AUCTION_HEADER_ID.
  • PON_AUCTION_LINES_ALL — auction lines that interface attributes ultimately populate.
  • PON_AUC_ATTRIBUTES / attribute base tables — permanent attribute definitions receiving imported rows.
  • PON_AUC_ITEM_ATTRIBUTES — item-level attribute assignments derived from the interface.
  • PON_AUC_ATTRIBUTES_INTERFACE is written and read by the Sourcing auction attribute import/export concurrent programs, which drive the ACTION column processing.