Search Results xtr_rm_md_curve_rates
Overview
The XTR_RM_MD_CURVE_RATES table is a core data structure within the Oracle E-Business Suite Treasury (XTR) module, specifically for versions 12.1.1 and 12.2.2. It functions as the detailed repository for the individual market data points that collectively define a financial curve. In treasury and risk management, curves—such as yield curves, forward rate curves, or volatility curves—are fundamental for valuation, simulation, and risk analysis. This table stores the granular rate data that populates these curves, enabling the system to perform complex financial calculations for instruments like bonds, swaps, and options. Its existence is critical for the Risk Management (RM) and Market Data (MD) components, providing the underlying numerical data upon which treasury analytics depend.
Key Information Stored
The table's structure is designed to link a specific rate to a specific curve. The primary key is a composite of CURVE_CODE and RATE_CODE, ensuring each rate is uniquely associated with a curve. The CURVE_CODE column is a foreign key that identifies the parent market data curve defined in the XTR_RM_MD_CURVES table. The RATE_CODE column is a foreign key that references a specific market price or rate stored in the XTR_MARKET_PRICES table. While the provided metadata does not list additional columns, typical implementations of such a junction table would include attributes like effective date, term or tenor (e.g., 1M, 1Y), and potentially a sequence number to order the points along the curve. The table essentially acts as a mapping mechanism, defining which market rates belong to which constructed curve.
Common Use Cases and Queries
The primary use case is the retrieval of all data points for a given curve to construct it for valuation engines or reports. Treasury analysts and risk managers query this table to audit curve composition, verify rate inputs, and troubleshoot valuation outputs. A common reporting need is to list all curves that utilize a particular market rate, which is vital for impact analysis when a source rate is updated. Sample SQL patterns include fetching the complete set of rates for a curve or joining to obtain descriptive information.
- To retrieve all rate codes for a specific curve:
SELECT RATE_CODE FROM XTR_RM_MD_CURVE_RATES WHERE CURVE_CODE = 'USD-LIBOR-3M'; - To list curves containing a specific market rate:
SELECT CURVE_CODE FROM XTR_RM_MD_CURVE_RATES WHERE RATE_CODE = 'LIBOR-1Y'; - To join with the market prices table for a full curve view:
SELECT cr.CURVE_CODE, cr.RATE_CODE, mp.RATE FROM XTR_RM_MD_CURVE_RATES cr, XTR_MARKET_PRICES mp WHERE cr.RATE_CODE = mp.RATE_CODE AND cr.CURVE_CODE = 'EUR-SWAP';
Related Objects
This table is centrally linked within the Treasury market data model. Its two defined foreign keys create essential dependencies. The XTR_RM_MD_CURVES table is the parent, containing the master definition (name, type, currency) of the curve referenced by CURVE_CODE. The XTR_MARKET_PRICES table is the source for the actual numerical rate values referenced by RATE_CODE. This table is therefore a junction between curve definitions and the raw market data. It is likely referenced by various treasury valuation engines, risk calculation packages, and reporting views within the XTR module that consume constructed curves for financial processing.
-
Table: XTR_RM_MD_CURVE_RATES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_RM_MD_CURVE_RATES, object_name:XTR_RM_MD_CURVE_RATES, status:VALID, product: XTR - Treasury , description: Market data points of which market data curves are composed , implementation_dba_data: XTR.XTR_RM_MD_CURVE_RATES ,
-
Table: XTR_RM_MD_CURVE_RATES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_RM_MD_CURVE_RATES, object_name:XTR_RM_MD_CURVE_RATES, status:VALID, product: XTR - Treasury , description: Market data points of which market data curves are composed , implementation_dba_data: XTR.XTR_RM_MD_CURVE_RATES ,
-
APPS.XTR_RM_MD_CURVE_RATES_PKG dependencies on XTR_RM_MD_CURVE_RATES
12.1.1
-
APPS.XTR_MARKET_DATA_P dependencies on XTR_RM_MD_CURVE_RATES
12.2.2
-
APPS.XTR_RM_MD_CURVE_RATES_PKG dependencies on XTR_RM_MD_CURVE_RATES
12.2.2
-
APPS.XTR_MARKET_DATA_P dependencies on XTR_RM_MD_CURVE_RATES
12.1.1
-
VIEW: XTR.XTR_RM_MD_CURVE_RATES#
12.2.2
owner:XTR, object_type:VIEW, object_name:XTR_RM_MD_CURVE_RATES#, status:VALID,
-
APPS.XTR_RM_MD_CURVE_RATES_PKG SQL Statements
12.1.1
-
APPS.XTR_RM_MD_CURVE_RATES_PKG SQL Statements
12.2.2
-
APPS.XTR_MARKET_DATA_P dependencies on XTR_REVALUATION_RATES
12.2.2
-
VIEW: APPS.XTR_RM_MD_CRVRATES_V
12.1.1
-
PACKAGE BODY: APPS.XTR_RM_MD_CURVE_RATES_PKG
12.1.1
-
PACKAGE BODY: APPS.XTR_RM_MD_CURVE_RATES_PKG
12.2.2
-
APPS.XTR_MARKET_DATA_P dependencies on XTR_REVALUATION_RATES
12.1.1
-
VIEW: APPS.XTR_RM_MD_SHOW_CURVES_V
12.1.1
-
SYNONYM: APPS.XTR_RM_MD_CURVE_RATES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XTR_RM_MD_CURVE_RATES, status:VALID,
-
VIEW: APPS.XTR_RM_MD_SHOW_CURVES_V
12.2.2
-
VIEW: XTR.XTR_RM_MD_CURVE_RATES#
12.2.2
-
SYNONYM: APPS.XTR_RM_MD_CURVE_RATES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XTR_RM_MD_CURVE_RATES, status:VALID,
-
TABLE: XTR.XTR_RM_MD_CURVE_RATES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_RM_MD_CURVE_RATES, object_name:XTR_RM_MD_CURVE_RATES, status:VALID,
-
TABLE: XTR.XTR_RM_MD_CURVE_RATES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_RM_MD_CURVE_RATES, object_name:XTR_RM_MD_CURVE_RATES, status:VALID,
-
VIEW: APPS.XTR_RM_MD_CRVRATES_V
12.2.2
-
Table: XTR_RM_MD_CURVES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_RM_MD_CURVES, object_name:XTR_RM_MD_CURVES, status:VALID, product: XTR - Treasury , description: Market data curve attributes , implementation_dba_data: XTR.XTR_RM_MD_CURVES ,
-
Table: XTR_RM_MD_CURVES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_RM_MD_CURVES, object_name:XTR_RM_MD_CURVES, status:VALID, product: XTR - Treasury , description: Market data curve attributes , implementation_dba_data: XTR.XTR_RM_MD_CURVES ,
-
Table: XTR_MARKET_PRICES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_MARKET_PRICES, object_name:XTR_MARKET_PRICES, status:VALID, product: XTR - Treasury , description: Current rates for foreign exchange and money market deals , implementation_dba_data: XTR.XTR_MARKET_PRICES ,
-
Table: XTR_MARKET_PRICES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_MARKET_PRICES, object_name:XTR_MARKET_PRICES, status:VALID, product: XTR - Treasury , description: Current rates for foreign exchange and money market deals , implementation_dba_data: XTR.XTR_MARKET_PRICES ,
-
View: XTR_RM_MD_SHOW_CURVES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_SHOW_CURVES_V, object_name:XTR_RM_MD_SHOW_CURVES_V, status:VALID, product: XTR - Treasury , description: Historic rate information for those rates that belong to a market data curve , implementation_dba_data: APPS.XTR_RM_MD_SHOW_CURVES_V ,
-
View: XTR_RM_MD_SHOW_CURVES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_SHOW_CURVES_V, object_name:XTR_RM_MD_SHOW_CURVES_V, status:VALID, product: XTR - Treasury , description: Historic rate information for those rates that belong to a market data curve , implementation_dba_data: APPS.XTR_RM_MD_SHOW_CURVES_V ,
-
PACKAGE BODY: APPS.XTR_RM_MD_CURVE_RATES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_RM_MD_CURVE_RATES_PKG, status:VALID,
-
PACKAGE BODY: APPS.XTR_RM_MD_CURVE_RATES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_RM_MD_CURVE_RATES_PKG, status:VALID,
-
View: XTR_RM_MD_CRVRATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_CRVRATES_V, object_name:XTR_RM_MD_CRVRATES_V, status:VALID, product: XTR - Treasury , description: All market data points (and their attributes) that help compose market data curves , implementation_dba_data: APPS.XTR_RM_MD_CRVRATES_V ,
-
View: XTR_RM_MD_CRVRATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_CRVRATES_V, object_name:XTR_RM_MD_CRVRATES_V, status:VALID, product: XTR - Treasury , description: All market data points (and their attributes) that help compose market data curves , implementation_dba_data: APPS.XTR_RM_MD_CRVRATES_V ,
-
PACKAGE BODY: APPS.XTR_MARKET_DATA_P
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_MARKET_DATA_P, status:VALID,
-
PACKAGE BODY: APPS.XTR_MARKET_DATA_P
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_MARKET_DATA_P, status:VALID,
-
APPS.XTR_MARKET_DATA_P SQL Statements
12.2.2
-
VIEW: APPS.XTR_RM_MD_SHOW_CURVES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_SHOW_CURVES_V, object_name:XTR_RM_MD_SHOW_CURVES_V, status:VALID,
-
VIEW: APPS.XTR_RM_MD_SHOW_CURVES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_SHOW_CURVES_V, object_name:XTR_RM_MD_SHOW_CURVES_V, status:VALID,
-
APPS.XTR_MARKET_DATA_P SQL Statements
12.1.1
-
VIEW: APPS.XTR_RM_MD_CRVRATES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_CRVRATES_V, object_name:XTR_RM_MD_CRVRATES_V, status:VALID,
-
VIEW: APPS.XTR_RM_MD_CRVRATES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_RM_MD_CRVRATES_V, object_name:XTR_RM_MD_CRVRATES_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
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design 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