I_MDChgProcessStep

DDL: I_MDCHGPROCESSSTEP SQL: IMDCHGPROCSTEP Type: view BASIC Package: MDC_PROCESS_OBJECT

Master Data Change Process Step

I_MDChgProcessStep is a Basic CDS View that provides data about "Master Data Change Process Step" in SAP S/4HANA. It reads from 1 data source (mdc_d_prcstep) and exposes 26 fields with key field MDChgProcessStepUUID. It has 1 association to related views. Part of development package MDC_PROCESS_OBJECT.

Data Sources (1)

SourceAliasJoin Type
mdc_d_prcstep mdc_d_prcstep from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MasterDataChangeProcess _MasterDataChangeProcess _MasterDataChangeProcess.MasterDataChangeProcessUUID = $projection.MasterDataChangeProcessUUID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMDCHGPROCSTEP view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Master Data Change Process Step view
VDM.viewType #BASIC view
ObjectModel.representativeKey MDChgProcessStepUUID view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #B view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessStepUUID db_key UUID
MasterDataChangeProcessUUID parent_key UUID
MasterDataChangeProcess process_id Process Instance ID
MDChgProcessStep step_number Step Number
MDChgProcessPreviousStep Step Number
MDChgProcessStepType step_type VSS Sol. Step Type
MDChgProcessStepDescription description Well Code Des.
MDChgProcessStepStatus status Workflow Status
MDChgProcessStepAdapter adapter Step Adapter
MDChgProcessStepAdapterConfign adapter_config_id Configuration ID
MDChgProcessStepChkPointIsActv check_point_active Check Point active
MDChgProcessStepOriglNumber original_step_no Step Number
MDChgProcessStepOriglSqncNmbr original_step_seq_no Step Sequence
MDChgProcessStepStartIsReqd start_requested Start Requested
MDChgProcessSrceObjectTypeCode source_otc Bus. Obj. Type
MDChgProcessStepFilterChain filter_chain Filter Chain
MDChgProcessStepStartDateTime started_at Time Stamp
MDChgProcessStepFinishDateTime finished_at Time Stamp
MDChgProcessStepConfign process_config_uuid Config. UUID
MDChgProcessStpOwnConfignIsRqd use_own_config Use Own
MDChgProcIsAdhocStep ad_hoc_step Ad hoc Step
MDChgProcessStepWrkflwDefID scp_workflow_definition_id Ext Workflow ID
MDChgProcessStepWrkflwHandle scp_workflow_handle CPWF Handle ID
MDChgProcessStepWrkflwSts scp_workflow_status Status
MDChgProcessStepWrkflwOvrlDcsn scp_workflow_decision Workflow Decision
_MasterDataChangeProcess _MasterDataChangeProcess

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_MDChgProcessStep.
-- 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: IMDCHGPROCSTEP

CREATE VIEW I_MDChgProcessStep AS
SELECT
  db_key AS MDChgProcessStepUUID,
  parent_key AS MasterDataChangeProcessUUID,
  process_id AS MasterDataChangeProcess,
  step_number AS MDChgProcessStep,
  cast ( lpad( cast( cast( step_number as abap.int2 ) - 1 as abap.char( 11 ) ) , 4 , '0' ) as mdc_process_step_no ) AS MDChgProcessPreviousStep,
  step_type AS MDChgProcessStepType,
  description AS MDChgProcessStepDescription,
  status AS MDChgProcessStepStatus,
  adapter AS MDChgProcessStepAdapter,
  adapter_config_id AS MDChgProcessStepAdapterConfign,
  check_point_active AS MDChgProcessStepChkPointIsActv,
  original_step_no AS MDChgProcessStepOriglNumber,
  original_step_seq_no AS MDChgProcessStepOriglSqncNmbr,
  start_requested AS MDChgProcessStepStartIsReqd,
  source_otc AS MDChgProcessSrceObjectTypeCode,
  filter_chain AS MDChgProcessStepFilterChain,
  started_at AS MDChgProcessStepStartDateTime,
  finished_at AS MDChgProcessStepFinishDateTime,
  process_config_uuid AS MDChgProcessStepConfign,
  use_own_config AS MDChgProcessStpOwnConfignIsRqd,
  ad_hoc_step AS MDChgProcIsAdhocStep,
  scp_workflow_definition_id AS MDChgProcessStepWrkflwDefID,
  scp_workflow_handle AS MDChgProcessStepWrkflwHandle,
  scp_workflow_status AS MDChgProcessStepWrkflwSts,
  scp_workflow_decision AS MDChgProcessStepWrkflwOvrlDcsn
FROM mdc_d_prcstep
LEFT OUTER JOIN I_MasterDataChangeProcess AS _MasterDataChangeProcess ON _MasterDataChangeProcess.MasterDataChangeProcessUUID = MasterDataChangeProcessUUID  -- association [1..1]
;