R_MDOFIELDGROUP

DDL: R_MDOFIELDGROUP Type: view_entity

MDO: Data Ownership Model - Field Groups

R_MDOFIELDGROUP is a CDS View that provides data about "MDO: Data Ownership Model - Field Groups" in SAP S/4HANA. It reads from 1 data source (mdo_fieldgrp) and exposes 6 fields with key field Id. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mdo_fieldgrp mdo_fieldgrp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] R_MDOFIELD _Field

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label MDO: Data Ownership Model - Field Groups view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Id id WorklistID
TechnicalName technicalname Technical Name
ParentId parentid UUID
LastChangedAt _Parent LastChangedAt Time Stamp
_Parent _Parent
_Field _Field

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 R_MDOFIELDGROUP.
-- 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 R_MDOFIELDGROUP AS
SELECT
  Id,
  TechnicalName,
  ParentId,
  _Parent.LastChangedAt AS LastChangedAt
FROM mdo_fieldgrp
LEFT OUTER JOIN R_MDOFIELD AS _Field ON /* condition not available in parsed metadata */  -- association [0..*]
;