Files
cloud-cap-samples/test/localized-data/services.cds
2025-07-07 15:37:02 +02:00

13 lines
356 B
Plaintext

using { CatalogService, sap.capire.bookshop as my } from '@capire/bookshop';
using from '@capire/common';
extend service CatalogService with {
@cds.localized:false
entity BooksSans as projection on my.Books {
*, //> non-localized defaults, e.g. title
key ID,
texts.title as localized_title,
texts.locale,
} excluding { contents };
}