I_EDocDatabaseTable

DDL: I_EDOCDATABASETABLE Type: view_entity BASIC

eDocument Database Table Name

I_EDocDatabaseTable is a Basic CDS View that provides data about "eDocument Database Table Name" in SAP S/4HANA. It reads from 1 data source (dd02l) and exposes 3 fields with key field ElectronicDocTableName. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd02l dd02l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EDocDatabaseTableText _EDocDatabaseTableText $projection.ElectronicDocTableName = _EDocDatabaseTableText.ElectronicDocTableName

Annotations (8)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ElectronicDocTableName tabname Table/Constant Value
ABAPDataElementDescription
_EDocDatabaseTableText _EDocDatabaseTableText

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_EDocDatabaseTable.
-- 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_EDocDatabaseTable AS
SELECT
  tabname AS ElectronicDocTableName,
  _EDocDatabaseTableText[1: Language = $session.system_language].ABAPDataElementDescription AS ABAPDataElementDescription
FROM dd02l
LEFT OUTER JOIN I_EDocDatabaseTableText AS _EDocDatabaseTableText ON ElectronicDocTableName = _EDocDatabaseTableText.ElectronicDocTableName  -- association [0..*]
;