I_ControllingValuationType

DDL: I_CONTROLLINGVALUATIONTYPE SQL: IFICOVALUATTYP Type: view BASIC Package: FINS_FIS_FICO

Controlling Valuation Type

I_ControllingValuationType is a Basic CDS View (Dimension) that provides data about "Controlling Valuation Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ControllingValuationType. It has 1 association to related views. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ControllingValuationTypeText _Text $projection.DomainValue = _Text.DomainValue

Annotations (14)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingValuationType
DomainValue domvalue_l
ControllingValuationTypeName
@EndUserText.label: 'Controlling Valuation Type'
@AbapCatalog.sqlViewName: 'IFICOVALUATTYP'
@VDM.viewType: #BASIC
@Analytics: { dataCategory: #DIMENSION , dataExtraction.enabled: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'ControllingValuationType'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
   semanticKey: ['CostingVariant'],
   usageType: {
      dataClass: #CUSTOMIZING,
      serviceQuality: #A,
      sizeCategory: #S },
   resultSet.sizeCategory:#XS }
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true

define view I_ControllingValuationType

  as select from dd07l
  association [0..*] to I_ControllingValuationTypeText as _Text on $projection.DomainValue = _Text.DomainValue
{

      @ObjectModel.text.element: ['ControllingValuationTypeName']
  key cast( substring(dd07l.domvalue_l, 1, 1) as fins_valutyp_wo_cogm )     as ControllingValuationType,
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      domvalue_l                                                            as DomainValue,
      
      @Semantics.text: true
      _Text[Language=$session.system_language].ControllingValuationTypeName as ControllingValuationTypeName

}
where
      dd07l.domname  = 'VALUTYP'
  and dd07l.as4local = 'A'
  and dd07l.as4vers  = '0000'
  //Remove Profit Center Valuation in Cloud

  and dd07l.domvalue_l <> '2';