Search Results xtr_mirror_dda_limit_row
Overview
XTR_MIRROR_DDA_LIMIT_ROW is a Treasury (XTR) module table in Oracle E-Business Suite 12.1.1 and 12.2.2. Per the ETRM documentation, its purpose is to hold cashflow information for all deal transactions with a status of CURRENT. The table therefore functions as a mirror of daily deal activity, capturing the limit-relevant cashflow amounts associated with current deals so that Treasury exposure and limit utilization reporting can be performed. The owner/schema is XTR and the object carries a VALID status in the documented environment.
From a modeling perspective, the heuristic Data Vault classification of this object is satellite-leaning. This suggests it is best understood as a descriptive, context-bearing structure that hangs off a core business key (the deal) rather than as a standalone hub or a pure link. The classification is a modeling suggestion derived from the foreign-key structure, not a physical property of the table.
Key Information Stored
The physical schema documented for ETRM 12.2.2 lists 29 columns. The following are the most significant for functional understanding:
- DEAL_NUMBER — The deal identifier, forming part of both the primary key and the unique business-key index.
- TRANSACTION_NUMBER and DEAL_TYPE — Together with DEAL_NUMBER these constitute the unique business-key candidate XTR_MIRROR_DDA_LIMIT_ROW_U1 (DEAL_NUMBER, TRANSACTION_NUMBER, DEAL_TYPE).
- HCE_AMOUNT — The high-level home-currency-equivalent amount associated with the deal cashflow, and a component of the primary key.
- UTILISED_AMOUNT and HCE_UTILISED_AMOUNT — The utilized (consumed) limit amounts, in transaction currency and home currency equivalent respectively.
- AMOUNT, AMOUNT_DATE, AMOUNT_INDIC — The cashflow amount, its date, and an indicator describing its nature.
- CURRENCY, CONTRA_CCY, CURRENCY_COMBINATION — Currency denominations and currency-pair combinations relevant to the deal.
- LIMIT_CODE, LIMIT_TYPE, LIMIT_PARTY — The limit against which the deal consumes exposure, its type, and the counterparty or party to which the limit applies.
- STATUS_CODE — The deal's status, expected to reflect CURRENT for rows in this table.
- COMMENCE_DATE, DATE_LAST_SET — Effective start and last-updated timestamps for the record.
- BANK_ACCT_USE_ID — The foreign key to CE_BANK_ACCT_USES_ALL, linking the row to a specific bank account use.
The primary key, XTR_MIRROR_DDA_LIMIT_ROW_PK, is defined on (DEAL_NUMBER, HCE_AMOUNT). This is distinct from the business-key candidate captured by the unique index.
Common Use Cases and Queries
Typical use cases center on limit utilization and Treasury exposure reporting. Analysts join this table to bank account usage data to attribute cashflows to specific bank accounts, and filter on LIMIT_CODE or LIMIT_PARTY to report consumption against a given limit. Status-based filtering isolates the current population, which is the table's defining characteristic.
SELECT r.DEAL_NUMBER, r.DEAL_TYPE, r.CURRENCY,
r.UTILISED_AMOUNT, r.HCE_UTILISED_AMOUNT, r.LIMIT_CODE
FROM XTR.XTR_MIRROR_DDA_LIMIT_ROW r
WHERE r.STATUS_CODE = 'CURRENT'
ORDER BY r.HCE_UTILISED_AMOUNT DESC;
A join path to bank account information:
SELECT r.DEAL_NUMBER, r.LIMIT_PARTY, b.BANK_ACCOUNT_ID
FROM XTR.XTR_MIRROR_DDA_LIMIT_ROW r,
CE.CE_BANK_ACCT_USES_ALL b
WHERE r.BANK_ACCT_USE_ID = b.BANK_ACCT_USE_ID;
Related Objects
- CE_BANK_ACCT_USES_ALL — Referenced through the foreign key on BANK_ACCT_USE_ID.
- XTR_MIRROR_DDA_LIMIT_ROW_PK — The primary key constraint on (DEAL_NUMBER, HCE_AMOUNT).
- XTR_MIRROR_DDA_LIMIT_ROW_U1 — The unique business-key index on (DEAL_NUMBER, TRANSACTION_NUMBER, DEAL_TYPE).
Additional XTR deal and limit tables in the same schema typically share the deal and limit identifiers used here and are commonly queried alongside this object for consolidated Treasury reporting.
-
Table: XTR_MIRROR_DDA_LIMIT_ROW
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW, object_name:XTR_MIRROR_DDA_LIMIT_ROW, status:VALID, product: XTR - Treasury , description: Cashflow information for all deal transactions with status of CURRENT , implementation_dba_data: XTR.XTR_MIRROR_DDA_LIMIT_ROW ,
-
Table: XTR_MIRROR_DDA_LIMIT_ROW
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW, object_name:XTR_MIRROR_DDA_LIMIT_ROW, status:VALID, product: XTR - Treasury , description: Cashflow information for all deal transactions with status of CURRENT , implementation_dba_data: XTR.XTR_MIRROR_DDA_LIMIT_ROW ,
-
SYNONYM: APPS.XTR_MIRROR_DDA_LIMIT_ROW
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XTR_MIRROR_DDA_LIMIT_ROW, status:VALID,
-
VIEW: XTR.XTR_MIRROR_DDA_LIMIT_ROW#
12.2.2
-
APPS.XTR_LIMITS_P SQL Statements
12.1.1
-
SYNONYM: APPS.XTR_MIRROR_DDA_LIMIT_ROW
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XTR_MIRROR_DDA_LIMIT_ROW, status:VALID,
-
VIEW: XTR.XTR_MIRROR_DDA_LIMIT_ROW#
12.2.2
owner:XTR, object_type:VIEW, object_name:XTR_MIRROR_DDA_LIMIT_ROW#, status:VALID,
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.1.1
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.2.2
-
VIEW: APPS.XTR_MIRROR_DDA_LIMIT_ROW_V
12.2.2
-
VIEW: APPS.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V
12.1.1
-
VIEW: APPS.XTR_MIRROR_DDA_LIMIT_ROW_V
12.1.1
-
APPS.XTR_LIMITS_P SQL Statements
12.2.2
-
VIEW: APPS.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V
12.2.2
-
TABLE: XTR.XTR_MIRROR_DDA_LIMIT_ROW
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW, object_name:XTR_MIRROR_DDA_LIMIT_ROW, status:VALID,
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_LIMIT_ROW_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AI_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TRIGGER: APPS.XTR_AU_MIRROR_DDA_LIMIT_ROW_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AU_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TABLE: XTR.XTR_MIRROR_DDA_LIMIT_ROW
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW, object_name:XTR_MIRROR_DDA_LIMIT_ROW, status:VALID,
-
TRIGGER: APPS.XTR_AD_MIRROR_DDA_LIMIT_ROW_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AD_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_LIMIT_ROW_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AI_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
PACKAGE BODY: APPS.XTR_LIMITS_P
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_LIMITS_P, status:VALID,
-
PACKAGE BODY: APPS.XTR_COF_P
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_COF_P, status:VALID,
-
TRIGGER: APPS.XTR_AD_MIRROR_DDA_LIMIT_ROW_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AD_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
PACKAGE BODY: APPS.XTR_EXP_SUMM_P
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_EXP_SUMM_P, status:VALID,
-
PACKAGE BODY: APPS.XTR_EXP_SUMM_P
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_EXP_SUMM_P, status:VALID,
-
TRIGGER: APPS.XTR_AU_MIRROR_DDA_LIMIT_ROW_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AU_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
PACKAGE BODY: APPS.XTR_COF_P
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_COF_P, status:VALID,
-
PACKAGE BODY: APPS.XTR_LIMITS_P
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_LIMITS_P, status:VALID,
-
View: XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_DETAILS_V, object_name:XTR_LIMIT_EXCESS_LOG_DETAILS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V ,
-
View: XTR_MIRROR_DDA_LIMIT_ROW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW_V, object_name:XTR_MIRROR_DDA_LIMIT_ROW_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_MIRROR_DDA_LIMIT_ROW_V ,
-
View: XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_DETAILS_V, object_name:XTR_LIMIT_EXCESS_LOG_DETAILS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V ,
-
View: XTR_BIS_MIRROR_DDA_LIMIT_ROW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V, object_name:XTR_BIS_MIRROR_DDA_LIMIT_ROW_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V ,
-
View: XTR_MIRROR_DDA_LIMIT_ROW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW_V, object_name:XTR_MIRROR_DDA_LIMIT_ROW_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_MIRROR_DDA_LIMIT_ROW_V ,
-
View: XTR_BIS_MIRROR_DDA_LIMIT_ROW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V, object_name:XTR_BIS_MIRROR_DDA_LIMIT_ROW_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V ,
-
VIEW: APPS.XTR_MIRROR_DDA_LIMIT_ROW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW_V, object_name:XTR_MIRROR_DDA_LIMIT_ROW_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.XTR_NET_POSITIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_NET_POSITIONS_V, object_name:XTR_NET_POSITIONS_V, status:VALID,
-
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 ,
-
VIEW: APPS.XTR_MIRROR_DDA_LIMIT_ROW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MIRROR_DDA_LIMIT_ROW_V, object_name:XTR_MIRROR_DDA_LIMIT_ROW_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_MIRROR_DDA_LIMIT_ROW_V, object_name:XTR_BIS_MIRROR_DDA_LIMIT_ROW_V, status:VALID,