Search Results xtr_exposure_transactions_v
Overview
XTR_EXPOSURE_TRANSACTIONS_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite (12.1.1 and 12.2.2). It belongs to the XTR – Treasury product family and exposes treasury exposure transaction data for reporting, inquiry, and downstream integration. The view provides a denormalized, security-friendly projection of the underlying exposure transaction entity, allowing external systems, custom concurrent programs, and BI reporting tools to consume exposure records without querying base tables directly.
Because this object is a view rather than a table, it carries no storage of its own and cannot be updated through DML (unless an INSTEAD OF trigger exists, which is not documented here). Its role is to present a stable interface to exposure data such as deal type, counterparty, currency amounts, payment status, and FX coverage indicators. A distinguishing feature is the presence of the CASH_POSITION_EXPOSURE column, which classifies each record as a cash position exposure — a concept central to treasury liquidity and cash management reporting.
Underlying Base Objects
The view is defined over a single documented base object: XTR_EXPOSURE_TRANSACTIONS, referenced through a synonym. The SELECT statement projects the full set of base columns and adds the derived/persisted CASH_POSITION_EXPOSURE column. In practice, the base synonym resolves to the treasury exposure transaction table that stores deal-level exposure details. Because the view maps one-to-one with the base table columns (plus the exposure classification), joins to deal, counterparty, and currency reference tables are typically performed at the base or through related views such as XTR_EXPOSURE_HEADERS_V. Implementers should treat the base table as the system of record and this view as the reporting interface.
Key Columns
TRANSACTION_NUMBER— Primary business key identifying the exposure transaction.COMPANY_CODE/CPARTY_CODE— Legal entity and counterparty identifiers used for ownership and exposure aggregation.DEAL_TYPE/DEAL_SUBTYPE— Classify the treasury instrument (e.g., FX, loan, deposit).EXPOSURE_TYPE/CASH_POSITION_EXPOSURE— Distinguish exposure categories, including cash position exposure.CURRENCY/AMOUNT/AMOUNT_HCE— Transaction currency, transaction amount, and home-currency equivalent.VALUE_DATE/ESTIMATE_DATE— Settlement/value date and forecast date.PAYMENT_AMOUNT/PAYMENT_STATUS/SETTLE_ACTION_REQD— Settlement and cash movement indicators.COVERED_BY_FX_CONTRACT/AVG_RATE— FX hedging coverage and average rate.DEAL_STATUS/STATUS_CODE/ACTION_CODE— Lifecycle state and workflow action.ATTRIBUTE1..15/ATTRIBUTE_CATEGORY— Descriptive flexfield storage.DUAL_AUTHORISATION_BY/DUAL_AUTHORISATION_ON— Audit trail for two-person authorization.
Common Use Cases and Queries
Typical usage includes building exposure reports by currency, monitoring unmatched settlement actions, and feeding treasury data warehouses. The following query lists open exposures by counterparty and currency:
SELECT transaction_number, company_code, cparty_code,
currency, amount, amount_hce, value_date,
cash_position_exposure, payment_status
FROM apps.xtr_exposure_transactions_v
WHERE deal_status = 'OPEN'
AND value_date >= SYSDATE
ORDER BY cparty_code, currency;
To identify transactions requiring settlement action:
SELECT transaction_number, deal_type, deal_subtype,
payment_amount, settle_action_reqd
FROM apps.xtr_exposure_transactions_v
WHERE settle_action_reqd = 'Y'
AND payment_status <> 'SETTLED';
To summarize FX-covered exposure in home currency:
SELECT currency, COUNT(*) txns, SUM(amount_hce) total_hce FROM apps.xtr_exposure_transactions_v WHERE covered_by_fx_contract = 'Y' GROUP BY currency;
Because the view is APPS-owned, grants to reporting schemas or BI users must be managed through standard EBS security; direct DML against the view is not supported.
-
View: XTR_EXPOSURE_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_EXPOSURE_TRANSACTIONS_V, object_name:XTR_EXPOSURE_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_EXPOSURE_TRANSACTIONS_V ,
-
View: XTR_EXPOSURE_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_EXPOSURE_TRANSACTIONS_V, object_name:XTR_EXPOSURE_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_EXPOSURE_TRANSACTIONS_V ,
-
SYNONYM: APPS.XTR_EXPOSURE_TRANSACTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XTR_EXPOSURE_TRANSACTIONS, status:VALID,
-
SYNONYM: APPS.XTR_EXPOSURE_TRANSACTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XTR_EXPOSURE_TRANSACTIONS, status:VALID,
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.2.2
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.1.1
-
View: XTR_LINKED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LINKED_TRANSACTIONS_V ,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.XTR_LINKED_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.XTR_REVIEW_ALL_CONTRACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_REVIEW_ALL_CONTRACTS_V, object_name:XTR_REVIEW_ALL_CONTRACTS_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.XTR_REVIEW_ALL_CONTRACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_REVIEW_ALL_CONTRACTS_V, object_name:XTR_REVIEW_ALL_CONTRACTS_V, status:VALID,
-
View: XTR_LINKED_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LINKED_TRANSACTIONS_V, object_name:XTR_LINKED_TRANSACTIONS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LINKED_TRANSACTIONS_V ,
-
VIEW: APPS.XTR_EXPOSURE_TRANSACTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_EXPOSURE_TRANSACTIONS_V, object_name:XTR_EXPOSURE_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.XTR_REVIEW_ALL_CONTRACTS_V
12.1.1
-
VIEW: APPS.XTR_EXPOSURE_TRANSACTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_EXPOSURE_TRANSACTIONS_V, object_name:XTR_EXPOSURE_TRANSACTIONS_V, status:VALID,
-
VIEW: APPS.XTR_REVIEW_ALL_CONTRACTS_V
12.2.2
-
View: XTR_REVIEW_ALL_CONTRACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_REVIEW_ALL_CONTRACTS_V, object_name:XTR_REVIEW_ALL_CONTRACTS_V, status:VALID, product: XTR - Treasury , description: This view contains full deal information for all instruments with the exception of exposure transactions. Its main purpose is to inquire on deal information across all deal types. , implementation_dba_data: APPS.XTR_REVIEW_ALL_CONTRACTS_V ,
-
View: XTR_REVIEW_ALL_CONTRACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_REVIEW_ALL_CONTRACTS_V, object_name:XTR_REVIEW_ALL_CONTRACTS_V, status:VALID, product: XTR - Treasury , description: This view contains full deal information for all instruments with the exception of exposure transactions. Its main purpose is to inquire on deal information across all deal types. , implementation_dba_data: APPS.XTR_REVIEW_ALL_CONTRACTS_V ,
-
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 ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
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 ,