I_ChangeDocFieldDtel

DDL: I_CHANGEDOCFIELDDTEL Type: view_entity Package: SZD

Feldnamentext aus Datenelement

I_ChangeDocFieldDtel is a CDS View that provides data about "Feldnamentext aus Datenelement" in SAP S/4HANA. It reads from 2 data sources (dd03nd, dd04t) and exposes 5 fields with key fields ddlanguage, Viewname, Fieldname. Part of development package SZD.

Data Sources (2)

SourceAliasJoin Type
dd03nd dd03nd from
dd04t dd04t left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Feldnamentext aus Datenelement view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ddlanguage dd04t ddlanguage Lang.
KEY Viewname dd03nd strucobjn DD: Name of a structured object (e.g. entity, context)
KEY Fieldname dd03nd fieldname UI Group FieldName
Rollname dd03nd rollname Repr. Data Elem
text dd04t 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_ChangeDocFieldDtel.
-- 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.

CREATE VIEW I_ChangeDocFieldDtel AS
SELECT
  dd04t.ddlanguage AS ddlanguage,
  dd03nd.strucobjn AS Viewname,
  dd03nd.fieldname AS Fieldname,
  dd03nd.rollname AS Rollname,
  dd04t.ddtext AS text
FROM dd03nd
LEFT OUTER JOIN dd04t ON /* join condition not captured in parsed metadata */
;