/APE/C_ProcessStep_DR

DDL: /APE/C_PROCESSSTEP_DR Type: view CONSUMPTION

Process Step Draft table

/APE/C_ProcessStep_DR is a Consumption CDS View that provides data about "Process Step Draft table" in SAP S/4HANA. It reads from 1 data source (/APE/I_ProcessStep_DR) and exposes 24 fields with key field draftuuid.

Data Sources (1)

SourceAliasJoin Type
/APE/I_ProcessStep_DR /APE/I_ProcessStep_DR from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /APE/C_PRSTP_DR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Process Step Draft table view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (24)

KeyFieldSource TableSource FieldDescription
KEY draftuuid draftuuid UUID
config_key config_key Char
proc_cluster proc_cluster
proc_id proc_id Processing
version version XML Vers.
seq_no seq_no Value Number
proc_step_id proc_step_id
category category Violation Category
type type Worklist Type
class class User Group
multiple multiple Multiple Values
asyn_exec asyn_exec
irreversible irreversible
proc_event proc_event
check_group check_group Check Group
bus_msg_id bus_msg_id
period_type period_type Repeat Appmt Type
ref_path_src ref_path_src
ref_date_src ref_date_src
wait_step_id wait_step_id
trig_proc_id trig_proc_id
trig_version trig_version
trig_step_id trig_step_id
map_class map_class

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/C_ProcessStep_DR.
-- 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/C_ProcessStep_DR AS
SELECT
  draftuuid,
  config_key,
  proc_cluster,
  proc_id,
  version,
  seq_no,
  proc_step_id,
  category,
  type,
  class,
  multiple,
  asyn_exec,
  irreversible,
  proc_event,
  check_group,
  bus_msg_id,
  period_type,
  ref_path_src,
  ref_date_src,
  wait_step_id,
  trig_proc_id,
  trig_version,
  trig_step_id,
  map_class
FROM /APE/I_ProcessStep_DR
;