I_EDocDatabaseTableText

DDL: I_EDOCDATABASETABLETEXT Type: view_entity BASIC

eDocument Database Table Name - Text

I_EDocDatabaseTableText is a Basic CDS View that provides data about "eDocument Database Table Name - Text" in SAP S/4HANA. It reads from 1 data source (dd02t) and exposes 4 fields with key fields ElectronicDocTableName, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd02t dd02t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_EDocDatabaseTable _EDocDatabaseTable $projection.ElectronicDocTableName = _EDocDatabaseTable.ElectronicDocTableName

Annotations (9)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Database Table Name - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #TEXT view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ElectronicDocTableName tabname Table/Constant Value
KEY Language ddlanguage Lang.
ABAPDataElementDescription ddtext Short text
_EDocDatabaseTable _EDocDatabaseTable

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_EDocDatabaseTableText.
-- 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_EDocDatabaseTableText AS
SELECT
  tabname AS ElectronicDocTableName,
  ddlanguage AS Language,
  ddtext AS ABAPDataElementDescription
FROM dd02t
LEFT OUTER JOIN I_EDocDatabaseTable AS _EDocDatabaseTable ON ElectronicDocTableName = _EDocDatabaseTable.ElectronicDocTableName  -- association [0..1]
;