P_MDRefInt
Market Data: Reference Interest Rate
P_MDRefInt is a Composite CDS View that provides data about "Market Data: Reference Interest Rate" in SAP S/4HANA. It reads from 2 data sources (P_MDRefIntCalDate, I_ReferenceInterestRateVal) and exposes 5 fields with key fields ReferenceInterestRate, CalendarDate. Part of development package FTR_MDM_CORE.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_MDRefIntCalDate | P_MDRefIntCalDate | from |
| I_ReferenceInterestRateVal | RefIntVal | left_outer |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | vdm_v_key_date |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PMDREFRATE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReferenceInterestRate | RefInt | ReferenceInterestRate | |
| KEY | CalendarDate | RefInt | CalendarDate | |
| Currency | ||||
| EffectiveDate | RefInt | EffectiveDate | ||
| EffectiveInterestRate | I_ReferenceInterestRateVal | EffectiveInterestRate |
@AbapCatalog.sqlViewName: 'PMDREFRATE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.serviceQuality: #B
@VDM.private:true
@VDM.viewType: #COMPOSITE
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view P_MDRefInt
with parameters
@Environment.systemField: #SYSTEM_DATE
P_KeyDate : vdm_v_key_date
as select from P_MDRefIntCalDate ( P_KeyDate : $parameters.P_KeyDate ) as RefInt
left outer join I_ReferenceInterestRateVal as RefIntVal
on RefInt.ReferenceInterestRate = RefIntVal.ReferenceInterestRate
{
key RefInt.ReferenceInterestRate,
key RefInt.CalendarDate,
RefIntVal._ReferenceInterestRate.Currency,
RefInt.EffectiveDate,
RefIntVal.EffectiveInterestRate
} where RefInt.EffectiveDate = RefIntVal.EffectiveDate
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA