Ddls_Api_State_Test

DDL: DDLS_API_STATE_TEST SQL: api_state_test Type: view Package: SEU_TEST

test

Ddls_Api_State_Test is a CDS View that provides data about "test" in SAP S/4HANA. It reads from 1 data source (sflight) and exposes 13 fields. Part of development package SEU_TEST.

Data Sources (1)

SourceAliasJoin Type
sflight sflight from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName api_state_test view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label test view

Fields (13)

KeyFieldSource TableSource FieldDescription
mandt sflight mandt
carrid sflight carrid
connid sflight connid
fldate sflight fldate
price sflight price
planetype sflight planetype
seatsmax sflight seatsmax
seatsocc sflight seatsocc
paymentsum sflight paymentsum
seatsmax_b sflight seatsmax_b
seatsocc_b sflight seatsocc_b
seatsmax_f sflight seatsmax_f
seatsocc_f sflight seatsocc_f
@AbapCatalog.sqlViewName: 'api_state_test'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'test'
define view Ddls_Api_State_Test as select from sflight { 
    sflight.mandt, 
    sflight.carrid, 
    sflight.connid, 
    sflight.fldate, 
    sflight.price, 
//    sflight.currency, 

    sflight.planetype, 
    sflight.seatsmax, 
    sflight.seatsocc, 
    sflight.paymentsum, 
    sflight.seatsmax_b, 
    sflight.seatsocc_b, 
    sflight.seatsmax_f, 
    sflight.seatsocc_f
}