Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions app/admin/fiori-service.cds
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,6 @@ annotate AdminService.Books with @(UI : {
}
],
FieldGroup #General : {Data : [
{Value : title},
{Value : author_ID},
{Value : genre_ID},
{Value : descr},
]},
Expand Down
2 changes: 1 addition & 1 deletion app/browse/fiori-service.cds
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ annotate CatalogService.Books with @(UI : {
TypeName : '{i18n>Book}',
TypeNamePlural : '{i18n>Books}',
Title : {Value : title},
Description : {Value : author.name}
Description : {Value : author_ID}
},
Identification : [
{Value : title},
Expand Down
7 changes: 2 additions & 5 deletions app/common.cds
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,7 @@ annotate my.Books with
LineItem : [
{Value : ID},
{Value : title},
{
Value : author.name,
Label : '{i18n>Author}'
},
{Value : author_ID},
{Value : genre.name},
{Value : stock},
{Value : price},
Expand Down Expand Up @@ -57,7 +54,7 @@ annotate my.Books with
TypeNamePlural : '{i18n>Books}',
TypeImageUrl : 'sap-icon://course-book',
Title : {Value : title},
Description : {Value : author.name}
Description : {Value : author_ID}
}, });


Expand Down