‎2008 Apr 21 8:54 AM
Hello All,
I want to update a node with some values. How can i do that? Can any one tell me what are the classes is can use i order to update column.
Regards,
Gupta
‎2008 Apr 22 12:52 PM
Node can be changed like with below method
CALL METHOD lcl_gui_alv_tree2->change_item
EXPORTING
i_node_key = lw_material-node_key
i_fieldname = lv_fieldname
i_u_data = 'X'
i_data = lv_value
EXCEPTIONS
node_not_found = 1
OTHERS = 2 .