Search Results xtr_rollover_transactions
Overview
XTR_ROLLOVER_TRANSACTIONS is a Treasury (XTR) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores transaction-level information for rollover deals across a range of Treasury instruments. The documented scope covers bond deals, interest rate swaps, negotiable instruments, short term money, retail term money, and wholesale term money. Because a single Treasury deal can span multiple rollover transactions, this table functions as the transactional child of the deal header, capturing the amounts, rates, accruals, taxes, and settlement attributes that apply to each individual rollover event.
Within the XTR schema, the table is a high-volume transactional object rather than a reference or setup entity. Each row carries the business context of one rollover transaction associated with a parent deal, including principal and interest movements, brokerage and tax calculations, revaluation batch references, and bank account usage identifiers. Deals with many rollovers will produce multiple rows sharing the same DEAL_NUMBER but distinguished by TRANSACTION_NUMBER. This makes the table a central repository for rollover lifecycle tracking, interest accrual, and revaluation processing.
From a dimensional modeling perspective, the FK topology suggests a satellite-leaning classification. The composite primary key (DEAL_NUMBER, TRANSACTION_NUMBER) identifies a transaction uniquely and hangs off the XTR_DEALS parent, consistent with a satellite attached to a deal hub. The presence of multiple revaluation batch IDs and account-use references reinforces this transactional, history-oriented character, though the classification is heuristic and should be validated against the business key definition during any data vault exercise.
Key Information Stored
The primary key, XTR_ROLLOVER_TRANSACTIONS_PK, is composed of DEAL_NUMBER and TRANSACTION_NUMBER. A unique index, XTR_ROLLOVER_TRANSACTIONS_U1, covers the same two columns, confirming that the composite pair is the effective business key as well as the surrogate identifier for the row.
- DEAL_NUMBER — Foreign key to the parent deal in XTR_DEALS; the essential linkage for aggregating all transactions belonging to one Treasury deal.
- TRANSACTION_NUMBER — Sequence identifying each rollover transaction within the deal.
- COMPANY_CODE, CPARTY_CODE, LIMIT_CODE — Counterparty and limit context; these columns also participate in a FK relationship to XTR_COUNTERPARTY_LIMITS for limit checking.
- CURRENCY — Transaction currency, referencing XTR_MASTER_CURRENCIES.
- DEAL_TYPE, DEAL_SUBTYPE, PRODUCT_TYPE, SECURITY_TYPE — Instrument classification, including the bond, swap, negotiable instrument, and term-money deal types described in the table documentation.
- START_DATE, MATURITY_DATE, DEAL_DATE — Core lifecycle dates for the transaction.
- PRINCIPAL_ACCT_USE_ID, ACCUM_INT_ACCT_USE_ID, BAL_OS_ACCT_USE_ID — Bank account usage references joined to CE_BANK_ACCT_USES_ALL for principal, accumulated interest, and balance-outstanding postings.
- INTEREST, INTEREST_RATE, INTEREST_FREQ, YEAR_BASIS, YEAR_CALC_TYPE — Interest calculation attributes.
- BALANCE_OUT, BALANCE_OUT_BF, ACCUM_INTEREST, ACCUM_INTEREST_BF — Balance and accrued interest amounts, with HCE counterparts for reporting currency.
- FIRST_REVAL_BATCH_ID, LAST_REVAL_BATCH_ID — References to XTR_BATCHES that mark the first and most recent revaluation processes applied to the transaction.
- STATUS_CODE, ACTION_STATUS, AUDIT_INDICATOR, DUAL_AUTHORISATION_BY, DUAL_AUTHORISATION_ON — Status and audit control fields.
Common Use Cases and Queries
Typical reporting scenarios include retrieving all rollover transactions for a given deal, tracing revaluation coverage, and reconciling interest accruals to the general ledger. A representative query joins the transaction to its parent deal:
SELECT t.DEAL_NUMBER, t.TRANSACTION_NUMBER, t.DEAL_TYPE,
t.CURRENCY, t.START_DATE, t.MATURITY_DATE,
t.INTEREST_RATE, t.BALANCE_OUT, t.STATUS_CODE
FROM XTR.XTR_ROLLOVER_TRANSACTIONS t
WHERE t.DEAL_NUMBER = :deal_number
ORDER BY t.TRANSACTION_NUMBER;
To identify transactions that have undergone revaluation but may still require it, the revaluation batch columns are useful:
SELECT t.DEAL_NUMBER, t.TRANSACTION_NUMBER,
t.FIRST_REVAL_BATCH_ID, t.LAST_REVAL_BATCH_ID
FROM XTR.XTR_ROLLOVER_TRANSACTIONS t
WHERE t.LAST_REVAL_BATCH_ID IS NULL
AND t.STATUS_CODE = 'ACTIVE';
Limit exposure reporting aggregates transactions by COMPANY_CODE, CPARTY_CODE, and LIMIT_CODE to reconcile against XTR_COUNTERPARTY_LIMITS, while interest dashboards sum INTEREST and ACCUM_INTEREST by portfolio or currency. Joining the account-use columns to CE_BANK_ACCT_USES_ALL supports cash positioning and treasury bank account analysis.
Related Objects
- XTR_DEALS — Parent header joined on DEAL_NUMBER; supplies the deal-level attributes for each transaction.
- XTR_PARCEL_SPLITS — Joined on DEAL_NUMBER and PARCEL_SPLIT_NO for transactions created through parcel splitting.
- XTR_COUNTERPARTY_LIMITS — Validates exposure using COMPANY_CODE, CPARTY_CODE, and LIMIT_CODE.
- CE_BANK_ACCT_USES_ALL — Referenced by ACCUM_INT_ACCT_USE_ID, BAL_OS_ACCT_USE_ID, and PRINCIPAL_ACCT_USE_ID for bank account usage detail.
- XTR_BATCHES — Referenced by FIRST_REVAL_BATCH_ID and LAST_REVAL_BATCH_ID for revaluation batch tracking.
- XTR_MASTER_CURRENCIES — Joined on CURRENCY for currency attributes.
- XTR_ACCRLS_AMORT — Child table keyed by DEAL_NO and TRANS_NO for accruals and amortization.
- XTR_DEAL_DATE_AMOUNTS — Child by DEAL_NUMBER and TRANSACTION_NUMBER holding dated amount schedules.
- XTR_REVALUATION_DETAILS and XTR_LIMIT_EXCESS_LOG — Dependent detail tables keyed by deal and transaction for revaluation and limit excess history.
- XTR_CONFIRMATION_DETAILS — Confirmation record keyed by DEAL_NO and TRANSACTION_NO.
-
Table: XTR_ROLLOVER_TRANSACTIONS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_ROLLOVER_TRANSACTIONS, object_name:XTR_ROLLOVER_TRANSACTIONS, status:VALID, product: XTR - Treasury , description: Information about transactions in bond, interest rate swap, negotiable instrument, short term money, retail term money, and wholesale term money deals , implementation_dba_data: XTR.XTR_ROLLOVER_TRANSACTIONS ,
-
Table: XTR_ROLLOVER_TRANSACTIONS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_ROLLOVER_TRANSACTIONS, object_name:XTR_ROLLOVER_TRANSACTIONS, status:VALID, product: XTR - Treasury , description: Information about transactions in bond, interest rate swap, negotiable instrument, short term money, retail term money, and wholesale term money deals , implementation_dba_data: XTR.XTR_ROLLOVER_TRANSACTIONS ,
-
APPS.XTR_FPS3_P SQL Statements
12.2.2
-
APPS.XTR_REVAL_PROCESS_P SQL Statements
12.1.1
-
VIEW: APPS.XTR_ROLLOVER_TRANSACTIONS_DFV
12.2.2
-
APPS.XTR_FPS3_P SQL Statements
12.1.1
-
VIEW: APPS.XTR_ROLLOVER_TRANSACTIONS_DFV
12.1.1
-
APPS.XTR_REVAL_PROCESS_P SQL Statements
12.2.2
-
APPS.XTR_RESET_BOND_RATE SQL Statements
12.1.1
-
VIEW: APPS.XTR_IRS_ELIGIBLE_DEALS_V
12.1.1
-
APPS.XTR_MM_COVERS SQL Statements
12.2.2
-
VIEW: APPS.XTR_IRS_ELIGIBLE_DEALS_V
12.2.2
-
APPS.XTR_RESET_BOND_RATE SQL Statements
12.2.2
-
APPS.XTR_MM_COVERS SQL Statements
12.1.1
-
Table: XTR_BATCHES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_BATCHES, object_name:XTR_BATCHES, status:VALID, product: XTR - Treasury , description: This table stores the fundamental information for each batch process. , implementation_dba_data: XTR.XTR_BATCHES ,
-
APPS.XTR_BISF_P SQL Statements
12.2.2
-
APPS.XTR_BISF_P SQL Statements
12.1.1
-
APPS.XTR_STOCK_PKG SQL Statements
12.2.2
-
Table: XTR_BATCHES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_BATCHES, object_name:XTR_BATCHES, status:VALID, product: XTR - Treasury , description: This table stores the fundamental information for each batch process. , implementation_dba_data: XTR.XTR_BATCHES ,
-
APPS.XTR_STOCK_PKG SQL Statements
12.1.1
-
Table: CE_BANK_ACCT_USES_ALL
12.1.1
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_BANK_ACCT_USES_ALL, object_name:CE_BANK_ACCT_USES_ALL, status:VALID, product: CE - Cash Management , description: This table stores information about your bank account uses. , implementation_dba_data: CE.CE_BANK_ACCT_USES_ALL ,
-
Table: CE_BANK_ACCT_USES_ALL
12.2.2
owner:CE, object_type:TABLE, fnd_design_data:CE.CE_BANK_ACCT_USES_ALL, object_name:CE_BANK_ACCT_USES_ALL, status:VALID, product: CE - Cash Management , description: This table stores information about your bank account uses. , implementation_dba_data: CE.CE_BANK_ACCT_USES_ALL ,
-
SYNONYM: APPS.XTR_ROLLOVER_TRANSACTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XTR_ROLLOVER_TRANSACTIONS, status:VALID,
-
SYNONYM: APPS.XTR_ROLLOVER_TRANSACTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XTR_ROLLOVER_TRANSACTIONS, status:VALID,
-
VIEW: APPS.XTR_STOCK_CASH_DIVIDENDS_V
12.2.2
-
VIEW: APPS.XTR_STOCK_CASH_DIVIDENDS_V
12.1.1
-
View: XTR_IRS_ELIGIBLE_DEALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_IRS_ELIGIBLE_DEALS_V, object_name:XTR_IRS_ELIGIBLE_DEALS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_IRS_ELIGIBLE_DEALS_V ,
-
APPS.XTR_FPS2_P SQL Statements
12.2.2
-
APPS.XTR_FPS2_P SQL Statements
12.1.1
-
View: XTR_IRS_ELIGIBLE_DEALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_IRS_ELIGIBLE_DEALS_V, object_name:XTR_IRS_ELIGIBLE_DEALS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_IRS_ELIGIBLE_DEALS_V ,
-
View: XTR_NI_ELIGIBLE_DEALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_NI_ELIGIBLE_DEALS_V, object_name:XTR_NI_ELIGIBLE_DEALS_V, status:VALID, product: XTR - Treasury , description: Based on table three tables xtr_rollover_transactions, xtr_deals, xtr_company_parameters. , implementation_dba_data: APPS.XTR_NI_ELIGIBLE_DEALS_V ,
-
TRIGGER: APPS.XTR_AU_DEAL_DATE_AMOUNTS_T
12.1.1
-
View: XTR_NI_ELIGIBLE_DEALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_NI_ELIGIBLE_DEALS_V, object_name:XTR_NI_ELIGIBLE_DEALS_V, status:VALID, product: XTR - Treasury , description: Based on table three tables xtr_rollover_transactions, xtr_deals, xtr_company_parameters. , implementation_dba_data: APPS.XTR_NI_ELIGIBLE_DEALS_V ,
-
TRIGGER: APPS.XTR_AU_DEAL_DATE_AMOUNTS_T
12.2.2
-
Table: XTR_PARCEL_SPLITS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_PARCEL_SPLITS, object_name:XTR_PARCEL_SPLITS, status:VALID, product: XTR - Treasury , description: Parcel split detail information for discounted securities deals , implementation_dba_data: XTR.XTR_PARCEL_SPLITS ,
-
Table: XTR_ACCRLS_AMORT
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_ACCRLS_AMORT, object_name:XTR_ACCRLS_AMORT, status:VALID, product: XTR - Treasury , description: Accrual amounts for deal transactions , implementation_dba_data: XTR.XTR_ACCRLS_AMORT ,
-
Table: XTR_CONFIRMATION_DETAILS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_CONFIRMATION_DETAILS, object_name:XTR_CONFIRMATION_DETAILS, status:VALID, product: XTR - Treasury , description: Confirmation letter details , implementation_dba_data: XTR.XTR_CONFIRMATION_DETAILS ,
-
Table: XTR_CONFIRMATION_DETAILS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_CONFIRMATION_DETAILS, object_name:XTR_CONFIRMATION_DETAILS, status:VALID, product: XTR - Treasury , description: Confirmation letter details , implementation_dba_data: XTR.XTR_CONFIRMATION_DETAILS ,
-
Table: XTR_ACCRLS_AMORT
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_ACCRLS_AMORT, object_name:XTR_ACCRLS_AMORT, status:VALID, product: XTR - Treasury , description: Accrual amounts for deal transactions , implementation_dba_data: XTR.XTR_ACCRLS_AMORT ,
-
Table: XTR_REVALUATION_DETAILS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_REVALUATION_DETAILS, object_name:XTR_REVALUATION_DETAILS, status:VALID, product: XTR - Treasury , description: Revaluation results of Treasury deals , implementation_dba_data: XTR.XTR_REVALUATION_DETAILS ,
-
TRIGGER: APPS.XTR_AU_ROLLOVER_TRANSACTIONS_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AU_ROLLOVER_TRANSACTIONS_T, status:VALID,
-
Table: XTR_COUNTERPARTY_LIMITS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_COUNTERPARTY_LIMITS, object_name:XTR_COUNTERPARTY_LIMITS, status:VALID, product: XTR - Treasury , description: Counterparty limits information including limit and utilization amounts , implementation_dba_data: XTR.XTR_COUNTERPARTY_LIMITS ,
-
Table: XTR_LIMIT_EXCESS_LOG
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG, object_name:XTR_LIMIT_EXCESS_LOG, status:VALID, product: XTR - Treasury , description: Limit exceptions caused by deal transactions , implementation_dba_data: XTR.XTR_LIMIT_EXCESS_LOG ,
-
Table: XTR_LIMIT_EXCESS_LOG
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG, object_name:XTR_LIMIT_EXCESS_LOG, status:VALID, product: XTR - Treasury , description: Limit exceptions caused by deal transactions , implementation_dba_data: XTR.XTR_LIMIT_EXCESS_LOG ,
-
VIEW: APPS.XTR_ONC_ELIGIBLE_DEALS_V
12.2.2
-
Table: XTR_PARCEL_SPLITS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_PARCEL_SPLITS, object_name:XTR_PARCEL_SPLITS, status:VALID, product: XTR - Treasury , description: Parcel split detail information for discounted securities deals , implementation_dba_data: XTR.XTR_PARCEL_SPLITS ,
-
TRIGGER: APPS.XTR_AID_ROLLOVER_TRANS_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AID_ROLLOVER_TRANS_T, status:VALID,
-
VIEW: APPS.XTR_NI_ELIGIBLE_DEALS_V
12.1.1
-
Table: XTR_COUNTERPARTY_LIMITS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_COUNTERPARTY_LIMITS, object_name:XTR_COUNTERPARTY_LIMITS, status:VALID, product: XTR - Treasury , description: Counterparty limits information including limit and utilization amounts , implementation_dba_data: XTR.XTR_COUNTERPARTY_LIMITS ,
-
Table: XTR_REVALUATION_DETAILS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_REVALUATION_DETAILS, object_name:XTR_REVALUATION_DETAILS, status:VALID, product: XTR - Treasury , description: Revaluation results of Treasury deals , implementation_dba_data: XTR.XTR_REVALUATION_DETAILS ,