Search Results aso_sup_response_b_u1




Overview

ASO.ASO_SUP_RESPONSE_B is the base table for the Response entity used by the Sales Supplement functionality within Oracle E-Business Suite. A Response belongs to a Component and typically represents a predefined answer or selection option presented to users during the supplement capture process. In Oracle EBS 12.1.1 and 12.2.2, this table resides in the APPS_TS_TX_DATA tablespace under the ASO (Sales Orders/Order Capture) schema and carries FND Design Data registration for ASO.ASO_SUP_RESPONSE_B. Because it holds descriptive attributes that change over time alongside a stable identifier, the heuristic Data Vault classification is standalone, suggesting that this object functions primarily as a reference or hub-like entity rather than as a transactional link.

Key Information Stored

The table is defined with 29 documented columns. The most significant are listed below.

The surrogate key RESPONSE_ID is distinct from the business-key candidate represented by the composite unique index ASO_SUP_RESPONSE_B_U1 (RESPONSE_ID, ZD_EDITION_NAME).

Common Use Cases and Queries

Reporting on supplement responses typically joins this table to its component parent and to descriptive flexfield segments. A representative query retrieving responses within a security group follows:

  • SELECT r.RESPONSE_ID, r.CREATION_DATE, r.ATTRIBUTE1 FROM ASO.ASO_SUP_RESPONSE_B r WHERE r.SECURITY_GROUP_ID = :p_security_group;
  • Validating compliance with the unique index: SELECT RESPONSE_ID, ZD_EDITION_NAME FROM ASO.ASO_SUP_RESPONSE_B GROUP BY RESPONSE_ID, ZD_EDITION_NAME HAVING COUNT(*) > 1;
  • Auditing changes via WHO columns: SELECT * FROM ASO.ASO_SUP_RESPONSE_B WHERE LAST_UPDATE_DATE >= :last_run;
  • Extracting flexfield data: SELECT RESPONSE_ID, CONTEXT, ATTRIBUTE1, ATTRIBUTE2 FROM ASO.ASO_SUP_RESPONSE_B;

These patterns support order capture configuration reviews, security group segregation checks, and incremental ETL extractions.

Related Objects

The documented foreign key links ASO_SUP_RESPONSE_B.SECURITY_GROUP_ID to FND_SECURITY_GROUPS, anchoring row-level security. Supporting joins commonly involve:

Because the metadata classifies the object as standalone, referential fan-out is limited, and the primary dependency remains the security group and WHO audit references.