I_ElectronicDocMetaStatusText

DDL: I_ELECTRONICDOCMETASTATUSTEXT SQL: IEDOCSTATUSTEXT Type: view COMPOSITE

Electronic Document Meta Status - Text

I_ElectronicDocMetaStatusText is a Composite CDS View that provides data about "Electronic Document Meta Status - Text" in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07t) and exposes 6 fields with key fields Language, ElectronicDocMetaStatus, ElectronicDocMetaStatus.

Data Sources (2)

SourceAliasJoin Type
dd07t dd07t from
dd07t dd07t union

Annotations (11)

NameValueLevelField
EndUserText.label Electronic Document Meta Status - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #COMPOSITE view
AbapCatalog.sqlViewName IEDOCSTATUSTEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY ElectronicDocMetaStatus
ElectronicDocMetaStatusText ddtext Short text
KEY ElectronicDocMetaStatus
ElectronicDocMetaStatusText ddtext Short text
ElectronicDocMetaStatusIntgr

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_ElectronicDocMetaStatusText.
-- 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: IEDOCSTATUSTEXT

CREATE VIEW I_ElectronicDocMetaStatusText AS
SELECT
  ddlanguage AS Language,
  cast(substring(domvalue_l, 1, 4) as edoc_metastatus) AS ElectronicDocMetaStatus,
  ddtext AS ElectronicDocMetaStatusText,
  cast(2 as abap.int4) AS ElectronicDocMetaStatusIntgr
FROM dd07t
-- UNION with additional select branch(es): dd07t
;