Buffering in CDS View ZSFLIGHTVIEW

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

@AbapCatalog.

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
}

You might also like