I_Matlabcclassificationtext

DDL: I_MATLABCCLASSIFICATIONTEXT Type: view BASIC Package: VDM_MD_PRODUCT_DDIC

ABC INDICATOR TEXT

I_Matlabcclassificationtext is a Basic CDS View that provides data about "ABC INDICATOR TEXT" in SAP S/4HANA. It reads from 1 data source (tmabct) and exposes 3 fields with key fields MaterialABCClassification, Language. Part of development package VDM_MD_PRODUCT_DDIC.

Data Sources (1)

SourceAliasJoin Type
tmabct tmabct from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IABCINDICTRTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ABC INDICATOR TEXT view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey MaterialABCClassification view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY MaterialABCClassification maabc
KEY Language tmabct spras
MaterialABCClassificationDesc
@AbapCatalog:{
  sqlViewName: 'IABCINDICTRTXT',
  compiler.compareFilter: true,
  preserveKey: true,
  buffering:{
    status: #ACTIVE,
    type: #FULL
   }
 }

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'ABC INDICATOR TEXT'
@Search.searchable: true
@ObjectModel:{
  dataCategory: #TEXT,
  usageType:{
    serviceQuality: #A,
    sizeCategory : #S,
    dataClass: #CUSTOMIZING
  },
  representativeKey: 'MaterialABCClassification'
}

@ClientHandling.algorithm: #SESSION_VARIABLE

define view I_Matlabcclassificationtext
  as select from tmabct
{
  key maabc                                                         as MaterialABCClassification,
      @Semantics.language: true
  key tmabct.spras                                                  as Language,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      cast( tmabc as consumptionvaluecategorytext preserving type ) as MaterialABCClassificationDesc


}