I_WorkflowStepType

DDL: I_WORKFLOWSTEPTYPE SQL: IWRKFLWSTPTP Type: view COMPOSITE

Workflow Step Type

I_WorkflowStepType (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_WorkflowStepType is a Composite CDS View that provides data about "Workflow Step Type" in SAP S/4HANA. It reads from 1 data source (I_WorkflowReuseStep) and exposes 8 fields with key fields WorkflowStepType, WrkflwScen, WrkflwScenVers.

SAP Help Documentation

CategoryCDS Views for Flexible Workflow
Purpose
This CDS view exposes the step types of the workflow scenarios. This CDS view provides the data to answer the following business questions: Which steps are available in a workflow scenario version? What are the details of a workflow step? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view don't need any special authorization.

Structure
Important Fields Important fields in this view include the following: Field Name Description WorkflowStepType Identifier of a workflow step WrkflwScen Identifier of a workflow scenario WrkflwScenVers Version of a workflow scenario WorkflowStepIsSystemTask Indicates whether a workflow step is processed by the system instead of a user. Values are YES, NO WorkflowStepTypeSubject Name of a workflow step (part of related text view, translated)

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentBC-BMT-WFM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_WorkflowReuseStep I_WorkflowReuseStep from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IWRKFLWSTPTP view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Workflow Step Type view
ObjectModel.representativeKey WorkflowStepType view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY WorkflowStepType WorkflowStepType Workflow : Label
KEY WrkflwScen WrkflwScen Number of workflow definition
KEY WrkflwScenVers WrkflwScenVers Scenario Version
WorkflowStepIsSystemTask WorkflowStepIsSystemTask
WorkflowStepTypeClassfctn WorkflowStepTypeClassfctn Workflow: Step Classification
_WorkflowTaskStepTypeText _WorkflowTaskStepTypeText
_WorkflowTaskStepResult _WorkflowTaskStepResult
_WorkflowStepTypeClassfctn _WorkflowStepTypeClassfctn

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_WorkflowStepType.
-- 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: IWRKFLWSTPTP

CREATE VIEW I_WorkflowStepType AS
SELECT
  WorkflowStepType,
  WrkflwScen,
  WrkflwScenVers,
  WorkflowStepIsSystemTask,
  WorkflowStepTypeClassfctn
FROM I_WorkflowReuseStep
;