I_MDGovChgReqWrkflwStatusTxt

DDL: I_MDGOVCHGREQWRKFLWSTATUSTXT SQL: IMDGWRKFLWSTST Type: view BASIC

MDG Workflow Status Text

I_MDGovChgReqWrkflwStatusTxt is a Basic CDS View that provides data about "MDG Workflow Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields Language, WorkflowTaskStatus.

Data Sources (1)

SourceAliasJoin Type
dd07t DomainValueText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IMDGWRKFLWSTST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey WorkflowTaskStatus view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #BASIC view
Search.searchable true view
EndUserText.label MDG Workflow Status Text view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY WorkflowTaskStatus
WorkflowTaskStatusDesc

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_MDGovChgReqWrkflwStatusTxt.
-- 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: IMDGWRKFLWSTST

CREATE VIEW I_MDGovChgReqWrkflwStatusTxt AS
SELECT
  ddlanguage AS Language,
  cast( DomainValueText.domvalue_l as mdg_ana_wrkflw_status) AS WorkflowTaskStatus,
  cast( DomainValueText.ddtext as val_text preserving type ) AS WorkflowTaskStatusDesc
FROM dd07t AS DomainValueText
;