Technical Articles
SAP Commissions – ⚙️Smart Data Integration[SDI] – Part 4
Dear All,
This article is intended for database admins, consultants, customers & partners to start with basic configuration in HANA WebIDE for your SDI Project
SAP will provide web-based integrated development environment (SAP Web IDE) is a quick way to get started for developing applications. SAP Web IDE is a good choice for immediate development access. Also an extensible development environment that can be accessed via Google chrome.
Let’s get started to configure basic foundation.
SAP Web IDE for SAP HANA
- When HANA comes to 1.0 SPS11, XS Advanced is introduced in order to replace XS Classic engine.
- SAP Web IDE for SAP HANA is exactly an full-featured development platform application running in XSA.
- It best fits for HANA development within your local HANA and no need Cloud service
Also, you can clone from your Github/Gitlab Repo (Best Practice and CI/CD Concept)
Template Customization : Select the correct space:
Confirmation and click Finish or you can go back Previous
This is how your empty project will look like: you should see mta.yaml
Database – SAP HANA Database Module
Next right Click on the Project and follow the steps
Create a Module Name as per your choice
Select Template Customization
This is how your empty project will look like:
package.json
{
"name": "deploy",
"dependencies": {
"@sap/hdi-deploy": "3.10.0"
},
"scripts": {
"start": "node node_modules/@sap/hdi-deploy/deploy.js"
}
}
mta.yaml
ID: TENANTID_v1
_schema-version: '2.1'
version: 0.0.1
modules:
- name: Module1
type: hdb
path: Module1
requires:
- name: hdi_Module1
resources:
- name: hdi_Module1
properties:
hdi-container-name: ${service-name}
type: com.sap.xs.hdi-container
References
Part 1 – SAP Commissions – Smart Data Integration[SDI] – Part 1
Part 2 – SAP Commissions – Smart Data Integration[SDI] – Part 2
Part 3 – SAP Commissions – Smart Data Integration[SDI] – Part 3
Part 4 – SAP Commissions – Smart Data Integration[SDI] – Part 4