I_MDChgProcessStepType

DDL: I_MDCHGPROCESSSTEPTYPE SQL: IMDCPROCSTEPTYPE Type: view BASIC

MD Change Process Step Type

I_MDChgProcessStepType is a Basic CDS View that provides data about "MD Change Process Step Type" in SAP S/4HANA. It reads from 1 data source (mdc_prc_steptyp) and exposes 2 fields with key field MDChgProcessStepType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mdc_prc_steptyp mdc_prc_steptyp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MDChangeProcStepTypeT _MDChgProcStepTypeT _MDChgProcStepTypeT.MDChgProcessStepType = $projection.MDChgProcessStepType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMDCPROCSTEPTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey MDChgProcessStepType view
VDM.viewType #BASIC view
EndUserText.label MD Change Process Step Type view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessStepType step_type Change Process Step Type Code
_MDChgProcStepTypeT _MDChgProcStepTypeT

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_MDChgProcessStepType.
-- 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: IMDCPROCSTEPTYPE

CREATE VIEW I_MDChgProcessStepType AS
SELECT
  step_type AS MDChgProcessStepType
FROM mdc_prc_steptyp
LEFT OUTER JOIN I_MDChangeProcStepTypeT AS _MDChgProcStepTypeT ON _MDChgProcStepTypeT.MDChgProcessStepType = MDChgProcessStepType  -- association [0..*]
;