0

I'm developing a type of Launchpad do Fiori but using data from Sage X3. Do you know if it's possible have 2 local aplications where one calls another through Component.js ?

Can you help me with this ?

Best Regards

kcrisman
  • 4,374
  • 20
  • 41

1 Answers1

0

Please check out the following SO question Fiori - Cross Application Navigation and this SCN blog Cross Application Navigation between SAPUI5 applications.

In a nutshell, you must run the app(s) inside either the "real" Fiori Launchpad or you must run both of them in the local Fiori sandbox (if you are using WebIDE). Then you can navigate from one to another using the CrossApplicationNavigation service to go from one to another using the semantic objects of the apps. Something along the lines:

// You should also check if the sap.ushell.Container exists before this
sap.ushell.Container.getService("CrossApplicationNavigation").toExternal({
    target: { 
        semanticObject: "Your target object", 
        action: "The action for the object" 
    }, 
}); 

To get your WebIDE test environment, you should look at this documentation: Testing Multiple SAP Fiori Applications.

Serban Petrescu
  • 5,127
  • 2
  • 17
  • 34
  • I don't have a semantic obect because I'm adapt Fiori app to other the data base system. So in the launchpad, I created a simple page, where the user do the login and then appears two tiles for two diferents pages. When in this case I only want access locally two diferrents pages that I have in sames page. I can use your propose ? – Cristina Rodrigues Jun 11 '17 at 22:21