cancel
Showing results for 
Search instead for 
Did you mean: 

How to make use two different web dynpro components?

Former Member
0 Kudos

Hi,

There is a customizing screen with two different tabs say A and B tabs, 'A' is related to one standard web dynpro component and 'B' tab is related to another standard web dynpro component. How is it possible to get the values of tab 'B' into tab 'A' during run time after providing values in tab 'B'.

Regards,

Mehar.

Edited by: MeharTaj on Feb 3, 2012 7:51 AM

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member199125
Active Contributor
0 Kudos

Even though those are tow different tabs, but both are under one view controller.

So create a node and pass the data.. so data will be available to both tabs.

View controller is local controller

component controller is global controller.

if you want to access the node outside your view then declare the node in component controller.

Regards

Srinvias

Former Member
0 Kudos

Hi ,

Declare a node in your component controller and store the value which you want to get in other tab.

Bind this value to the node and access this node when you navigate to other tab. So you will be able to

get the value.

Hope this helps.