Buffering in CDS View ZSFLIGHTVIEW
Buffering in CDS View ZSFLIGHTVIEW
Buffering in CDS View ZSFLIGHTVIEW
sqlViewName: 'ZSFLIGHTVIEW'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Flight Information'
@VDM.viewType: #BASIC
@ClientHandling.type: #INHERITED
@AbapCatalog.buffering.status: #ACTIVE // #ACTIVE , #NOT_ALLOWED, #SWITCHED_OFF
//@AbapCatalog.buffering.numberOfKeyFields: 000
@AbapCatalog.buffering.type: #FULL // #FULL , #GENERIC , #NONE , #SINGLE
define view Zflight_View as select from sflight
{
key sflight.carrid as AirlineCode,
key sflight.connid as ConnectionNumber,
key sflight.fldate as FlightDate,
sflight.price as Airfare,
sflight.currency as FareCurrency,
sflight.planetype as PlaneCategory,
sflight.seatsmax as MaxAvailableSeats,
sflight.seatsocc as OccupiedSeats
}