I_SwText

DDL: I_SWTEXT SQL: ISWTEXT Type: view BASIC Package: VDM_PLMB_ESD

Material Description

I_SwText is a Basic CDS View that provides data about "Material Description" in SAP S/4HANA. It reads from 1 data source (makt) and exposes 3 fields with key fields Material, Language. Part of development package VDM_PLMB_ESD.

Data Sources (1)

SourceAliasJoin Type
makt makt from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISWTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
EndUserText.label Material Description view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey Material view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Material matnr
KEY Language spras
MaterialName maktx
@AbapCatalog.sqlViewName: 'ISWTEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@EndUserText.label: 'Material Description'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'Material'

@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
define view I_SwText
  as select from makt
{
  key matnr     as Material,
      @Semantics.language: true
  key spras     as Language,
      @Semantics.text: true
      maktx     as MaterialName
}
where
      matnr is not null
  and spras = $session.system_language