on 2021 Nov 09 5:38 AM
Hi Team,
I am trying to call a Fiori application by clicking on the header of the Work zone integration card. When I am trying to use the relative URL it is taking the iFrame container URL as a parent and fails.
What I want to achieve is navigation from "https://{domain}/site#workzone-home&/home" to "https://{domain}/site#mymachines-display".
Here is the code I have written in the manifest of the Integration card:
"sap.card": {
"type": "List",
"designtime": "dt/configuration",
"header": {
"title": "Request an Order",
"subTitle": "Submit a new order request",
"icon": {
"src": "sap-icon://my-sales-order"
},
"actions": [
{
"type": "Navigation",
"parameters": {
"url": "/site#mymachines-display"
}
}
]
},
"configuration": {
"destinations": {
}
}
},
Thanks,
Shubham
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Florian,
I'm working on a component-based integration card. I have a similar question.
Is it possible to display the second page of an application by providing the route name (Can include context id) in addition to the semantic object and action?
Currently, I'm using 'triggeraction' event of a card to achieve cross-app navigation.
Regards,
Goutham Rajashekar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is a more generalized example:
"actions": [
{
"type": "Navigation",
"enabled": "{{parameters.navigationActive}}",
"parameters": {
"ibnTarget": {
"semanticObject": "{{parameters.semanticObject}}",
"action": "{{parameters.semanticAction}}"
}
}
}
]
Some related documentation entries: Card Explorer (sap.com) / Card Explorer (ondemand.com) / Card Explorer (ondemand.com)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
71 | |
10 | |
8 | |
7 | |
6 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.