Search Results diary_note_details
Overview
XTR_MATURITIES_V is a Treasury (XTR) reporting view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. Its purpose is narrowly defined: it exposes cashflows belonging only to those date and amount type combinations that have been flagged as relevant to the Treasury maturity reports. The driving filter is the MATURITY_REPORT flag on XTR_DATE_AMOUNT_TYPES, which means the view does not return every cashflow recorded against a deal. Instead, it returns the subset that Treasury has designated for maturity analysis, giving reporting users a pre-filtered, denormalised result set without needing to join the Treasury deal, party, and reference tables themselves.
Because the view resolves deal numbers, counterparties, clients, deal types, statuses, and user-defined code descriptions into a single row per qualifying cashflow, it functions as a reporting and integration layer over the core Treasury cashflow model. It is typically consumed by maturity ladder reports, gap analysis, and downstream extracts rather than by transactional processing.
Underlying Base Objects
The view is defined over a primary cashflow source, XTR_DEAL_DATE_AMOUNTS_V, aliased as A, joined to a set of reference and descriptive objects. The documented base objects are XTR_AMOUNT_TYPES, XTR_DATE_AMOUNT_TYPES, XTR_DATE_TYPES, XTR_DEAL_DATE_AMOUNTS_V, XTR_DEAL_STATUSES, XTR_DEAL_SUBTYPES, XTR_DEAL_TYPES, XTR_PARTY_INFO, and the XTR_USER_ACCESS package.
The join to XTR_DATE_AMOUNT_TYPES (D) is the restrictive one, combining DEAL_TYPE, DATE_TYPE, and AMOUNT_TYPE while requiring MATURITY_REPORT = 'Y'. Outer joins to XTR_PARTY_INFO, aliased P and Q, resolve counterparty and client short names and allow cashflows to survive when a party record is absent. Inner joins to XTR_DEAL_TYPES, XTR_DEAL_SUBTYPES, XTR_AMOUNT_TYPES, XTR_DEAL_STATUSES, and XTR_DATE_TYPES supply the user-facing descriptions for deal type, subtype, amount type, status, and date type respectively. XTR_USER_ACCESS is referenced for access control rather than row-level joining.
Key Columns
- DEAL_NUMBER, TRANSACTION_NUMBER — identify the deal and the specific transaction generating the cashflow.
- AMOUNT_DATE, DATE_TYPE — the cashflow date and its classification, with USER_DATE_TYPE providing the descriptive form.
- CURRENCY, AMOUNT, CASHFLOW_AMOUNT, HCE_AMOUNT — the monetary values, including the functional-currency equivalent amount.
- TYPE_OF_AMOUNT, USER_AMOUNT_TYPE — the amount type code and its user-facing description.
- COMPANY, CPARTY, CPARTY_NAME, CLIENT, CLIENT_NAME — the internal company, counterparty and client codes with resolved short names.
- DEALER, CONTRACT_TYPE, USER_DEAL_TYPE, SUBTYPE, USER_DEAL_SUBTYPE, PRODUCT, PORTFOLIO — deal classification and ownership attributes.
- CODE_COMBINATION_ID, RATE, COMPANY_ACCOUNT — accounting flexfield reference, transaction rate, and company account.
- CONTRACT_STATUS, USER_STATUS_CODE — deal status code and description.
- DIARY_NOTE_DETAILS — the free-text diary note carried from the underlying cashflow, exposed here under the alias DIARY_NOTE_DETAILS for the source column A.DIARY_NOTE.
- AUTHORISED_BY, AUTHORISED_ON — dual authorisation user and timestamp.
Common Use Cases and Queries
The primary scenario is maturity reporting: listing all qualifying cashflows by date bucket for liquidity and funding analysis. A second scenario is counterparty exposure review grouped by client or counterparty. A third is audit or reconciliation, where the diary note and authorisation columns are inspected alongside amounts.
A typical query groups maturities by date and currency:
SELECT amount_date, currency, SUM(cashflow_amount) FROM xtr_maturities_v WHERE amount_date BETWEEN :p_from AND :p_to GROUP BY amount_date, currency ORDER BY amount_date;
Counterparty-level aggregation, useful for concentration review, follows the same pattern using CLIENT_NAME or CPARTY_NAME as the grouping key. To retrieve supplementary detail such as diary notes for a specific deal:
SELECT deal_number, transaction_number, amount_date, user_amount_type, cashflow_amount, diary_note_details FROM xtr_maturities_v WHERE deal_number = :p_deal_number;
Because the view already enforces the MATURITY_REPORT filter and resolves descriptive columns, queries remain short and consistent between 12.1.1 and 12.2.2. Access is governed through XTR_USER_ACCESS, so results reflect the security profile of the querying responsibility.
-
View: XTR_MATURITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MATURITIES_V, object_name:XTR_MATURITIES_V, status:VALID, product: XTR - Treasury , description: Cashflows belonging to only those date amount types relevant to the Tresaury maturity reports , implementation_dba_data: APPS.XTR_MATURITIES_V ,
-
VIEW: APPS.XTR_SETTLEMENTS_V
12.1.1
-
View: XTR_MATURITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MATURITIES_V, object_name:XTR_MATURITIES_V, status:VALID, product: XTR - Treasury , description: Cashflows belonging to only those date amount types relevant to the Tresaury maturity reports , implementation_dba_data: APPS.XTR_MATURITIES_V ,
-
View: XTR_DDA_EXPOSURES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DDA_EXPOSURES_V, object_name:XTR_DDA_EXPOSURES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_DDA_EXPOSURES_V ,
-
View: XTR_DDA_EXPOSURES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DDA_EXPOSURES_V, object_name:XTR_DDA_EXPOSURES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_DDA_EXPOSURES_V ,
-
VIEW: APPS.XTR_DDA_EXPOSURES_V
12.1.1
-
View: XTR_SETTLEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_SETTLEMENTS_V, object_name:XTR_SETTLEMENTS_V, status:VALID, product: XTR - Treasury , description: Settlement transactions of Treasury deals , implementation_dba_data: APPS.XTR_SETTLEMENTS_V ,
-
View: XTR_SETTLEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_SETTLEMENTS_V, object_name:XTR_SETTLEMENTS_V, status:VALID, product: XTR - Treasury , description: Settlement transactions of Treasury deals , implementation_dba_data: APPS.XTR_SETTLEMENTS_V ,
-
VIEW: APPS.XTR_MATURITIES_V
12.2.2
-
VIEW: APPS.XTR_SETTLEMENTS_V
12.2.2
-
VIEW: APPS.XTR_DDA_EXPOSURES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DDA_EXPOSURES_V, object_name:XTR_DDA_EXPOSURES_V, status:VALID,
-
VIEW: APPS.XTR_MATURITIES_V
12.1.1
-
VIEW: APPS.XTR_DDA_EXPOSURES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DDA_EXPOSURES_V, object_name:XTR_DDA_EXPOSURES_V, status:VALID,
-
VIEW: APPS.XTR_DDA_EXPOSURES_V
12.2.2
-
VIEW: APPS.XTR_MATURITIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MATURITIES_V, object_name:XTR_MATURITIES_V, status:VALID,
-
VIEW: APPS.XTR_MATURITIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_MATURITIES_V, object_name:XTR_MATURITIES_V, status:VALID,
-
VIEW: APPS.XTR_SETTLEMENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_SETTLEMENTS_V, object_name:XTR_SETTLEMENTS_V, status:VALID,
-
VIEW: APPS.XTR_SETTLEMENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_SETTLEMENTS_V, object_name:XTR_SETTLEMENTS_V, status:VALID,
-
eTRM - XTR Tables and Views
12.2.2
description: Created on 29-OCT-96 ,
-
eTRM - XTR Tables and Views
12.1.1
description: Created on 29-OCT-96 ,