Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update GettingStarted.md #524

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion docs/pages/GettingStarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,12 @@ openSpreadsheetUploadDialog: async function (oEvent) {

When deploying the app to your ABAP system, you may get an error like this: `SAPUI5 library/component cc.spreadsheetimporter.v0_33_2 used in application Z*** does not exist`. The application is deployed, but the service returns an error.

IF you have used a template to create the app, then make sure the build script is using the --all command like below

```
"build": "ui5 build --config=ui5.yaml --all --clean-dest --dest dist",
```

To avoid this error, you can add the following to your `manifest.json` file:

```json
Expand Down Expand Up @@ -290,4 +296,4 @@ builder:
archiveName: uimodule
includeDependencies:
- ui5-cc-spreadsheetimporter
```
```