Hi,
The WD_CONTEXT attribute is a reference to the root node of the context of the controller. Regardless of the edited controller, it is always a reference variable of the type IF_WD_CONTEXT_NODE.
You can use WD_CONTEXT and the interface methods to edit the content of a
context node in your controller method.
Ex:- The controller context contains the MY_NODE1 node.
data: TABLE_NODE type ref to IF_WD_CONTEXT_NODE.
TABLE_NODE = WD_CONTEXT->GET_CHILD_NODE( 'MY_NODE1').
Hope this helps you.Pls revert for further clarifications.
Thanks
KH