Sadl_V_Cds_Db_Cache

DDL: SADL_V_CDS_DB_CACHE SQL: SADL_V_DB_CACHE Type: view

Test entity for DB cache control

Sadl_V_Cds_Db_Cache is a CDS View that provides data about "Test entity for DB cache control" in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 4 fields with key fields carrid, connid.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SADL_V_DB_CACHE view
ClientDependent true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Test entity for DB cache control view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY carrid carrid Carrier
KEY connid connid Flight Number
planetype planetype Planetype
price

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 Sadl_V_Cds_Db_Cache.
-- 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: SADL_V_DB_CACHE

CREATE VIEW Sadl_V_Cds_Db_Cache AS
SELECT
  carrid,
  connid,
  planetype,
  sum(price) AS price
FROM sflight
;