I_BusPartCommMdmTypeTxt
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)
| Source | Alias | Join Type |
|---|---|---|
| tsact | tsact | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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