C_MDOApplicationScope

DDL: C_MDOAPPLICATIONSCOPE Type: view_entity

Object Selection

C_MDOApplicationScope is a CDS View that provides data about "Object Selection" in SAP S/4HANA. It reads from 1 data source (I_MDOApplicationScope) and exposes 11 fields with key field Id. It is exposed through 1 OData service (MANAGEDISTRIBUTIONS).

Data Sources (1)

SourceAliasJoin Type
I_MDOApplicationScope I_MDOApplicationScope projection

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Object Selection view
Metadata.allowExtensions true view

OData Services (1)

ServiceBindingVersionContractRelease
MANAGEDISTRIBUTIONS MDO_MANAGEDISTRIBUTIONS V2 C1 NOT_RELEASED

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY Id id WorklistID
Sequencenumber sequencenumber Sort sequence
ValuePath valuepath Value Path
CanonicalPath canonicalpath Canonical Path
Sign sign Type of SIGN component in row type of a Ranges type
Operator operator Type of OPTION component in row type of a Ranges type
LowValue lowvalue Low Value
HighValue highvalue High Value
To_Parent_Id parentid UUID
To_Group_Id applicationscopegroupid ID
LastChangeDate lastchangedate Time Stamp

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 C_MDOApplicationScope.
-- 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 C_MDOApplicationScope AS
SELECT
  Id,
  Sequencenumber,
  ValuePath,
  CanonicalPath,
  Sign,
  Operator,
  LowValue,
  HighValue,
  parentid AS To_Parent_Id,
  applicationscopegroupid AS To_Group_Id,
  LastChangeDate
FROM I_MDOApplicationScope
;