I_IntrstCalcDateReference

DDL: I_INTRSTCALCDATEREFERENCE Type: view_entity BASIC Package: FTTR_CORE

Interest Calculation Date Reference

I_IntrstCalcDateReference is a Basic CDS View that provides data about "Interest Calculation Date Reference" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field InterestCalculationDateRef. It has 1 association to related views. Part of development package FTTR_CORE.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IntrstCalcDateReferenceText _Text $projection.InterestCalculationDateRef = _Text.InterestCalculationDateRef

Annotations (10)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Interest Calculation Date Reference view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey InterestCalculationDateRef view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY InterestCalculationDateRef
_Text _Text
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Interest Calculation Date Reference'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
  representativeKey: 'InterestCalculationDateRef',
  usageType: { dataClass: #MASTER,
               serviceQuality: #A,
               sizeCategory: #S
  },
  resultSet.sizeCategory:#XS
}
@Search.searchable: true

define view entity I_IntrstCalcDateReference
  as select from dd07l
  association [0..*] to I_IntrstCalcDateReferenceText as _Text on $projection.InterestCalculationDateRef = _Text.InterestCalculationDateRef
{

      @ObjectModel.text.association: '_Text'
      @Search: {
          defaultSearchElement: true,
          ranking: #HIGH,
          fuzzinessThreshold: 0.9
      }
  key cast(dd07l.domvalue_l as reference_date_for_calc_dte) as InterestCalculationDateRef,

      _Text

}
where
      dd07l.domname  = 'TFMVRELDAT'
  and dd07l.as4local = 'A'