/APE/A_ProcStep

DDL: /APE/A_PROCSTEP Type: view_entity CONSUMPTION

Process Step

/APE/A_ProcStep is a Consumption CDS View that provides data about "Process Step" in SAP S/4HANA. It reads from 1 data source (/APE/I_ProcStepTP) and exposes 16 fields with key fields ProcessStepKey, ProcessKey.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ProcStepTP /APE/I_ProcStepTP projection

Annotations (8)

NameValueLevelField
EndUserText.label Process Step view
AccessControl.authorizationCheck #NOT_REQUIRED view
OData.entityType.name Process Step view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY ProcessStepKey db_key UUID
KEY ProcessKey parent_key UUID
seq_no seq_no Value Number
step_status step_status Status
trans_uuid trans_uuid
comm_type comm_type Communication Type
ext_uuid ext_uuid
servprov_own servprov_own
Deadline Deadline Date
period_uuid period_uuid
created_at created_at Uploaded On
created_by created_by Version Created By
changed_at changed_at Timestamp
changed_by changed_by User Name
_dataaging _dataaging Data Aging
_ProcDocredirectedtoparentAPEA_ProcDoc

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/A_ProcStep.
-- 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/A_ProcStep AS
SELECT
  db_key AS ProcessStepKey,
  parent_key AS ProcessKey,
  seq_no,
  step_status,
  trans_uuid,
  comm_type,
  ext_uuid,
  servprov_own,
  Deadline,
  period_uuid,
  created_at,
  created_by,
  changed_at,
  changed_by
FROM /APE/I_ProcStepTP
;