Search Results drawer_code
Overview
XTR_A_ROLLOVER_TRANSACTIONS_V is a Treasury (XTR) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It exposes rollover transaction records for treasury deals, presenting a horizontally flattened projection of rollover transaction data that includes deal identification, drawer and counterparty attributes, principal and interest accounting, brokerage, tax, and settlement information. The "_A_" segment in the object name denotes the audit-related naming convention used throughout the XTR schema, and the object is documented in the ETRM metadata as "Retrofitted," reflecting that the view was recreated or redeployed under the standard APPS-owned deployment model rather than a legacy custom schema. The view carries a STATUS of VALID, confirming that it compiles successfully against its referenced base object in the supported release.
The view functions as a read-oriented access layer over the rollover transaction table. It does not introduce business logic beyond column projection and naming; its value lies in providing a stable, named interface for concurrent programs, OAF pages, and SQL-based reporting without requiring direct access to the underlying table. This is significant because XTR treasury tables are among the most heavily denormalized structures in the application, and views such as this one shield downstream consumers from physical schema changes.
Underlying Base Objects
The documented base object for XTR_A_ROLLOVER_TRANSACTIONS_V is the synonym XTR_A_ROLLOVER_TRANSACTIONS. In a standard EBS deployment, this synonym resolves to the APPS-owned table of the same name, which stores rollover transaction rows generated when a treasury deal reaches its renegotiation or maturity rollover point. The view is defined directly over this single referenced object; the ETRM metadata lists no additional tables, joins, or inline views. Consequently the cardinality of the view matches the base table one-to-one, and the DRAWER_CODE column requested in the user's search originates from the rollover transaction record itself rather than from a joined party table.
Because the relationship is a direct projection, row-level security is not applied by the view definition. Any access restrictions are enforced at the table or synonym grant level, and responsibility-based data filtering is typically implemented by the calling forms or concurrent programs rather than by the view.
Key Columns
The view exposes a broad column set spanning deal, party, financial, and audit attributes. Notable columns include:
- DRAWER_CODE / DRAWER_NAME — Identifies the drawer of the rollover deal, the party issuing or drawing the instrument. These are the columns most relevant to the user's search term "drawer_code."
- TRANSACTION_NUMBER, DEAL_NUMBER, DEAL_TYPE, DEAL_SUBTYPE — Core deal identification and classification attributes.
- DEALER_CODE, PORTFOLIO_CODE, COMPANY_CODE, CURRENCY — Organisational and currency context for the transaction.
- PRINCIPAL_ADJUST, PRINCIPAL_ADJUST_HCE, PRINCIPAL_AMOUNT_TYPE, PRINCIPAL_ACTION — Principal rollover adjustments, including the HCE (home currency equivalent) variant used for reporting in the functional currency.
- INTEREST, INTEREST_RATE, INTEREST_FREQ, ACCUM_INTEREST, ACCUM_INTEREST_HCE — Interest accrual, frequency, and accumulated interest amounts.
- BROKERAGE_AMOUNT, BROKERAGE_AMOUNT_HCE, BROKERAGE_CODE, BROKERAGE_RATE — Brokerage and commission components of the rollover.
- TAX_AMOUNT, TAX_AMOUNT_HCE, TAX_CODE, TAX_RATE, TAX_SETTLED_REFERENCE — Tax treatment and settlement reference for the transaction.
- MATURITY_DATE, START_DATE, RENEG_ONLY_LETTER, NI_RENEG_DATE — Maturity and renegotiation timing information.
- STATUS_CODE, ACTION_STATUS, AUDIT_INDICATOR, AUDIT_DATE_STORED, UPDATED_BY, UPDATED_ON — Status and audit trail columns.
Common Use Cases and Queries
The view is typically used for rollover transaction inquiry, reconciliation of principal and interest rollovers, and downstream extraction into treasury reporting. A representative query retrieving rollover transactions by drawer is:
SELECT transaction_number, deal_number, drawer_code, drawer_name, deal_type, currency, principal_adjust, interest, maturity_date FROM xtr_a_rollover_transactions_v WHERE drawer_code = :p_drawer_code ORDER BY deal_date DESC;
For financial reconciliation, filtering on the home currency equivalent columns supports functional currency reporting:
SELECT deal_number, principal_adjust_hce, accum_interest_hce, brokerage_amount_hce, tax_amount_hce FROM xtr_a_rollover_transactions_v WHERE currency = :p_currency AND status_code = 'ACTIVE';
Because the view performs no joins, queries against it are inexpensive relative to treasury inquiry forms that denormalize party and portfolio data at runtime. Analysts should note, however, that the view returns only transaction rows persisted to XTR_A_ROLLOVER_TRANSACTIONS; rollovers still in a pending or unposted state may reside in related dealer deal tables and will not appear here until the rollover transaction is written.
-
View: XTR_A_ROLLOVER_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_A_ROLLOVER_TRANSACTIONS_V, object_name:XTR_A_ROLLOVER_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_A_ROLLOVER_TRANSACTIONS_V ,
-
View: XTR_R_ROLLOVER_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_R_ROLLOVER_TRANSACTIONS_V, object_name:XTR_R_ROLLOVER_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_R_ROLLOVER_TRANSACTIONS_V ,
-
View: XTR_R_ROLLOVER_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_R_ROLLOVER_TRANSACTIONS_V, object_name:XTR_R_ROLLOVER_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_R_ROLLOVER_TRANSACTIONS_V ,
-
View: XTR_A_ROLLOVER_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_A_ROLLOVER_TRANSACTIONS_V, object_name:XTR_A_ROLLOVER_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_A_ROLLOVER_TRANSACTIONS_V ,
-
View: XTR_A_DEALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_A_DEALS_V, object_name:XTR_A_DEALS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_A_DEALS_V ,
-
View: XTR_R_DEALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_R_DEALS_V, object_name:XTR_R_DEALS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_R_DEALS_V ,
-
View: XTR_R_DEALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_R_DEALS_V, object_name:XTR_R_DEALS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_R_DEALS_V ,
-
View: XTR_A_DEALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_A_DEALS_V, object_name:XTR_A_DEALS_V, status:VALID, product: XTR - Treasury , description: - Retrofitted , implementation_dba_data: APPS.XTR_A_DEALS_V ,
-
View: XTR_DEALS_INTERFACE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DEALS_INTERFACE_V, object_name:XTR_DEALS_INTERFACE_V, status:VALID, product: XTR - Treasury , description: This view is created in association with the base table Xtr_Deals_Interface. The table is designed to hold as much common deal information as possible. , implementation_dba_data: APPS.XTR_DEALS_INTERFACE_V ,
-
View: XTR_DEALS_INTERFACE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DEALS_INTERFACE_V, object_name:XTR_DEALS_INTERFACE_V, status:VALID, product: XTR - Treasury , description: This view is created in association with the base table Xtr_Deals_Interface. The table is designed to hold as much common deal information as possible. , implementation_dba_data: APPS.XTR_DEALS_INTERFACE_V ,
-
View: XTR_ROLLOVER_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_ROLLOVER_TRANSACTIONS_V, object_name:XTR_ROLLOVER_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_ROLLOVER_TRANSACTIONS_V ,
-
View: XTR_ROLLOVER_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_ROLLOVER_TRANSACTIONS_V, object_name:XTR_ROLLOVER_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_ROLLOVER_TRANSACTIONS_V ,
-
View: XTR_DEALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DEALS_V, object_name:XTR_DEALS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_DEALS_V ,
-
View: XTR_DEALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DEALS_V, object_name:XTR_DEALS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_DEALS_V ,