Search Results xtr_rollover_transactions_u1




Overview

XTR.XTR_ROLLOVER_TRANSACTIONS is a core transaction-level table in the Oracle E-Business Suite Treasury (ETRM) module, owned by the XTR schema and registered under FND Design Data as XTR.XTR_ROLLOVER_TRANSACTIONS. It stores general information about individual transactions that make up deals across the following instrument families: bonds, interest rate swaps, negotiable instruments, short term money, retail term money, and wholesale term money. Because each deal may be composed of one or more transactions, this table captures the granular, row-per-transaction detail beneath the deal header level.

Physically, the table resides in the APPS_TS_TX_DATA tablespace with PCT Free 10, and is indexed in APPS_TS_TX_IDX. The primary key XTR_ROLLOVER_TRANSACTIONS_PK is defined on (DEAL_NUMBER, TRANSACTION_NUMBER), enforced by the unique index XTR_ROLLOVER_TRANSACTIONS_U1. From a heuristic Data Vault modeling perspective, this object is classified as satellite-leaning, meaning it behaves primarily as a descriptive, keyed satellite attached to deal and counterparty hubs rather than as an independent hub or a pure link.

Key Information Stored

The table exposes 146 documented columns. The most operationally significant include:

Non-unique indexes support common access paths: _N2 (DEAL_LINKING_CODE), _N4 (START_DATE, COMPANY_CODE, CPARTY_CODE), _N5 (STATUS_CODE), _N7 (TRANS_CLOSEOUT_NO), _N8 (DEAL_TYPE, MATURITY_DATE), and _N9 (DEAL_NUMBER, STATUS_CODE, CPARTY_CODE, MATURITY_DATE).

Common Use Cases and Queries

Typical reporting scenarios include maturity ladders, exposure by counterparty, and interest accrual schedules.

  • Open transactions by maturity: SELECT deal_number, transaction_number, cparty_code, maturity_date FROM xtr_rollover_transactions WHERE status_code = 'ACTIVE' ORDER BY maturity_date;
  • Deal roll-up: join to XTR_DEALS on DEAL_NUMBER to aggregate principal across transactions.
  • Revaluation reporting: filter by LAST_REVAL_BATCH_ID to trace which transactions fell into a given XTR_BATCHES run.

Related Objects

Foreign keys and reverse dependencies identify the most significant related objects: