Hi Community,
we are developing our Apps in the SAP Web IDE, with usage of the Connectivity Service (Destinations & SAP Cloud Connector) where we connected our SAP Business One ServiceLayer.
Next step would be a local Deployment onto our own HANA machine. As far as i understand we have to import the project into SAP HANA Web-based Development Workbench, but there the Connectivity Service is missing.
How do you propose to solve this problem?
For clarification:
neo-app.json
{
"welcomeFile": "/index.html",
"routes": [
{
"path": "destinations/servicelayer",
"target": {
"type": "destination",
"name": "servicelayer"
},
"description": "servicelayer"
}
}
App.controller.js
var e = new sap.ui.model.odata.v4.ODataModel({
serviceUrl: "/destinations/servicelayer/",
groupId: "$direct",
synchronizationMode: "None"
});