P_DwnPaytReqProcessor

DDL: P_DWNPAYTREQPROCESSOR Type: view_entity COMPOSITE

VSDPR Current Processor

P_DwnPaytReqProcessor is a Composite CDS View that provides data about "VSDPR Current Processor" in SAP S/4HANA. It reads from 2 data sources (I_WorkflowTaskOrglObject, I_WorkflowTask) and exposes 7 fields with key field WorkflowTaskInternalID. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
I_WorkflowTaskOrglObject _PendingTask union
I_WorkflowTask I_WorkflowTask from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_WorkflowTask _Task _PendingTask.WorkflowTaskInternalID = _Task.WorkflowTaskInternalID

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label VSDPR Current Processor view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID WorkflowTaskInternalID Work Item ID
TopLevelWorkflowTask TopLevelWorkflowTask Top Level Workflow
IsApproved
TopLevelWorkflowTask _Task TopLevelWorkflowTask Top Level Workflow
WorkflowTaskCurrentUser WorkflowOrglObject
IsApproved
WorkflowTaskResult

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 P_DwnPaytReqProcessor.
-- 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 P_DwnPaytReqProcessor AS
SELECT
  WorkflowTaskInternalID,
  TopLevelWorkflowTask,
  cast('X' as xfeld) AS IsApproved,
  WorkflowOrglObject AS WorkflowTaskCurrentUser,
  cast('' as xfeld) AS WorkflowTaskResult
FROM I_WorkflowTask
LEFT OUTER JOIN I_WorkflowTask AS _Task ON _PendingTask.WorkflowTaskInternalID = _Task.WorkflowTaskInternalID  -- association [1..1]
-- UNION with additional select branch(es): I_WorkflowTaskOrglObject
;