Avoid popup for ID in Fiori preview for Books.

This commit is contained in:
Dinu
2021-11-09 14:01:53 +04:00
parent 7f6b87171a
commit 31d2f4c932

View File

@@ -3,3 +3,12 @@ service AdminService @(requires:'admin') {
entity Books as projection on my.Books;
entity Authors as projection on my.Authors;
}
//Since ID is computed, we can hide the popup for ID on Create
annotate AdminService.Books with {
ID @Core.Computed;
}
annotate AdminService.Authors with {
ID @Core.Computed;
}