I_BusPartCommMdmTypeVH
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)
| Source | Alias | Join Type |
|---|---|---|
| tsac | tsac | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusPartCommMdmTypeTxt | _Text | $projection.CommunicationMediumType = _Text.CommunicationMediumType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA