I_DE_DtaMdmExchRecipientCodeT
Recipient Code for DME - Text
I_DE_DtaMdmExchRecipientCodeT is a Basic CDS View that provides data about "Recipient Code for DME - Text" in SAP S/4HANA. It reads from 1 data source (I_BR_Domain) and exposes 4 fields with key fields DataMediumExchangeIndicator, Language. Part of development package MDC_SUPPL_GOV_BO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BR_Domain | I_BR_Domain | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISUPLRDMEINDT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Recipient Code for DME - Text | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.representativeKey | DataMediumExchangeIndicator | view | |
| ObjectModel.dataCategory | #TEXT | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DataMediumExchangeIndicator | |||
| KEY | Language | Language | ||
| ExchangeIndicatorText | DomainText | Data Medium Exchange Indicator Text | ||
| DomainValue | DomainValue |
@AbapCatalog.sqlViewName: 'ISUPLRDMEINDT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Recipient Code for DME - Text'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter:true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel: {
usageType: {
serviceQuality: #A,
sizeCategory: #M,
dataClass: #MASTER
},
representativeKey: 'DataMediumExchangeIndicator',
dataCategory: #TEXT
}
define view I_DE_DtaMdmExchRecipientCodeT
as select from I_BR_Domain
{
@Consumption.hidden: true
key cast ( cast ( substring( DomainValue, 1, 1 ) as abap.char( 1 ) ) as dtams ) as DataMediumExchangeIndicator,
@Semantics.language:true
key Language as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
@EndUserText.label: 'Data Medium Exchange Indicator Text'
DomainText as ExchangeIndicatorText,
@Search.defaultSearchElement: true
@Consumption.hidden: true
DomainValue as DomainValue
}
where
Name = 'DTAMS'
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