I_ControllingValuationTypeText

DDL: I_CONTROLLINGVALUATIONTYPETEXT SQL: IFICOVALUATTYPT Type: view BASIC Package: FINS_FIS_FICO

Controlling Valuation Type Text

I_ControllingValuationTypeText is a Basic CDS View that provides data about "Controlling Valuation Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields ControllingValuationType, Language. It has 2 associations to related views. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (13)

NameValueLevelField
EndUserText.label Controlling Valuation Type Text view
AbapCatalog.sqlViewName IFICOVALUATTYPT view
VDM.viewType #BASIC view
Analytics.dataExtraction.enabled true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ControllingValuationType view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ControllingValuationType
KEY Language
DomainValue domvalue_l
ControllingValuationTypeName
_ControllingValuationType _ControllingValuationType
_Language _Language
@EndUserText.label: 'Controlling Valuation Type Text'
@AbapCatalog.sqlViewName: 'IFICOVALUATTYPT'
@VDM.viewType: #BASIC

@Analytics.dataExtraction.enabled: true
@Metadata.ignorePropagatedAnnotations: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ControllingValuationType'
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@Search.searchable: true

define view I_ControllingValuationTypeText
  as select from dd07t
  association [1..1] to I_ControllingValuationType as _ControllingValuationType on $projection.ControllingValuationType = _ControllingValuationType.ControllingValuationType
  association [0..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language
{

      @ObjectModel.foreignKey.association: '_ControllingValuationType'
      @ObjectModel.text.element: ['ControllingValuationType']
  key substring(domvalue_l, 1, 1)                             as ControllingValuationType,

      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language
  key cast( ddlanguage as spras preserving type )             as Language,
      @Analytics.hidden: true
      @Consumption.hidden: true
      domvalue_l                                              as DomainValue,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Semantics.text: true
      cast(ddtext as fml_valuation_view_text preserving type) as ControllingValuationTypeName,
      _ControllingValuationType,
      _Language

}
where
      dd07t.domname  = 'VALUTYP'
  and dd07t.as4local = 'A'
  and dd07t.as4vers  = '0000';