I_ElectronicDocProcessText

DDL: I_ELECTRONICDOCPROCESSTEXT Type: view BASIC

eDocument Process Text

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

Data Sources (1)

SourceAliasJoin Type
edoprocesst edoprocesst from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IEDOPROCESST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Process 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 #A 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 ElectronicDocProcess process Trans.
ElectronicDocProcessText procdesc Proc. Desc.

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_ElectronicDocProcessText.
-- 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_ElectronicDocProcessText AS
SELECT
  spras AS Language,
  process AS ElectronicDocProcess,
  procdesc AS ElectronicDocProcessText
FROM edoprocesst
;