Data_Element_Text

DDL: DATA_ELEMENT_TEXT SQL: DATAELMNTTEXT Type: view

Data Element Description

Data_Element_Text is a CDS View that provides data about "Data Element Description" in SAP S/4HANA. It reads from 1 data source (dd04t) and exposes 4 fields with key fields DataElement, Language.

Data Sources (1)

SourceAliasJoin Type
dd04t dd04t from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName DATAELMNTTEXT view
EndUserText.label Data Element Description view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY DataElement dd04t rollname Repr. Data Elem
KEY Language dd04t ddlanguage Lang.
DataElementText dd04t ddtext Short text
DataElementText_Medium dd04t scrtext_m Medium Label

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 Data_Element_Text.
-- 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: DATAELMNTTEXT

CREATE VIEW Data_Element_Text AS
SELECT
  dd04t.rollname AS DataElement,
  dd04t.ddlanguage AS Language,
  dd04t.ddtext AS DataElementText,
  dd04t.scrtext_m AS DataElementText_Medium
FROM dd04t
;