I developed a plugin but declared it as type:module in the package.json. Once I started using it, it blew up on me. After some debugging i found this in 'sap/cds/lib/plugin.js'// TODO: support ESM plugins. But see cap/cds/pull/1838#issuecomment-11772...
I have application (a) and 2 plugins (p1 and p2). In P2's db folder i created a file x.cds that contains an extension extend entity domaind.Bla with {...additional fields} also in P2 I reference a) p1 in the package.jsonb) the file x.cds in an index....
My intent is to trigger an external navigation following a successful execution of a bound action. That external navigation should use the return (UUID) of the action as a parameter of the external navigation.I have tried to approach this problems f...
The details of this problem and reproduction is available in this GitHub repo: https://github.com/MartinStenzig/cds-bug-6 Problem descriptionI run a first query with a $top=1100 and receive a nextLink of "@odata.nextLink": "sapWorkOrder?$top=1100&$sk...
When I was invited to host a CAP session as part of Devtoberfest 2023, it rekindled a longstanding question in my mind:
Can I successfully develop and deploy a simple S/4 extension app within a mere 60 minutes?
In pursuit of this goal, I aim...
In my experience, the destination test in the Cockpit does not work for this type of Authentication method. The method assumes that as part of the request you are providing a JWT token and the Cockpit does not automatically create a valid JWT for you...
I had a similar problem and had to code it with a custom action handler. None of the standard examples I could find would work. so here is what I did....sap.ui.define([
"sap/m/MessageBox"
], function (MessageBox) {
'use strict';
return {...
I would create a separate testing profile that has the necessary connection information and then use cds.test with a profile reference. Any reason that would not work for you?
Unless you have some data that you don't want to loose I would do a complete undeploy and re-deploy of your MTA just to see if that does the trick. I have not seen that error before.