Address lookup to mocked S/4HANA system

What's working:
- Address information on OP
- Reading of S/4HANA Addresses
- Translations
This commit is contained in:
D065023
2019-11-30 14:17:17 +01:00
parent ed3ecd502f
commit 4a2139a5f2
13 changed files with 5892 additions and 18 deletions

View File

@@ -5,9 +5,26 @@
"license": "SAP SAMPLE CODE LICENSE",
"dependencies": {
"@sap/cds": "latest",
"express": "*"
"express": "*",
"sqlite3": "^4.1.0"
},
"scripts": {
"start": "npx cds run"
},
"cds": {
"requires": {
"API_BUSINESS_PARTNER": {
"kind": "odata",
"model": "srv/external/API_BUSINESS_PARTNER"
},
"db": {
"kind": "sqlite",
"model": [
"db/",
"srv/",
"app/"
]
}
}
}
}
}