kosmopilot
Explorer
Member since ‎2022 Jun 01

User Statistics

  • 17 Posts
  • 1 Solutions
  • 7 Kudos given
  • 3 Kudos received

User Activity

Hi, I'd like to register an event handler that is called after a db operation has been completed on a specific entity. I have tried using the following: cds.services.db.after("SAVE", cds.entities["Example"], () => { // ... }); However, the `...
Hi, I would like to register event handlers on the db (service), in order to react to database operations. However, the event handlers are never called when using the global cds.ql functionalities, e.g. DELETE, because the `path` and `entity` of t...
After upgrading @sap/cds and @sap/cds-dk to version ^7.0.0 (from 6.3) the logging of requests changed from the component 'cds' to 'odata'. However, setting the log level of 'odata' in the package.json has no effect. Previously, setting the log lev...
Hello, how does service consumption work in a monorepo environment? Consider, for instance, the example repository cloud-cap-samples and the 'app' bookstore. Bookstore consumes/mashes up multiple services: bookshop, reviews, orders etc. . Are those...
In my NodeJs CAP application, I'd like to use hybrid testing as described in the capire documentation in order to connect to a remote service that runs on a HANA XSA on-premise server. Unfortunately, the `cds bind` command described in the documen...