Tres formas de mostrar el mismo concepto: una línea, un servicio completo y un schema con numeración.
annotate LogaliGroupService.Courses with @odata.draft.enabled;
using {com.logaligroup as entities} from '../db/schema'; service LogaliGroup { @odata.draft.enabled entity EmployeesSet as projection on entities.Employees; entity ContactsSet as projection on entities.Contacts; };
1namespace com.logaligroup; 2 3using {cuid} from '@sap/cds/common'; 4 5entity Employees : cuid { 6 numberDocument : String(9); 7 firstName : String(40); 8 lastName : String(40); 9};