P_WorkflowLogReturnValue

DDL: P_WORKFLOWLOGRETURNVALUE SQL: PFIVERWFVAL Type: view BASIC

P_WorkflowLogReturnValue is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (swpsteplog) and exposes 4 fields with key fields wf_id, wi_id.

Data Sources (1)

SourceAliasJoin Type
swpsteplog swpsteplog from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PFIVERWFVAL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY wf_id wf_id Workflow ID
KEY wi_id wi_id WorkItem ID
timestamp timestamp UTC Time Stamp in Short Form (YYYYMMDDhhmmss)
task_id task_id TaskID

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_WorkflowLogReturnValue.
-- 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: PFIVERWFVAL

CREATE VIEW P_WorkflowLogReturnValue AS
SELECT
  wf_id,
  wi_id,
  timestamp,
  task_id
FROM swpsteplog
;