I_BusPartCommMdmTypeTxt

DDL: I_BUSPARTCOMMMDMTYPETXT SQL: IBPCOMMTYPETXT Type: view BASIC

Business Partner Communication Type Text

I_BusPartCommMdmTypeTxt is a Basic CDS View that provides data about "Business Partner Communication Type Text" in SAP S/4HANA. It reads from 1 data source (tsact) and exposes 3 fields with key fields CommunicationMediumType, Language.

Data Sources (1)

SourceAliasJoin Type
tsact tsact from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPCOMMTYPETXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Business Partner Communication Type Text view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CommunicationMediumType comm_type
KEY Language langu
CommunicationMediumTypeName comm_text Communication Type Description
@AbapCatalog.sqlViewName: 'IBPCOMMTYPETXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Business Partner Communication Type Text'
@ObjectModel.dataCategory:#TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view I_BusPartCommMdmTypeTxt
  as select from tsact
{
  key comm_type as CommunicationMediumType,
      @Semantics.language: true
  key langu     as Language,
      @Semantics.text: true
      @EndUserText.label: 'Communication Type Description'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      comm_text as CommunicationMediumTypeName
}