I_CostingValuationVariant

DDL: I_COSTINGVALUATIONVARIANT Type: view BASIC

Valuation Variant in Costing

I_CostingValuationVariant is a Basic CDS View (Dimension) that provides data about "Valuation Variant in Costing" in SAP S/4HANA. It reads from 1 data source (tck05) and exposes 4 fields with key field ValuationVariant. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tck05 tck05 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CostingValuationVarText _Text $projection.ValuationVariant = _Text.ValuationVariant

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IFICOSTVALNVAR view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ValuationVariant view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Valuation Variant in Costing view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ValuationVariant bwvar
OverheadCostingSheet kalsm
ExtProcuredMatlOvhdCostingSht
_Text _Text
@AbapCatalog: { 
  sqlViewName: 'IFICOSTVALNVAR',
  compiler.compareFilter: true,
  preserveKey: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API }
@Analytics: { 
  dataCategory: #DIMENSION, 
  dataExtraction.enabled: true
}
@ObjectModel: {
  usageType: {
    dataClass: #CUSTOMIZING,
    serviceQuality: #A,
    sizeCategory: #S
  },
  supportedCapabilities: [ 
    #ANALYTICAL_DIMENSION, 
    #CDS_MODELING_ASSOCIATION_TARGET, 
    #SQL_DATA_SOURCE, 
    #CDS_MODELING_DATA_SOURCE, 
    #EXTRACTION_DATA_SOURCE, 
    #SEARCHABLE_ENTITY ],
  modelingPattern: #ANALYTICAL_DIMENSION, 
  representativeKey: 'ValuationVariant'
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@EndUserText.label: 'Valuation Variant in Costing'

define view I_CostingValuationVariant 
  as select from tck05 
  association [0..*] to I_CostingValuationVarText as _Text on $projection.ValuationVariant = _Text.ValuationVariant
{
      @Search: { 
        defaultSearchElement: true,
        ranking: #HIGH 
      }
      @ObjectModel.text.association: '_Text'
  key bwvar as ValuationVariant,
      kalsm as OverheadCostingSheet,
      cast(kalsm_raw as fml_kalsm_raw preserving type) as ExtProcuredMatlOvhdCostingSht,
      
      _Text
}