I_ElectronicDocProcActionText

DDL: I_ELECTRONICDOCPROCACTIONTEXT SQL: IEDOPROCACTIONT Type: view BASIC

eDocument Process Specific Action - Text

I_ElectronicDocProcActionText is a Basic CDS View that provides data about "eDocument Process Specific Action - Text" in SAP S/4HANA. It reads from 1 data source (edoactionproct) and exposes 5 fields with key fields ElectronicDocProcess, ElectronicDocAction, ElectronicDocActionVariant, Language.

Data Sources (1)

SourceAliasJoin Type
edoactionproct edoactionproct from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IEDOPROCACTIONT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Process Specific Action - Text view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ElectronicDocProcess process Trans.
KEY ElectronicDocAction edoaction eDoc.Action
KEY ElectronicDocActionVariant action_variant Variant
KEY Language spras Off. Language
ElectronicDocActionVariantText action_var_desc Description

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_ElectronicDocProcActionText.
-- 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.
-- SQL view name: IEDOPROCACTIONT

CREATE VIEW I_ElectronicDocProcActionText AS
SELECT
  process AS ElectronicDocProcess,
  edoaction AS ElectronicDocAction,
  action_variant AS ElectronicDocActionVariant,
  spras AS Language,
  action_var_desc AS ElectronicDocActionVariantText
FROM edoactionproct
;