Demo_Cds_Cached_View

DDL: DEMO_CDS_CACHED_VIEW SQL: DEMOCDSCACH Type: view

Demo_Cds_Cached_View is a CDS View in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (2)

NameValueLevelField
AbapCatalog.sqlViewName DEMOCDSCACH view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
carrid carrid
fldate fldate
price price
seatsocc seatsocc
//This view is cached in program DEMO_SELECT_EXTENDED_RESULT

@AbapCatalog.sqlViewName: 'DEMOCDSCACH'
@AccessControl.authorizationCheck: #NOT_REQUIRED
define view Demo_Cds_Cached_View
  as select from
    sflight
    {
      carrid,
      fldate,
      price,
      seatsocc
    }