I_WorkflowWorkItem

DDL: I_WORKFLOWWORKITEM Type: view_entity

Workitems

I_WorkflowWorkItem is a CDS View that provides data about "Workitems" in SAP S/4HANA. It reads from 1 data source (R_WorkflowWorkItem) and exposes 4 fields with key field WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
R_WorkflowWorkItem R_WorkflowWorkItem projection

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Workitems view
Metadata.allowExtensions false view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID WorkflowTaskInternalID Work Item ID
WorkflowInstanceID WorkflowInstanceID Top Level Workflow
WorkflowTaskDefinition WorkflowTaskDefinition Task
WorkflowTaskType WorkflowTaskType Type

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_WorkflowWorkItem.
-- 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_WorkflowWorkItem AS
SELECT
  WorkflowTaskInternalID,
  WorkflowInstanceID,
  WorkflowTaskDefinition,
  WorkflowTaskType
FROM R_WorkflowWorkItem
;