I_BusPartCommMdmTypeVH

DDL: I_BUSPARTCOMMMDMTYPEVH SQL: IBPCOMMTYPEVH Type: view BASIC Package: MDC_BUPA_BO

Business Partner Communication Type VH

I_BusPartCommMdmTypeVH is a Basic CDS View that provides data about "Business Partner Communication Type VH" in SAP S/4HANA. It reads from 1 data source (tsac) and exposes 2 fields with key field CommunicationMediumType. It has 1 association to related views. Part of development package MDC_BUPA_BO.

Data Sources (1)

SourceAliasJoin Type
tsac tsac from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusPartCommMdmTypeTxt _Text $projection.CommunicationMediumType = _Text.CommunicationMediumType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IBPCOMMTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Business Partner Communication Type VH view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CommunicationMediumType tsac comm_type
_Text _Text
@AbapCatalog.sqlViewName: 'IBPCOMMTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Business Partner Communication Type VH'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
define view I_BusPartCommMdmTypeVH
  as select from tsac
  association [0..*] to I_BusPartCommMdmTypeTxt as _Text on $projection.CommunicationMediumType = _Text.CommunicationMediumType
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key tsac.comm_type as CommunicationMediumType,
      _Text
}
where
     comm_type = 'FAX'
  or comm_type = 'INT'
  or comm_type = 'LET'
  or comm_type = 'TEL'
  or comm_type = 'URI'