I_SitnDefDomainValueText

DDL: I_SITNDEFDOMAINVALUETEXT SQL: ISITDEFDOMVALTXT Type: view COMPOSITE

Fixed Domain Values - Text

I_SitnDefDomainValueText is a Composite CDS View that provides data about "Fixed Domain Values - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SAPDataDictionaryDomain, DomainValue, Language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISITDEFDOMVALTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey DomainValue view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Fixed Domain Values - Text view

Fields (4)

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

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 I_SitnDefDomainValueText.
-- 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: ISITDEFDOMVALTXT

CREATE VIEW I_SitnDefDomainValueText AS
SELECT
  domname AS SAPDataDictionaryDomain,
  domvalue_l AS DomainValue,
  ddlanguage AS Language,
  ddtext AS DomainText
FROM dd07t
;