I_InterestCalculationMethodTxt

DDL: I_INTERESTCALCULATIONMETHODTXT SQL: IINTCALMETHODT Type: view BASIC

Interest Calculation Method - Text

I_InterestCalculationMethodTxt is a Basic CDS View that provides data about "Interest Calculation Method - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields InterestCalculationMethod, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t DomainText from

Associations (2)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IINTCALMETHODT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Interest Calculation Method - Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InterestCalculationMethod
KEY Language dd07t ddlanguage
InterestCalculationMethodName
_Language _Language
_InterestCalculationMethod _InterestCalculationMethod
@AbapCatalog.sqlViewName: 'IINTCALMETHODT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Interest Calculation Method - Text'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.modelingPattern: [ #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_InterestCalculationMethodTxt
  as select from dd07t as DomainText
  association [0..1] to I_InterestCalculationMethod as _InterestCalculationMethod on $projection.InterestCalculationMethod = _InterestCalculationMethod.InterestCalculationMethod
  association [0..1] to I_Language                  as _Language                  on $projection.Language = _Language.Language

{
      @ObjectModel.foreignKey.association: '_InterestCalculationMethod'
      @ObjectModel.text.element: ['InterestCalculationMethodName']
  key cast(DomainText.domvalue_l as szbmeth )                                    as InterestCalculationMethod,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key DomainText.ddlanguage                                                      as Language,

      @Semantics.text: true
      cast(DomainText.ddtext as interest_rate_calc_method_name preserving type ) as InterestCalculationMethodName,

      _Language,

      _InterestCalculationMethod
}
where
      DomainText.domname  = 'SZBMETH'
  and DomainText.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_INTERESTCALCULATIONMETHOD",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/