I_MDChangeProcessModelTable

DDL: I_MDCHANGEPROCESSMODELTABLE SQL: IMDCHGPROCMDLTBL Type: view BASIC

Process model table

I_MDChangeProcessModelTable is a Basic CDS View that provides data about "Process model table" in SAP S/4HANA. It reads from 4 data sources (mdc_modelctables, mdc_modelctablet, mdc_model_tables, mdc_model_tablet) and exposes 2 fields with key fields MDChgProcessSrceObjectTypeCode, MDChgProcessModelTableName.

Data Sources (4)

SourceAliasJoin Type
mdc_modelctables CustomTable left_outer
mdc_modelctablet CustomTableAlias left_outer
mdc_model_tables Table from
mdc_model_tablet TableAlias left_outer

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IMDCHGPROCMDLTBL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Process model table view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MDChgProcessSrceObjectTypeCode mdc_model_tables bo_type SOT Name
KEY MDChgProcessModelTableName mdc_model_tables table_name Table Name

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_MDChangeProcessModelTable.
-- 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: IMDCHGPROCMDLTBL

CREATE VIEW I_MDChangeProcessModelTable AS
SELECT
  Table.bo_type AS MDChgProcessSrceObjectTypeCode,
  Table.table_name AS MDChgProcessModelTableName
FROM mdc_model_tables AS Table
LEFT OUTER JOIN mdc_modelctables AS CustomTable ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN mdc_model_tablet AS TableAlias ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN mdc_modelctablet AS CustomTableAlias ON /* join condition not captured in parsed metadata */
;