I_WorkflowTaskDefinition

DDL: I_WORKFLOWTASKDEFINITION Type: view BASIC

Work item task definition

I_WorkflowTaskDefinition is a Basic CDS View (Dimension) that provides data about "Work item task definition" in SAP S/4HANA. It reads from 1 data source (I_WorkflowPDOrgObject) and exposes 4 fields with key fields WorkflowTaskDefinitionObjType, WorkflowTaskDefinitionObject. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_WorkflowPDOrgObject I_WorkflowPDOrgObject from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_WorkflowTaskDefinitionText _Text $projection.WorkflowTaskDefinitionObjType = _Text.WorkflowTaskDefinitionObjType and $projection.WorkflowTaskDefinitionObject = _Text.WorkflowTaskDefinitionObject

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IWFTASKDEF view
AbapCatalog.buffering.type #NONE view
EndUserText.label Work item task definition view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey WorkflowTaskDefinitionObject view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskDefinitionObjType WorkflowTaskDefinitionObjType Type of Val.
KEY WorkflowTaskDefinitionObject WorkflowTaskDefinitionObject Work Center
WorkflowTaskDefinition
_Text _Text

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_WorkflowTaskDefinition.
-- 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_WorkflowTaskDefinition AS
SELECT
  WorkflowTaskDefinitionObjType,
  WorkflowTaskDefinitionObject,
  concat(WorkflowTaskDefinitionObjType, WorkflowTaskDefinitionObject) AS WorkflowTaskDefinition
FROM I_WorkflowPDOrgObject
LEFT OUTER JOIN I_WorkflowTaskDefinitionText AS _Text ON WorkflowTaskDefinitionObjType = _Text.WorkflowTaskDefinitionObjType AND WorkflowTaskDefinitionObject = _Text.WorkflowTaskDefinitionObject  -- association [0..*]
;