Hello everybody, I'm trying to install SAP CPI.
The problem is that the installation is stucked on 76%.
I've tried to create a new subccount, to change provider (USA, Singapore), but none of these solutions worked.
What should I do? Everytim...
Hello everybody, I've a problem in my SAP CAP application.
I've a custom handler. In this custom handler, I retrieve the data from two different sources:
var datasFromSAP = [];var datasFromLocal = [];datasFromSAP = await customer360service.run(re...
Hello everybody, I have a problem:
in my SAP CAP project, I've a simple custom handler:
// READ ODS from SAP and from HANA this.on('READ', ItemSet, async request => { var query = SELECT.from('Draft_Header'); var respLocal = await db.run(query);<...
Hello everybody, I’m working on a SAP CAP application.
One of my entity is the entity ItemSet
The HTTP request from the frontend is:
GET ItemSet?$skip=0&$top=20&$filter … &$inlinecount=allpages HTTP/1.1
I removed the filters for simplicit...
Thank you so much! I solved the problem! frontend tried to get /app/v2/metadata, but the correct path was /v2/metadata (without /app). I added a route: { "source": "^/app/v2/(.*)$", "target": "/v2/$1", "destination": "srv-api", ...