add content for openSAP course week1 unit4

This commit is contained in:
d045778
2020-01-30 17:30:03 +01:00
parent 21265e1138
commit d612b7bc0c
9 changed files with 1029 additions and 80 deletions

View File

@@ -1,7 +1,5 @@
using { sap.capire.bookshop as my } from '../db/schema';
@path:'/browse'
service CatalogService {
service CatalogService @(path:'/browse') {
@readonly entity Books as SELECT from my.Books {*,
author.name as author
@@ -9,5 +7,4 @@ service CatalogService {
@requires_: 'authenticated-user'
@insertonly entity Orders as projection on my.Orders;
}
}