Cds_Views_Favorite

DDL: CDS_VIEWS_FAVORITE SQL: CDSVIEWSFAVORITE Type: view

CDS Views Favorite Info

Cds_Views_Favorite is a CDS View that provides data about "CDS Views Favorite Info" in SAP S/4HANA. It reads from 1 data source (vdm_browserfav) and exposes 2 fields with key field DDLSourceName.

Data Sources (1)

SourceAliasJoin Type
vdm_browserfav vdm_browserfav from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName CDSVIEWSFAVORITE view
EndUserText.label CDS Views Favorite Info view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName vdm_browserfav ddlsourcename DDL Source Name
DDLSourceIsFavorite 1

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_Views_Favorite.
-- 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: CDSVIEWSFAVORITE

CREATE VIEW Cds_Views_Favorite AS
SELECT
  vdm_browserfav.ddlsourcename AS DDLSourceName,
  1 AS DDLSourceIsFavorite
FROM vdm_browserfav
;