P_PreEffectiveInterestRate
P_PreEffectiveInterestRate is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_IRM_IR_Pre_Effective_Date, I_ReferenceInterestRateVal) and exposes 4 fields with key field ReferenceInterestRate.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_IRM_IR_Pre_Effective_Date | P_IRM_IR_Pre_Effective_Date | inner |
| I_ReferenceInterestRateVal | ReferenceInterestRate | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_KeyDate | vdm_v_key_date |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPREEFFINTRATE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ReferenceInterestRate | I_ReferenceInterestRateVal | ReferenceInterestRate | |
| EffectiveDate | I_ReferenceInterestRateVal | EffectiveDate | ||
| EffectiveInterestRate | I_ReferenceInterestRateVal | EffectiveInterestRate | ||
| _ReferenceInterestRate | I_ReferenceInterestRateVal | _ReferenceInterestRate |
@AbapCatalog.sqlViewName: 'PPREEFFINTRATE'
@AbapCatalog.compiler.compareFilter: true
@VDM.private: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MIXED
define view P_PreEffectiveInterestRate
with parameters
P_KeyDate : vdm_v_key_date
as select from I_ReferenceInterestRateVal as ReferenceInterestRate
inner join P_IRM_IR_Pre_Effective_Date(P_KeyDate: $parameters.P_KeyDate) as PreEffectiveDate on ReferenceInterestRate.ReferenceInterestRate = PreEffectiveDate.ReferenceInterestRate
and ReferenceInterestRate.EffectiveDate = PreEffectiveDate.EffectiveDate
{
key ReferenceInterestRate.ReferenceInterestRate,
ReferenceInterestRate.EffectiveDate,
ReferenceInterestRate.EffectiveInterestRate,
ReferenceInterestRate._ReferenceInterestRate
}
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