Skip to content

CrossAppNavigation

Define how to do cross application navigation from an MDK web app to a UI5 app or to another MDK web app on the Fiori Launchpad.

CrossAppNavigation Properties

Property Type Required
Action string Required
Params object Optional
SemanticObject string Required
_Type const Required

Action

The action declared in the manifest.json of the target application. For MDK web app, it is always display.

  • type: string

Params

The additional parameters to be passed to the target application.

  • type: object

SemanticObject

The semantic object declared in the manifest.json of the target application. For MDK web app, it is always <ProjectName>_<ApplicationName>.

  • type: string

_Type

  • type: const

The value of this property must be equal to:

"Action.Type.CrossAppNavigation"

Action Result

This action does not have an action result.


Examples

// CrossAppNavigation.action (no transition)
{
    "_Type": "Action.Type.CrossAppNavigation",
    "SemanticObject": "Customer",
    "Action": "display",
    "Params": {
        "customerID": "VINET"
    }
}