cancel
Showing results for 
Search instead for 
Did you mean: 

Fiori Launchpad Custom App Launcher Issue

vivek_agrawal2
Participant
0 Kudos

Hi

We have a designed Fiori Launchpad using Cloud Portal Services on HCP. We have created Custom App Launcher tiles and referred XML views of SAP UI5 App also in HCP. The  Launchpad is not working as of now . The waiting icon keeps revolving and tiles dont appear.

Anybuddy from cloud portal team please help us as this is a production issue.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Vivik,

Does the app work a stand alone app when invoking it from Hana Cloud Platform's cockpit?

(In HCP'cockpit, go to your account, HTML% Applications and start the app)

Best,

Sapir

vivek_agrawal2
Participant
0 Kudos

Hi Sapir

The standalone app is working fine. I am getting below error in fiori launchpad.

Former Member
0 Kudos

Hi Vivek,

Please refer to SAP Fiori Launchpad CPv2

In the app's neo-app.json file under routes section you define its routing.

For every route there you should have two mappings:

  1. A route for the app in FLP.
  2. For testing purposes - a route for the app to work as  a standalone.




For example, if you want your app to fetch some files from another Fiori app that is running you should have following mappings:

  1.       "path": "/sap/ui5/1/resources/sap/cus"
  2.       "target": { 
  3.         "type": "application"
  4.         "name": "libreuse"
  5.         "entryPath": "/sap/cus" 
  6.       }, 
  7.       "description": "HCM Lib Reuse" 
  8.     }, 
  9.       "path": "/resources/sap/cus"
  10.       "target": { 
  11.         "type": "application"
  12.         "name": "libreuse"
  13.         "entryPath": "/sap/cus" 
  14.       }, 
  15.       "description": "HCM Lib Reuse" 
  16.     }
    In your  neo-app.json file, you probably have a route to  resources/sap/suite/commons/

    Best,

    Sapir