Reputation: 21
I'm trying to develop a simple SAP Fiori List Report application with SAP Fiori Tools and VSCode. My app consumes an OData service published in the SAP system.
When I try to start my application locally using npm start ("fiori run --open ..."), the browser does not load the page, and doesn't ask for SAP credentials (I can access the ODATA via its address, that is, not using the app).
Started having this problem after it worked fine... I changed network (home/office)... can't seem to understand what else changed in the meantime...
My environment is the following:
package.json
file:
"@sap-ux/ui5-middleware-fe-mockserver": "^2.2.86",
"@sap/ux-ui5-tooling": "^1.16.2",
"@ui5/cli": "^4.0.12"
manifest.json
file:
"sap.ui5": {
"flexEnabled": true,
"dependencies": {
"minUI5Version": "1.114.0",
......
Any ideas of what could be wrong, or how I could troubleshoot this?
Tried to start my application locally using npm start ("fiori run --open ..."), was expecting the Fiori element standard list report UI. Have tried updating the support packages, and navigating the command line infos but... nothing.
Upvotes: 1
Views: 105
Reputation: 21
Solved... I was using a VPN that interfered with the redirection to sapui5 and the ODATA service, made by the local proxy (defined in the ui5-local.yaml).
Upvotes: 1