I_LglTransWorkflowTaskTitle

DDL: I_LGLTRANSWORKFLOWTASKTITLE Type: view BASIC

Legal Transaction task title

I_LglTransWorkflowTaskTitle is a Basic CDS View that provides data about "Legal Transaction task title" in SAP S/4HANA. It reads from 1 data source (swwwihead) and exposes 2 fields with key field WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
swwwihead swwwihead from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ILCMWFTASKTITLE view
AbapCatalog.buffering.status #SWITCHED_OFF view
AbapCatalog.buffering.type #NONE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Legal Transaction task title view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID swwwihead 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_LglTransWorkflowTaskTitle.
-- 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_LglTransWorkflowTaskTitle AS
SELECT
  swwwihead.wi_id AS WorkflowTaskInternalID,
  swwwitext.wi_text AS WorkflowTaskName
FROM swwwihead
;