I_WorkflowTaskStartEvent

DDL: I_WORKFLOWTASKSTARTEVENT Type: view BASIC

Work item starting event

I_WorkflowTaskStartEvent is a Basic CDS View that provides data about "Work item starting event" in SAP S/4HANA. It reads from 1 data source (swwloghist) and exposes 4 fields with key field WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
swwloghist swwloghist from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName IWFTASKEVENT view
AbapCatalog.buffering.type #NONE view
EndUserText.label Work item starting event view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID wi_id WorkItem ID
WrkflwStrtEvtReceivedUTCDteTme UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
WrkflwStartEventObjectCategory
WorkflowStartEventName Object ID

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_WorkflowTaskStartEvent.
-- 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_WorkflowTaskStartEvent AS
SELECT
  wi_id AS WorkflowTaskInternalID,
  cast( timestamp as sww_start_event_timestamp ) AS WrkflwStrtEvtReceivedUTCDteTme,
  cast( substring( para_val_1, 1, 2 ) as sibfcatid ) AS WrkflwStartEventObjectCategory,
  cast( para_val_2 as swo_event ) AS WorkflowStartEventName
FROM swwloghist
;