cancel
Showing results for 
Search instead for 
Did you mean: 

Navigate between two FPM OVP applications

former_member452749
Participant
0 Kudos

Hi all,

is it possible to navigate between two OVP applications?

The first OVP is the main application, meanwhile the second has to be called at button event.

Thanks in advance.

Regards,

Dario.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

Yes it is possible..If the navigation is between different pages of same component, you can achieve this by setting target page either by code or in FPM toolbar button attributes in FLUID.

If the navigation is between different components, you can you external window concept where you use URL ie application of the component.

Thanks

KH

Answers (2)

Answers (2)

J_R
Employee
Employee
0 Kudos

Normally, the navigation between two different FPM applications is done by using the functionality of the ABAP Report Launchpad component. The navigation can either be based on customizing and the desired navigation targets have to be defined in transaction LPD_CUST in this case, or the navigation can be performed purely programmatically without using LPD_CUST customizing. In the first case, the corresponding navigation API can be retrieved by calling method IF_FPM->GET_NAVIGATION; in the second case, it can be retrieved by calling IF_FPM->NAVIGATE_TO.

Calling an URL directly might result in the loss of your environment in which your FPM application is running, e.g. the portal or the NWBC environment.

Former Member
0 Kudos

Hi Dario,

Yes , we can , you should create a URL link to the 1st OVP and then in the second OVP you should call that URL link .

Thanks,

Pradeep.