I_EHSWorkflowTitle

DDL: I_EHSWORKFLOWTITLE SQL: IEHSWRKFLWTITLE Type: view BASIC

Work flow title

I_EHSWorkflowTitle is a Basic CDS View that provides data about "Work flow title" in SAP S/4HANA. It reads from 1 data source (swwwitext) and exposes 3 fields with key fields Language, WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
swwwitext swwwitext from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEHSWRKFLWTITLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Work flow title view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language swwwitext wi_lang Language
KEY WorkflowTaskInternalID swwwitext wi_id WorkItem ID
WorkflowTaskName swwwitext wi_text Work item text

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_EHSWorkflowTitle.
-- 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: IEHSWRKFLWTITLE

CREATE VIEW I_EHSWorkflowTitle AS
SELECT
  swwwitext.wi_lang AS Language,
  swwwitext.wi_id AS WorkflowTaskInternalID,
  swwwitext.wi_text AS WorkflowTaskName
FROM swwwitext
;