CDS_SUPPORTED_CAPABILITIES

DDL: CDS_SUPPORTED_CAPABILITIES SQL: CDSCAPABILITIES Type: view

Supported capabilities for CDS views

CDS_SUPPORTED_CAPABILITIES is a CDS View that provides data about "Supported capabilities for CDS views" in SAP S/4HANA. It reads from 1 data source (Cds_View_Annotation_Position) and exposes 3 fields with key field CDSName.

Data Sources (1)

SourceAliasJoin Type
Cds_View_Annotation_Position Cds_View_Annotation_Position from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName CDSCAPABILITIES view
EndUserText.label Supported capabilities for CDS views view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CDSName CDSName DD: Name of a structured object (e.g. entity, context)
SupportedCapability
NumberOfCapabilities

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 CDS_SUPPORTED_CAPABILITIES.
-- 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.
-- SQL view name: CDSCAPABILITIES

CREATE VIEW CDS_SUPPORTED_CAPABILITIES AS
SELECT
  CDSName,
  min ( AnnotationValue) AS SupportedCapability,
  count (*) AS NumberOfCapabilities
FROM Cds_View_Annotation_Position
;