I_WorkflowToObject

DDL: I_WORKFLOWTOOBJECT SQL: IWFTOOBJECT Type: view BASIC

workflow to object

I_WorkflowToObject is a Basic CDS View that provides data about "workflow to object" in SAP S/4HANA. It reads from 1 data source (P_WorkflowToObject) and exposes 3 fields with key field WorkflowTaskInternalID.

Data Sources (1)

SourceAliasJoin Type
P_WorkflowToObject P_WorkflowToObject from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IWFTOOBJECT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey WorkflowTaskInternalID view
VDM.viewType #BASIC view
EndUserText.label workflow to object view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID WorkItem Work Item ID
ObjectKey ObjectKey Object Key
ReleaseDateTime ReleaseDateTime Composition Released On

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_WorkflowToObject.
-- 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: IWFTOOBJECT

CREATE VIEW I_WorkflowToObject AS
SELECT
  WorkItem AS WorkflowTaskInternalID,
  ObjectKey,
  ReleaseDateTime
FROM P_WorkflowToObject
;