I_InterestDueDateReference

DDL: I_INTERESTDUEDATEREFERENCE Type: view_entity BASIC Package: FTTR_CORE

Interest Calculation Due Date Reference

I_InterestDueDateReference is a Basic CDS View that provides data about "Interest Calculation Due Date Reference" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field InterestDueDateReference. 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_InterestDueDateReferenceText _Text $projection.InterestDueDateReference = _Text.InterestDueDateReference

Annotations (10)

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

Fields (2)

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

define view entity I_InterestDueDateReference 
  as select from           dd07l
    association [0..*] to I_InterestDueDateReferenceText as _Text on $projection.InterestDueDateReference = _Text.InterestDueDateReference
{

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

      _Text

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