I_WorkflowUser

DDL: I_WORKFLOWUSER SQL: IWORKFLOWUSER Type: view COMPOSITE

Workflow User

I_WorkflowUser is a Composite CDS View that provides data about "Workflow User" in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 2 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IWORKFLOWUSER view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Workflow User view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UserID I_User UserID User Name
UserDescription I_User UserDescription Full Name

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_WorkflowUser.
-- 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: IWORKFLOWUSER

CREATE VIEW I_WorkflowUser AS
SELECT
  I_User.UserID AS UserID,
  I_User.UserDescription AS UserDescription
FROM I_User
;