I_WorkflowTaskResultReasonText

DDL: I_WORKFLOWTASKRESULTREASONTEXT SQL: IWFLWTSKRESRSNT Type: view BASIC Package: SWF_FLEX_IFS

Workflow Task Result Reason Text

I_WorkflowTaskResultReasonText is a Basic CDS View that provides data about "Workflow Task Result Reason Text" in SAP S/4HANA. It reads from 1 data source (swf_flex_decrsnt) and exposes 5 fields with key fields Language, WorkflowScenarioDefinition, WorkflowTaskResultReason. It has 1 association to related views. Part of development package SWF_FLEX_IFS.

Data Sources (1)

SourceAliasJoin Type
swf_flex_decrsnt decisionText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IWFLWTSKRESRSNT view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
EndUserText.label Workflow Task Result Reason Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language swf_flex_decrsnt language Report Text Language
KEY WorkflowScenarioDefinition swf_flex_decrsnt scenario_id Workflow definition
KEY WorkflowTaskResultReason swf_flex_decrsnt reason_id Reason
WorkflowTaskResultReasonText swf_flex_decrsnt reason_text Reason Text
_Language _Language

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_WorkflowTaskResultReasonText.
-- 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: IWFLWTSKRESRSNT

CREATE VIEW I_WorkflowTaskResultReasonText AS
SELECT
  decisionText.language AS Language,
  decisionText.scenario_id AS WorkflowScenarioDefinition,
  decisionText.reason_id AS WorkflowTaskResultReason,
  decisionText.reason_text AS WorkflowTaskResultReasonText
FROM swf_flex_decrsnt AS decisionText
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;