I_InterestCalculationCode

DDL: I_INTERESTCALCULATIONCODE Type: view BASIC

Interest Calculation Code

I_InterestCalculationCode is a Basic CDS View (Dimension) that provides data about "Interest Calculation Code" in SAP S/4HANA. It reads from 1 data source (t056) and exposes 4 fields with key field InterestCalculationCode. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t056 t056 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_InterestCalculationCodeText _Text $projection.InterestCalculationCode = _Text.InterestCalculationCode
[0..1] I_InterestCalculationType _InterestCalculationType $projection.InterestCalculationCategory = _InterestCalculationType.InterestCalculationCategory

Annotations (14)

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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InterestCalculationCode
InterestCalculationCategory kennz
_Text _Text
_InterestCalculationType _InterestCalculationType
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Interest Calculation Code'
@Analytics.dataCategory: #DIMENSION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog: {
  sqlViewName: 'IFIINSTCALCCD',
  buffering: {
    status: #ACTIVE,
    type:   #FULL
  },
  compiler.compareFilter: true
}
@ObjectModel.representativeKey: 'InterestCalculationCode'

@ObjectModel.usageType: {
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #MASTER
}

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view I_InterestCalculationCode
  as select from t056
  association [0..*] to I_InterestCalculationCodeText as _Text                    on $projection.InterestCalculationCode = _Text.InterestCalculationCode
  association [0..1] to I_InterestCalculationType     as _InterestCalculationType on $projection.InterestCalculationCategory = _InterestCalculationType.InterestCalculationCategory
{
      @ObjectModel.text.association: '_Text'
  key cast ( vzskz as farp_vzskz ) as InterestCalculationCode,
      @ObjectModel.foreignKey.association: '_InterestCalculationType'
      kennz                        as InterestCalculationCategory,

      _Text,
      _InterestCalculationType
}