I_SVTCalculationDecisionText

DDL: I_SVTCALCULATIONDECISIONTEXT SQL: ISVTCLCDECTXT Type: view BASIC Package: EHPMA_SVT_CALCULATION

SVT Calculation Decision - Text

I_SVTCalculationDecisionText is a Basic CDS View that provides data about "SVT Calculation Decision - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SVTCalculationDecision, Language. It has 1 association to related views. Part of development package EHPMA_SVT_CALCULATION.

Data Sources (1)

SourceAliasJoin Type
dd07t SVTCalculationDecisionText from

Associations (1)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISVTCLCDECTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label SVT Calculation Decision - Text view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.representativeKey SVTCalculationDecision view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SVTCalculationDecision
KEY Language dd07t ddlanguage
SVTCalculationDecisionText dd07t ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'ISVTCLCDECTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'SVT Calculation Decision - Text'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.representativeKey: 'SVTCalculationDecision'
@ObjectModel.usageType:{ serviceQuality: #A,        // < 1 msec

                         sizeCategory:   #S,        // < 1.000

                         dataClass:      #META }
@VDM.viewType: #BASIC

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
define view I_SVTCalculationDecisionText
  as select from dd07t as SVTCalculationDecisionText
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{

  key cast(SVTCalculationDecisionText.domvalue_l as ehpma_svt_calc_result_action ) as SVTCalculationDecision,

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

      @Semantics.text: true
      SVTCalculationDecisionText.ddtext                                             as SVTCalculationDecisionText,

      /* Associations */
      _Language
}
where
      SVTCalculationDecisionText.domname  = 'EHPMA_SVT_CALC_RESULT_ACTION'
  and SVTCalculationDecisionText.as4local = 'A'