I_MDChgProcTemplateStepUnionT

DDL: I_MDCHGPROCTEMPLATESTEPUNIONT Type: view_entity Package: MDC_PROCESS_OBJECT

MD Chg Process Template Step Union Text

I_MDChgProcTemplateStepUnionT is a CDS View that provides data about "MD Chg Process Template Step Union Text" in SAP S/4HANA. It reads from 6 data sources and exposes 16 fields with key fields Language, MDChgProcessTypeID, MDChgProcessStep, MDChgProcessTypeID, MDChgProcessStep. It has 2 associations to related views. Part of development package MDC_PROCESS_OBJECT.

Data Sources (6)

SourceAliasJoin Type
I_MDChangeProcessTemplateStepT _Classic union
I_MDChgProcTmplStepRAPBasedT _RapBased union
I_MDChgProcTmplStepRAPBsdExtdT _RapBasedExtended from
I_MDChangeProcessTypeUnion _Type inner
I_MDChangeProcessTypeUnion _Type inner
I_MDChangeProcessTypeUnion _Type inner

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_MDChangeProcessTypeUnion _MDChgProcessType $projection.MDChgProcessTypeID = _MDChgProcessType.MDChgProcessTypeID
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label MD Chg Process Template Step Union Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY Language I_MDChgProcTmplStepRAPBsdExtdT Language Report Text Language
KEY MDChgProcessTypeID I_MDChgProcTmplStepRAPBsdExtdT MDChgProcessTypeID Process Template
KEY MDChgProcessStep I_MDChgProcTmplStepRAPBsdExtdT MDChgProcessStep Step Number
MDChgProcessTypeStepDesc I_MDChgProcTmplStepRAPBsdExtdT MDChgProcessTypeStepDesc Well Code Des.
_MDChgProcessType _MDChgProcessType
Language Report Text Language
KEY MDChgProcessTypeID I_MDChgProcTmplStepRAPBasedT MDChgProcessTypeID Process Template
KEY MDChgProcessStep I_MDChgProcTmplStepRAPBasedT MDChgProcessStep Step Number
MDChgProcessTypeStepDesc I_MDChgProcTmplStepRAPBasedT MDChgProcessTypeStepDesc Well Code Des.
_MDChgProcessType _MDChgProcessType
Language Report Text Language
KEY MDChgProcessTypeID I_MDChangeProcessTemplateStepT MDChgProcessTypeID Process Template
KEY MDChgProcessStep I_MDChangeProcessTemplateStepT MDChgProcessStep Step Number
MDChgProcessTypeStepDesc I_MDChangeProcessTemplateStepT MDChgProcessTypeStepDesc Well Code Des.
_MDChgProcessType _MDChgProcessType
_Language _Language

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_MDChgProcTemplateStepUnionT.
-- 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_MDChgProcTemplateStepUnionT AS
SELECT
  _RapBasedExtended.Language AS Language,
  _RapBasedExtended.MDChgProcessTypeID AS MDChgProcessTypeID,
  _RapBasedExtended.MDChgProcessStep AS MDChgProcessStep,
  _RapBasedExtended.MDChgProcessTypeStepDesc AS MDChgProcessTypeStepDesc
FROM I_MDChgProcTmplStepRAPBsdExtdT AS _RapBasedExtended
INNER JOIN I_MDChangeProcessTypeUnion AS _Type ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_MDChangeProcessTypeUnion AS _MDChgProcessType ON MDChgProcessTypeID = _MDChgProcessType.MDChgProcessTypeID  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
-- UNION with additional select branch(es): I_MDChgProcTmplStepRAPBasedT, I_MDChangeProcessTemplateStepT
;