I_EffectiveInterestRate

DDL: I_EFFECTIVEINTERESTRATE SQL: IEFFCTVIR Type: view COMPOSITE

Effective Interest Rate

I_EffectiveInterestRate is a Composite CDS View that provides data about "Effective Interest Rate" in SAP S/4HANA. It reads from 2 data sources (P_IRM_IR_Effective_Date, I_ReferenceInterestRateVal) and exposes 4 fields with key field ReferenceInterestRate.

Data Sources (2)

SourceAliasJoin Type
P_IRM_IR_Effective_Date P_IRM_IR_Effective_Date inner
I_ReferenceInterestRateVal ReferenceInterestRate from

Parameters (1)

NameTypeDefault
P_KeyDate vdm_v_key_date

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEFFCTVIR view
AbapCatalog.compiler.compareFilter 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
AbapCatalog.preserveKey true view
EndUserText.label Effective Interest Rate view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ReferenceInterestRate I_ReferenceInterestRateVal ReferenceInterestRate
EffectiveDate I_ReferenceInterestRateVal EffectiveDate
EffectiveInterestRate I_ReferenceInterestRateVal EffectiveInterestRate
_ReferenceInterestRate I_ReferenceInterestRateVal _ReferenceInterestRate
@AbapCatalog.sqlViewName: 'IEFFCTVIR'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass:  #MIXED
@AbapCatalog.preserveKey:true
@EndUserText.label: 'Effective Interest Rate'
define view I_EffectiveInterestRate
  with parameters
    P_KeyDate : vdm_v_key_date
  as select from I_ReferenceInterestRateVal                              as ReferenceInterestRate
    inner join   P_IRM_IR_Effective_Date(P_KeyDate: $parameters.P_KeyDate) as EffectiveDate on  ReferenceInterestRate.ReferenceInterestRate = EffectiveDate.ReferenceInterestRate
                                                                                            and ReferenceInterestRate.EffectiveDate         = EffectiveDate.EffectiveDate
{
  key ReferenceInterestRate.ReferenceInterestRate,
      ReferenceInterestRate.EffectiveDate,
      ReferenceInterestRate.EffectiveInterestRate,
      ReferenceInterestRate._ReferenceInterestRate
}