I_MDOApplicationScopeGroup

DDL: I_MDOAPPLICATIONSCOPEGROUP Type: view_entity

Object Selection Items

I_MDOApplicationScopeGroup is a CDS View that provides data about "Object Selection Items" in SAP S/4HANA. It reads from 1 data source (mdo_applscopegrp) and exposes 6 fields with key field id. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
mdo_applscopegrp mdo_applscopegrp from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_MDOApplicationScope _ApplicationScope $projection.id = _ApplicationScope.applicationscopegroupid

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Object Selection Items view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
validfrom validfrom Vers.Valid From
validto validto Vers.Valid To
parentid parentid UUID
ETagfromparent_Parent
_ApplicationScope _ApplicationScope

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_MDOApplicationScopeGroup.
-- 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_MDOApplicationScopeGroup AS
SELECT
  id,
  validfrom,
  validto,
  parentid
FROM mdo_applscopegrp
LEFT OUTER JOIN I_MDOApplicationScope AS _ApplicationScope ON id = _ApplicationScope.applicationscopegroupid  -- association [0..*]
;