I_HCMProcessStepDetails

DDL: I_HCMPROCESSSTEPDETAILS Type: view BASIC

HCM Process Step Details

I_HCMProcessStepDetails is a Basic CDS View that provides data about "HCM Process Step Details" in SAP S/4HANA. It reads from 1 data source (t5asrstepdetails) and exposes 13 fields with key fields HCMProcessUUID, HCMProcessStepUUID, HCMProcessStepProcessor, HCMProcessStepProcessorRole. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t5asrstepdetails t5asrstepdetails from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_UnitOfMeasure _HCMProcessProcgTimeUnit $projection.HCMProcessProcgTimeUnit = _HCMProcessProcgTimeUnit.UnitOfMeasure
[0..1] I_UnitOfMeasure _HCMProcessRetentionTimeUnit $projection.HCMProcessRetentionTimeUnit = _HCMProcessRetentionTimeUnit.UnitOfMeasure

Annotations (13)

NameValueLevelField
EndUserText.label HCM Process Step Details view
AbapCatalog.sqlViewName IHCMPROCSTEPDETS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.buffering.type #NONE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #BASIC view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY HCMProcessUUID process_guid Process GUID
KEY HCMProcessStepUUID step_guid UUID
KEY HCMProcessStepProcessor processor User Name
KEY HCMProcessStepProcessorRole processor_role Agent Role
HCMProcessNameCode process Trans.
HCMProcessStepChgDateTime change_timestamp Time Stamp
HCMProcessStepDraftDateTime draft_time_stamp Changed At
HCMProcessProcessingDuration processing_time Value
HCMProcessProcgTimeUnit proc_time_unit Proc. Time Unit
HCMProcessRetentionDuration retention_time Retention Time
HCMProcessRetentionTimeUnit reten_time_unit Ret. Period Unit
_HCMProcessProcgTimeUnit _HCMProcessProcgTimeUnit
_HCMProcessRetentionTimeUnit _HCMProcessRetentionTimeUnit

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_HCMProcessStepDetails.
-- 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 I_HCMProcessStepDetails AS
SELECT
  process_guid AS HCMProcessUUID,
  step_guid AS HCMProcessStepUUID,
  processor AS HCMProcessStepProcessor,
  processor_role AS HCMProcessStepProcessorRole,
  process AS HCMProcessNameCode,
  change_timestamp AS HCMProcessStepChgDateTime,
  draft_time_stamp AS HCMProcessStepDraftDateTime,
  processing_time AS HCMProcessProcessingDuration,
  proc_time_unit AS HCMProcessProcgTimeUnit,
  retention_time AS HCMProcessRetentionDuration,
  reten_time_unit AS HCMProcessRetentionTimeUnit
FROM t5asrstepdetails
LEFT OUTER JOIN I_UnitOfMeasure AS _HCMProcessProcgTimeUnit ON HCMProcessProcgTimeUnit = _HCMProcessProcgTimeUnit.UnitOfMeasure  -- association [0..1]
LEFT OUTER JOIN I_UnitOfMeasure AS _HCMProcessRetentionTimeUnit ON HCMProcessRetentionTimeUnit = _HCMProcessRetentionTimeUnit.UnitOfMeasure  -- association [0..1]
;