I_RSHGetDomainText
Returns Domain Text
I_RSHGetDomainText is a Basic CDS View that provides data about "Returns Domain Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields DomainValueName, DomainValue, SequenceNumber.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRSHGETDOMTEXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Returns Domain Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | DomainValue | view |
@AbapCatalog.sqlViewName: 'IRSHGETDOMTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Returns Domain Text'
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #D
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'DomainValue'
/*
CONTRACT**********************************************************************************************************************
Specification: This view determines the text(s) of domain fixed value(s) in the logon language
Requires: n/a
Ensures: that only that DDIC domain selected with right conditions like only active version etc.
Owners: PSP
Contributors: PSP
Unit Test required Y/N: No
Additional comments None
END OF CONTRACT***************************************************************************************************************
*/
define view I_RSHGetDomainText
as select from dd07t
{
key dd07t.domname as DomainValueName,
key dd07t.domvalue_l as DomainValue,
key dd07t.valpos as SequenceNumber,
@Semantics.text: true
dd07t.ddtext as DomainText
}
where
dd07t.ddlanguage = $session.system_language
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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