carlonnheim
Participant
Member since ‎2021 Mar 06

User Statistics

  • 230 Posts
  • 2 Solutions
  • 8 Kudos given
  • 88 Kudos received

User Activity

Hi,We have a project running on CAP CDS7 which uses remote services in handlers like thisthis.on('READ', 'Something', async req => { const svc = await cds.connect.to('AnotherService'); const res = await svc.run(SELECT.from('RemoteThing', some...
Hi,We are experiencing issues with the versioning of dependencies between @Sisn-cloud-sdk packages. If we bring in one of the packages alone, that will in turn bring other packages as dependencies. The semver of these dependencies will pick higher ve...
Hi,We are upgrading a CAP project from CDS7 to CDS8 where we have programmatic adjustments to the services metadata. Like this// In custom server.js const cds = require('@sap/cds'); module.exports = (o) => { // ... cds.on('loaded', csn => { ...
Hi,We are upgrading a CAP project from CDS7 to CDS8 and are getting issues with media fields using a custom handler to fetch their content, like this ImageMediaType : String; @Core.MediaType: ImageMediaType virtual Im...
Hi,We are starting to use the beta custom build feature of npm Workspaces. Is there an intended approach of dealing with freezing of imported packages?Without the npm workspaces, this is handled by "cds build" (it copies the package-lock.json file of...