Skip to Content
0
Sep 03, 2019 at 06:44 AM

Develop in SAP Web IDE - Deploy in SAP HANA Web-based Workbench

331 Views Last edit May 21, 2020 at 03:12 PM 2 rev

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"
			});