I_Matlvaluationclass

DDL: I_MATLVALUATIONCLASS Type: view_entity BASIC Package: VDM_MD_PRODUCT_DDIC

Valuation Class Based on Product Type

I_Matlvaluationclass is a Basic CDS View that provides data about "Valuation Class Based on Product Type" in SAP S/4HANA. It reads from 2 data sources (t025, t134) and exposes 4 fields with key fields MaterialType, MaterialValuationClass. It has 2 associations to related views. Part of development package VDM_MD_PRODUCT_DDIC.

Data Sources (2)

SourceAliasJoin Type
t025 t025 from
t134 t134 inner

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_Matlvaluationclasstext _Text $projection.MaterialValuationClass = _Text.MaterialValuationClass
[0..1] I_MaterialType _MaterialType $projection.MaterialType = _MaterialType.MaterialType

Annotations (12)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Valuation Class Based on Product Type view
Search.searchable true view
ObjectModel.representativeKey MaterialValuationClass view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName IMATVALNCLASS view
Consumption.ranked true view
AbapCatalog.entityBuffer.definitionAllowed true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MaterialType
KEY MaterialValuationClass
_Text _Text
_MaterialType _MaterialType
//@ClientDependent: true

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Valuation Class Based on Product Type'
@Search.searchable: true
@ObjectModel.representativeKey: 'MaterialValuationClass'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.technicalName: 'IMATVALNCLASS'
@Consumption.ranked: true
@AbapCatalog.entityBuffer.definitionAllowed: true
define view entity I_Matlvaluationclass
  //with parameters

  //P_MaterialType: CHAR04

  as select from t025
    inner join   t134 on t025.kkref = t134.kkref

  association [0..*] to I_Matlvaluationclasstext as _Text         on $projection.MaterialValuationClass = _Text.MaterialValuationClass
  association [0..1] to I_MaterialType           as _MaterialType on $projection.MaterialType = _MaterialType.MaterialType
{
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #MEDIUM
       @ObjectModel.foreignKey.association: '_MaterialType'
  key  cast(t134.mtart as producttype preserving type)    as MaterialType,
       @ObjectModel.text.association: '_Text'
       @Search.defaultSearchElement: true
       @Search.fuzzinessThreshold: 0.8
       @Search.ranking: #HIGH
  key  cast(t025.bklas as valuationclass preserving type) as MaterialValuationClass,
       //       @Search.defaultSearchElement: true

       //       @Search.fuzzinessThreshold: 0.8

       //       @Search.ranking: #HIGH

       _Text,
       @Consumption.filter.hidden: true
       _MaterialType
}
//where I_Matlvaluationclass.MaterialType = C_product.MaterialType