I_RSHGetDomainText

DDL: I_RSHGETDOMAINTEXT SQL: IRSHGETDOMTEXT Type: view BASIC

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)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
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

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DomainValueName dd07t domname
KEY DomainValue dd07t domvalue_l
KEY SequenceNumber dd07t valpos
DomainText dd07t ddtext
@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
}
}*/