cancel
Showing results for 
Search instead for 
Did you mean: 

Update / Access ComponentController Context from View

Former Member
0 Kudos

Hi,

Is it possible to update View Context Attributes to Component Controller Context attributes ? These attributes are not mapped from Component Controller to View.

if yes how ?

Thanks n Advance

Rohit

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi Rohit.

Do you mean to transfer attributes which were created in the view context to the

component controller context? If yes, you have to do it manually, which mean to

delete it from the view context, create it in the comp controller context and then

map them to the view context again.

Cheers,

Sascha

Former Member
0 Kudos

Hi,

Probably what you can do this is create a method in the component controller which changes its value..

Pass the value you want to set for component controller attribute as parameter to this method.

Eg:WD_COMP_CONTROLLER->set_val ( exporting val = "VIEW_VALUE" ).

This should solve your problem.

Please award points if answer was helpful.