/APE/I_ProcessStepResults

DDL: /APE/I_PROCESSSTEPRESULTS Type: view BASIC

Process Step Results

/APE/I_ProcessStepResults is a Basic CDS View that provides data about "Process Step Results" in SAP S/4HANA. It reads from 1 data source (/ape/prst_res) and exposes 8 fields with key fields client, db_key. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/ape/prst_res /ape/prst_res from

Associations (1)

CardinalityTargetAliasCondition
[1..1] /APE/I_ProcessHeader _proc_hdr $projection.parent_key = _proc_hdr.db_key

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName /APE/B_PRST_RES view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Process Step Results view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.allowExtensions true view
VDM.viewType #BASIC view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY client client Workflow definition: Client
KEY db_key db_key UUID
parent_key parent_key UUID
root_key root_key UUID
executed executed Executed
overruled overruled Block Overruled
_dataaging _dataaging Data Aging
_proc_hdr _proc_hdr

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 /APE/I_ProcessStepResults.
-- 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 /APE/I_ProcessStepResults AS
SELECT
  client,
  db_key,
  parent_key,
  root_key,
  executed,
  overruled
FROM /ape/prst_res
LEFT OUTER JOIN /APE/I_ProcessHeader AS _proc_hdr ON parent_key = _proc_hdr.db_key  -- association [1..1]
;