cancel
Showing results for 
Search instead for 
Did you mean: 

SAP FIORI - Unable to start App

jordi_candel
Explorer
0 Kudos

Hi guys,

I just created a littel HelloWorld SAPUI5 application and I wanted to launch it from the FIORI launchpad. So I created everything step by step: catalog,  target mapping, static app, group,  I assigned the group / catalog to a new created role via  transaction PFCD, semantic object etc..

I basically followed this guide:

http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/80af9b19-9cde-3110-83b0-f450f2b20...

Everything seems to work. But when I try to start the app from the launchpad I always get this message:

Does anyone has an idea why this is not working? Are there any logs that could maybe help me...?

Thanks

Goluef

Accepted Solutions (0)

Answers (2)

Answers (2)

ChandraMahajan
Active Contributor
0 Kudos

Hi,

Do you have component.js file available within your HelloWorld UI5 application?

it is one of the pre-requisite. Check this blog for more details.

Regards,

Chandra

jordi_candel
Explorer
0 Kudos

Hi Chandra,

thanks for the advice. In that blog they give you a basic Component.js structure.

  1. jQuery.sap.declare("your.namespace.Component"); 
  2. sap.ui.core.UIComponent.extend("your.namespace.Component", { 
  3.   createContent : function() { 
  4.   // create root view 
  5.   this.view = sap.ui.view({ 
  6.   id : "app"
  7.   viewName : "your.namespace.view.App"
  8.   type : sap.ui.core.mvc.ViewType.XML, 
  9.   viewData : { component : this
  10.   }); 
  11.   return this.view; 
  12.   } 
  13. }); 


just by adding this file and adapting the namespace does not seem to be enough. I still have the problem. Any suggestion?


Thanks

Goluef

AshwinDutt
Active Contributor
0 Kudos

Hello Goluef,

Just have a look at the blow. Might help in some way.

Regards,

Ashwin