I_PPS_PurOrdWorkflowTask

DDL: I_PPS_PURORDWORKFLOWTASK SQL: PPSPOWRKFLWTASK Type: view_entity

PPS Purchase Order Workflow objectID

I_PPS_PurOrdWorkflowTask is a CDS View that provides data about "PPS Purchase Order Workflow objectID" in SAP S/4HANA. It reads from 1 data source (sww_wi2obj) and exposes 3 fields with key fields WorkflowTaskInternalID, TechnicalWrkflwObject.

Data Sources (1)

SourceAliasJoin Type
sww_wi2obj _tech from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label PPS Purchase Order Workflow objectID view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY WorkflowTaskInternalID
KEY TechnicalWrkflwObject sww_wi2obj instid Instance ID
TechnicalWrkflwObjectType sww_wi2obj typeid Trans Doc Ty ID

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_PPS_PurOrdWorkflowTask.
-- 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: PPSPOWRKFLWTASK

CREATE VIEW I_PPS_PurOrdWorkflowTask AS
SELECT
  max(_tech.wi_id ) AS WorkflowTaskInternalID,
  _tech.instid AS TechnicalWrkflwObject,
  _tech.typeid AS TechnicalWrkflwObjectType
FROM sww_wi2obj AS _tech
;