ABAP
DATA chicken TYPE chickentype .
DATA cow TYPE cowtype .
DATA bird TYPE birdtype .
my_method( IMPORTING cow = cow
bird = bird ).
BDL
define behavior for zi_comments persistent table zbc_comments
late numbering
lock dependent by _Task
SQL
select * from users
where name like 'P%'
and not exists( select 'irgendwas' from dummy)
CDS
@AbapCatalog.sqlViewName: 'ZSQL_CLIENT'
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK /* Test */
@EndUserText:{ label: 'Client independent source data',
quickinfo: 'Test' }
define view zcds_client as select from snwd_so_i as soi
left outer join snwd_pd as pd
on soi.product_guid = pd.node_key
{
test as InDerZeile,
soi.parent_key as so_id,
@UI.lineItem[{position: 10},
{position: 20,
qualifier: 'Q' ,
type: #TEST }]
soi.op_item_pos as so_pos,
pd.product_id as pd_id
}