cancel
Showing results for 
Search instead for 
Did you mean: 

Sharing data between Custom application and Standard WD application on FPM

Former Member
0 Kudos

I have to enhance a SAP standard Webdynpro application which is on Floor Plan Manager with additional views. I am able to add additional tabs in the application using the FPM configuration. I have created a Z WD application with 2 views. I am able to display the views inside tabs. How will I share data from component controller between these 2 applications? The obvious answer is making an interface method. But as soon as I enter into enhancement mode and create a method the check box for interface method is taken away i.e. I cannot make this method or any other method as interface method. Any inputs are appreciated.

Accepted Solutions (1)

Accepted Solutions (1)

saravanan_narayanan
Active Contributor
0 Kudos

Hello,

I can think of two solutions

solution 1.

you can create the interface method in your Z wd applications. And in the standard wd application after creatng the component usage, you can call the interface method of your z wd application and pass the data

solution 2.

Create a global class and from the standard application you can set the required values in static attributes and your z wd applications can access the data from the Global Class. this is the standard approach proposed by SAP for sharing data between components in FPM applications.

BR, Saravanan

Answers (1)

Answers (1)

Former Member
0 Kudos

Thanks for bringing the clarity.