sap - How to navigate from launchpad to Fiori apps and then back? -


In our company, we have established the Fiori Launchpad, in which we have configured a tile that is related to custom The SAPUI 5 app has been developed, which has been deployed on the server as a BSP. It took us a long time, still using the router pattern within that app, we managed to get the custom UI5 application from Navigation to Launchpad tile.

  • We are struggling with this, these are 2 other navigation paths:

    • From the application
    • Ideally, this application will be able to use UI5 ​​with a transition outside of the navigation. Back to Fiori Launchpad (back home)

    • In other applications (tiles for tiles)

    In the manner, so there is not only one window in JS. . After a long search, the only indication I found in support for this scenario is in this class:

    However, I do not understand how to use it . Examples are also not correct and there are syntax errors. I am getting 2 forum posts and asked about using it, but they do not have any meaningful answer.

Assume that you have configured semantic objects for in-place navigation in your code Using the Launchpad to navigate UI 5 applications you can navigate from one app to another using the already mentioned CrossApplicationNavigation service, however, about it The document is a bit confusing. How it works for me:

  // Step 1: App navigation Navigation var Navigation service = Get service for service. // Step 2: Navigate your semantic object navigation navigation. For service ({Target: {Semantic Object: "YourObject", Action: "YourAction";}, Parameter: {A: "B"} // Optionally})  

If you want to get back to your launchpad after in-place navigation, then you need to call

  window.history.go (- 1)  

It still triggers the correct transition.


Comments

Popular posts from this blog

java - Can't add JTree to JPanel of a JInternalFrame -

javascript - data.match(var) not working it seems -

javascript - How can I pause a jQuery .each() loop, while waiting for user input? -