R_MDOObjectSelectionValue

DDL: R_MDOOBJECTSELECTIONVALUE Type: view_entity

Object selection Filter Values

R_MDOObjectSelectionValue is a CDS View that provides data about "Object selection Filter Values" in SAP S/4HANA. It reads from 1 data source (mdo_ncap_objval) and exposes 7 fields with key field Id.

Data Sources (1)

SourceAliasJoin Type
mdo_ncap_objval mdo_ncap_objval from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Object selection Filter Values view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Id mdo_ncap_objval id WorklistID
Value mdo_ncap_objval value Value from table
ParentId mdo_ncap_objval parentid UUID
LocalLastChangedAt locallastchangedat Time Stamp
_ObjectSelectionFilter _ObjectSelectionFilter
CapabilityId _ObjectSelectionFilter CapabilityId
_Capability _ObjectSelectionFilter _Capability

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_MDOObjectSelectionValue.
-- 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_MDOObjectSelectionValue AS
SELECT
  mdo_ncap_objval.id AS Id,
  mdo_ncap_objval.value AS Value,
  mdo_ncap_objval.parentid AS ParentId,
  LocalLastChangedAt,
  _ObjectSelectionFilter.CapabilityId AS CapabilityId,
  _ObjectSelectionFilter._Capability AS _Capability
FROM mdo_ncap_objval
;