Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

How to update a node

Former Member
0 Likes
320

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

1 REPLY 1
Read only

Former Member
0 Likes
280

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                    .