I_WorkflowTaskURL

DDL: I_WORKFLOWTASKURL Type: view BASIC

Workflow work item URL

I_WorkflowTaskURL is a Basic CDS View that provides data about "Workflow work item URL" in SAP S/4HANA. It reads from 1 data source (swwwihead) and exposes 1 field with key field WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
swwwihead head from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IWORKFLOWTASKURL view
AbapCatalog.buffering.type #NONE view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Workflow work item URL view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID swwwihead wi_id WorkItem 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_WorkflowTaskURL.
-- 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_WorkflowTaskURL AS
SELECT
  head.wi_id AS WorkflowTaskInternalID
FROM swwwihead AS head
;