CrossAppNavigation¶
Define how to achieve 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 |
Yes |
| Params | object |
No |
| SemanticObject | string |
Yes |
| _Type | const |
Yes |
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:
"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"
}
}