R_Sitn2DomainText

DDL: R_SITN2DOMAINTEXT SQL: RSITN2DOMAINTXT Type: view BASIC

Fixed Domain Values - Text

R_Sitn2DomainText is a Basic CDS View that provides data about "Fixed Domain Values - Text" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 5 fields with key fields SAPDataDictionaryDomain, Language, DomainValue. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
dd07l _dd07l inner
dd07t _dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language _dd07t.ddlanguage = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName RSITN2DOMAINTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Fixed Domain Values - Text view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SAPDataDictionaryDomain dd07t domname Domain
KEY Language dd07t ddlanguage Lang.
KEY DomainValue dd07t domvalue_l Lower Value
DomainText dd07t ddtext Short text
_Language _Language

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view R_Sitn2DomainText.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: RSITN2DOMAINTXT

CREATE VIEW R_Sitn2DomainText AS
SELECT
  _dd07t.domname AS SAPDataDictionaryDomain,
  _dd07t.ddlanguage AS Language,
  _dd07t.domvalue_l AS DomainValue,
  _dd07t.ddtext AS DomainText
FROM dd07t AS _dd07t
INNER JOIN dd07l AS _dd07l ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS _Language ON _dd07t.ddlanguage = _Language.Language  -- association [0..1]
;