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

Retreive node table from ALV column tree

Former Member
0 Likes
439

Hello gurus, I have a column tree that users can add, remove, move, etc... nodes. This part works ok but I need to save the information and can't seem to find a way to get the node table back from the tree object after changes have been made.

Besides manually tracking the changes to the original table used to populate the tree, is there anyway to do this? A method or FM that I could use (I've looked but couldn't find it).

Thanks for the help!!

1 ACCEPTED SOLUTION
Read only

sharat_chandra
Product and Topic Expert
Product and Topic Expert
0 Likes
412

Hi,

The selected nodes need to be retrieved using the methods like GET_SELECTED_NODES. There is not automatic way of updating your source table for the tree. Using this method you can find out which node(s) have been selected & then you may perform the necessary operations(by modifying your source table ).

Hello gurus, I have a column tree that users can add, remove, move, etc... nodes. This part works ok but I need to save the information and can't seem to find a way to get the node table back from the tree object after changes have been made.

Besides manually tracking the changes to the original table used to populate the tree, is there anyway to do this? A method or FM that I could use (I've looked but couldn't find it).

Thanks for the help!!

1 REPLY 1
Read only

sharat_chandra
Product and Topic Expert
Product and Topic Expert
0 Likes
413

Hi,

The selected nodes need to be retrieved using the methods like GET_SELECTED_NODES. There is not automatic way of updating your source table for the tree. Using this method you can find out which node(s) have been selected & then you may perform the necessary operations(by modifying your source table ).