i've two SAPUI5-applications and both work well, but there's a problem with using them on fiori launchpad. The initially opened app gets the correct url to our rest service (.json). After i click the Home button and go to the second app the url gets put together incorrectly, because the resource-path of the second App still contains the folder of the initial App.
1. .../app1folder/app1resource
2. .../app1folder/app2resource
Correct would be:
2. .../app2folder/app2resource
The resources we use are created as destinations in the SAP HANA Cloud Platform Cockpit>Connectivity>Destinations
Neo-app.json
{ "path": "/app1resource", "target": { "type": "destination", "name": "app1" }, "description": "findLoss API" }
How can I manually change the "appfolder"-directory (app1folder, app2folder)? Or is it automatically created by the fiori launchpad and unaccessible?
My application is built from scratch and not generatedand maybe there's a common mistake.
Thank you.