I_MDOApplicationScope

DDL: I_MDOAPPLICATIONSCOPE Type: view_entity

Object Selection

I_MDOApplicationScope is a CDS View that provides data about "Object Selection" in SAP S/4HANA. It reads from 1 data source (mdo_applscope) and exposes 10 fields with key field id.

Data Sources (1)

SourceAliasJoin Type
mdo_applscope mdo_applscope from

Annotations (3)

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

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
valuepath valuepath Value 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
parentid parentid UUID
datatype datatype Field Type
_Parent _Parent
_ApplicationScopeGroup _ApplicationScopeGroup

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_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 I_MDOApplicationScope AS
SELECT
  id,
  valuepath,
  sign,
  operator,
  lowvalue,
  highvalue,
  parentid,
  datatype
FROM mdo_applscope
;