I_InterestCalculationCodeText

DDL: I_INTERESTCALCULATIONCODETEXT Type: view BASIC

Interest Calculation Code Text

I_InterestCalculationCodeText is a Basic CDS View that provides data about "Interest Calculation Code Text" in SAP S/4HANA. It reads from 1 data source (t056x) and exposes 4 fields with key fields InterestCalculationCode, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t056x t056x from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Interest Calculation Code Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InterestCalculationCode view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IFIINSTCALCCDT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InterestCalculationCode
KEY Language spras
InterestCalculationCodeName
_Language _Language
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Interest Calculation Code Text'
@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'InterestCalculationCode',
  usageType: {
    serviceQuality: #A,
    sizeCategory: #M,
    dataClass: #MASTER
  }
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
  sqlViewName: 'IFIINSTCALCCDT',
  buffering: {
    status: #ACTIVE,
    type:   #FULL
  },
  compiler.compareFilter: true
}

define view I_InterestCalculationCodeText
  as select from t056x
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast ( vzskz as farp_vzskz )  as InterestCalculationCode,
      @Semantics.language: true
  key spras                         as Language,
      @Semantics.text: true
      cast ( vtext as farp_vztext ) as InterestCalculationCodeName,
      _Language
}