P_PreEffectiveInterestRate

DDL: P_PREEFFECTIVEINTERESTRATE SQL: PPREEFFINTRATE Type: view COMPOSITE

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)

SourceAliasJoin Type
P_IRM_IR_Pre_Effective_Date P_IRM_IR_Pre_Effective_Date inner
I_ReferenceInterestRateVal ReferenceInterestRate from

Parameters (1)

NameTypeDefault
P_KeyDate vdm_v_key_date

Annotations (9)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}