I_MDGovernanceDataModel

DDL: I_MDGOVERNANCEDATAMODEL SQL: IMDGDATAMODEL Type: view BASIC

MDG Data Model

I_MDGovernanceDataModel is a Basic CDS View (Dimension) that provides data about "MDG Data Model" in SAP S/4HANA. It reads from 1 data source (usmd001c) and exposes 2 fields with key field MDGovDataModel. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
usmd001c usmd001c from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MDGovernanceDataModelText _MDGovernanceDataModelText $projection.MDGovDataModel = _MDGovernanceDataModelText.MDGovDataModel

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMDGDATAMODEL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
Analytics.dataCategory #DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey MDGovDataModel view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
VDM.viewType #BASIC view
EndUserText.label MDG Data Model view
Metadata.allowExtensions true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY MDGovDataModel usmd_model Data Model Code
_MDGovernanceDataModelText _MDGovernanceDataModelText

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_MDGovernanceDataModel.
-- 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: IMDGDATAMODEL

CREATE VIEW I_MDGovernanceDataModel AS
SELECT
  usmd_model AS MDGovDataModel
FROM usmd001c
LEFT OUTER JOIN I_MDGovernanceDataModelText AS _MDGovernanceDataModelText ON MDGovDataModel = _MDGovernanceDataModelText.MDGovDataModel  -- association [0..*]
;