I_SalesDistributionStatusText

DDL: I_SALESDISTRIBUTIONSTATUSTEXT SQL: ISLSDISTRBTNT Type: view BASIC

I view for TVMST

I_SalesDistributionStatusText is a Basic CDS View that provides data about "I view for TVMST" in SAP S/4HANA. It reads from 1 data source (tvmst) and exposes 3 fields with key fields ProductSalesStatus, Language.

Data Sources (1)

SourceAliasJoin Type
tvmst tvmst from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISLSDISTRBTNT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label I view for TVMST view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProductSalesStatus view
Search.searchable true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProductSalesStatus _SalesDistributionStatusText vmsta
KEY Language _SalesDistributionStatusText spras
ProductSalesStatusDescription _SalesDistributionStatusText vmstb
@AbapCatalog.sqlViewName: 'ISLSDISTRBTNT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'I view for TVMST'
@VDM.viewType: #BASIC 
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ProductSalesStatus'
@Search.searchable: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING 
define view I_SalesDistributionStatusText as select from tvmst _SalesDistributionStatusText
 {
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key _SalesDistributionStatusText.vmsta as ProductSalesStatus,
  @Semantics.language: true
  key _SalesDistributionStatusText.spras as Language,
  @Semantics.text
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  _SalesDistributionStatusText.vmstb as ProductSalesStatusDescription
  
}