I_WorkflowUserWorkItem

DDL: I_WORKFLOWUSERWORKITEM SQL: IFIWFUSRWI Type: view BASIC

User Work Item

I_WorkflowUserWorkItem is a Basic CDS View that provides data about "User Work Item" in SAP S/4HANA. It reads from 1 data source (swwuserwi) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
swwuserwi swwuserwi from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IFIWFUSRWI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #BASIC view
EndUserText.label User Work Item view

Fields (4)

KeyFieldSource TableSource FieldDescription
UserID user_id User Scope
WorkItem wi_id WorkItem ID
ObjectType task_obj Task
WrkItmIsNotRelevantToSelection no_sel Not relevant

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_WorkflowUserWorkItem.
-- 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: IFIWFUSRWI

CREATE VIEW I_WorkflowUserWorkItem AS
SELECT
  user_id AS UserID,
  wi_id AS WorkItem,
  task_obj AS ObjectType,
  no_sel AS WrkItmIsNotRelevantToSelection
FROM swwuserwi
;