I_ElectronicDocTypeText

DDL: I_ELECTRONICDOCTYPETEXT Type: view BASIC

eDocument Type Text

I_ElectronicDocTypeText is a Basic CDS View that provides data about "eDocument Type Text" in SAP S/4HANA. It reads from 1 data source (edotypet) and exposes 3 fields with key fields Language, ElectronicDocType.

Data Sources (1)

SourceAliasJoin Type
edotypet edotypet from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IEDOTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Type Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras Off. Language
KEY ElectronicDocType edoc_type eDoc Type
ElectronicDocTypeText description Well Code Des.

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_ElectronicDocTypeText.
-- 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_ElectronicDocTypeText AS
SELECT
  spras AS Language,
  edoc_type AS ElectronicDocType,
  description AS ElectronicDocTypeText
FROM edotypet
;