Search Results iby_fndcpt_tx_extensions_iu_n2




Overview

IBY.IBY_FNDCPT_TX_EXTENSIONS is a transaction-attribute extension table within the Oracle Payments (IBY) module. It stores supplementary payment attributes associated with a given funds capture transaction. While the core funds capture transaction record resides in the parent transaction tables, this object carries the channel-specific, instrument-specific, and authorization-specific details that are not universal to every transaction type. In Oracle EBS 12.1.1 and 12.2.2, the table is owned by the IBY schema, resides in the APPS_TS_TX_DATA tablespace, and is documented as VALID. It is registered in FND Design Data as IBY.IBY_FNDCPT_TX_EXTENSIONS.

Heuristic Data Vault classification mined from the foreign-key structure suggests a satellite-leaning model. The table is keyed by a single surrogate identifier and hangs off multiple parent hubs and links, which is characteristic of a satellite carrying descriptive, non-key context about a transaction event rather than an independently identifiable business entity.

Key Information Stored

The table is anchored by the surrogate primary key TRXN_EXTENSION_ID, a NUMBER(15) populated by the sequence IBY_FNDCPT_TX_EXTENSIONS_S.nextval. The unique index IBY_FNDCPT_TX_EXTENSIONS_U1 enforces uniqueness on this column, which is the documented business-key candidate at the physical level. Key attributes include:

Common Use Cases and Queries

This table is most frequently joined back to the operational tables that reference it. A typical reporting query resolves the extension to its owning receipt or transaction:

  • Receipt-to-extension lookup: join AR_CASH_RECEIPTS_ALL.PAYMENT_TRXN_EXTENSION_ID = IBY_FNDCPT_TX_EXTENSIONS.TRXN_EXTENSION_ID to retrieve voice-authorization or channel detail for a receipt.
  • Channel analysis: group by PAYMENT_CHANNEL_CODE after joining IBY_FNDCPT_PMT_CHNNLS_B to profile transaction volumes by channel.
  • Instrument audit: join on INSTR_ASSIGNMENT_ID to IBY_PMT_INSTR_USES_ALL to reconcile transactions against payment instrument assignments.
  • Order traceability: the O_N1 index on ORDER_ID supports lookups correlating e-commerce order numbers to funds capture records.
  • Payer reconciliation: join EXT_PAYER_ID to IBY_EXTERNAL_PAYERS_ALL to attribute transactions to external payers.

Related Objects

The extension is referenced by numerous consuming tables via PAYMENT_TRXN_EXTENSION_ID or TRXN_EXTENSION_ID:

Upstream, the table depends on IBY_FNDCPT_PMT_CHNNLS_B, IBY_PMT_INSTR_USES_ALL, IBY_EXTERNAL_PAYERS_ALL, and FND_APPLICATION. Index IBY_FNDCPT_TX_EXTENSIONS_IU_N2 on INSTR_ASSIGNMENT_ID and IBY_FNDCPT_TX_EXTENSIONS_O_N1 on ORDER_ID support the predominant access paths.