I_MDChangeProcModelTableDesc

DDL: I_MDCHANGEPROCMODELTABLEDESC SQL: IMDCHGPROCMTABT Type: view BASIC

MD Change Process Model Table Description

I_MDChangeProcModelTableDesc is a Basic CDS View that provides data about "MD Change Process Model Table Description" in SAP S/4HANA. It reads from 1 data source (mdc_model_tablet) and exposes 5 fields with key fields MDChgProcessModelTableName, Language, MasterDataObjectTypeCode. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mdc_model_tablet mdc_model_tablet from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMDCHGPROCMTABT view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey MDChgProcessModelTableName view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
EndUserText.label MD Change Process Model Table Description view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessModelTableName table_name Table Name
KEY Language langu Primary lang.
KEY MasterDataObjectTypeCode bo_type SOT Name
MDChangeProcModelTableDesc table_alias Master Data Model Table Description
_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_MDChangeProcModelTableDesc.
-- 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: IMDCHGPROCMTABT

CREATE VIEW I_MDChangeProcModelTableDesc AS
SELECT
  table_name AS MDChgProcessModelTableName,
  langu AS Language,
  bo_type AS MasterDataObjectTypeCode,
  table_alias AS MDChangeProcModelTableDesc
FROM mdc_model_tablet
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;