cancel
Showing results for 
Search instead for 
Did you mean: 

Cross-app navigation action from Work zone integration cards

Shubham_M
Participant
1,575

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

Accepted Solutions (1)

Accepted Solutions (1)

florian_buech
Product and Topic Expert
Product and Topic Expert

Thanks for posting this questions. Can we you please try the following syntax for using the intent-based navigation (IBN) for the UI5 card header:

In your example this would be the object mymachines with action display.

Kind regards
Florian

Shubham_M
Participant
0 Kudos

Hi Florian,

Thanks for providing the answer. It works.

Do we have any documentation or reference about this? I couldn't find anything.

Thanks in advance.

Thanks,

Shubham

Answers (2)

Answers (2)

grajashekar
Newcomer
0 Kudos

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

florian_buech
Product and Topic Expert
Product and Topic Expert
0 Kudos

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)

Shubham_M
Participant
0 Kudos

Hi Florian,

Is something changed on this from last week? From Last Friday all our integration cards stopped working in all our environments.Checked in all environments for 2 of our clients.

Thanks,

Shubham

florian_buech
Product and Topic Expert
Product and Topic Expert
0 Kudos

Hi Shubham,

There shouldn't be any change, please get this raised as an official SAP Support ticket so our engineering teams can have a look.

Thank you!
Florian