I_CostingValuationVarText

DDL: I_COSTINGVALUATIONVARTEXT Type: view BASIC

Valuation Variant in Costing - Text

I_CostingValuationVarText is a Basic CDS View that provides data about "Valuation Variant in Costing - Text" in SAP S/4HANA. It reads from 1 data source (tck06) and exposes 4 fields with key fields Language, ValuationVariant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tck06 tck06 from

Associations (1)

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

Annotations (21)

NameValueLevelField
AbapCatalog.sqlViewName IFICOSTVALNVARX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.numberOfKeyFields 0 view
AbapCatalog.buffering.status #ACTIVE view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ValuationVariant view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Valuation Variant in Costing - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY ValuationVariant bwvar
ValuationVariantName txbwv
_Language _Language
@AbapCatalog: { 
  sqlViewName: 'IFICOSTVALNVARX',
  compiler.compareFilter: true,
  preserveKey: true ,
  buffering: { 
    type: #FULL, 
    numberOfKeyFields: 0, 
    status: #ACTIVE } 
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling: { type: #CLIENT_DEPENDENT,
                   algorithm: #SESSION_VARIABLE }
@ObjectModel: { 
  dataCategory: #TEXT,
  representativeKey: 'ValuationVariant',
  usageType: { serviceQuality: #A,
               sizeCategory: #S,
               dataClass: #CUSTOMIZING },
  supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, 
                           #SQL_DATA_SOURCE, 
                           #CDS_MODELING_DATA_SOURCE, 
                           #CDS_MODELING_ASSOCIATION_TARGET, 
                           #EXTRACTION_DATA_SOURCE, 
                           #SEARCHABLE_ENTITY ],
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT } 
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@VDM: { 
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API }
@EndUserText.label: 'Valuation Variant in Costing - Text'

define view I_CostingValuationVarText
  as select from tck06
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key spras as Language,
  key bwvar as ValuationVariant,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      @Semantics.text: true
      txbwv as ValuationVariantName,

      _Language
}