I_MDChgProcessPrioReasonsTP

DDL: I_MDCHGPROCESSPRIOREASONSTP Type: view_entity

MDC Reasons

I_MDChgProcessPrioReasonsTP is a CDS View that provides data about "MDC Reasons" in SAP S/4HANA. It reads from 1 data source (MDC_REASONS) and exposes 5 fields with key fields Otc, Reason. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
MDC_REASONS MDC_REASONS from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MDChgProcPrioReasonsTextTP _MDCReasonsText

Annotations (2)

NameValueLevelField
EndUserText.label MDC Reasons view
AccessControl.authorizationCheck #CHECK view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Otc OTC Bus. Obj. Type
KEY Reason REASON Sp.Tax Code Reason
ReasonID 1
_MDCReasonsConfig _MDCReasonsConfig
_MDCReasonsText _MDCReasonsText

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_MDChgProcessPrioReasonsTP.
-- 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_MDChgProcessPrioReasonsTP AS
SELECT
  Otc,
  Reason,
  1 AS ReasonID
FROM MDC_REASONS
LEFT OUTER JOIN I_MDChgProcPrioReasonsTextTP AS _MDCReasonsText ON /* condition not available in parsed metadata */  -- association [0..*]
;