cancel
Showing results for 
Search instead for 
Did you mean: 

webdynpro ALV

Former Member
0 Kudos

Hi

I have created an application through which we need to update the DB table.

How to capture the current ALV data into an Internal Table.

Regards,

Surya

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Solved my Self

Former Member
0 Kudos

Would you mind sending me the sample coding for how you solved this?

thx

Claude

abhimanyu_lagishetti7
Active Contributor
0 Kudos

most of the time people don't post the solution

Read the context node binded to the ALV .

data: lr_node type ref to if_wd_context_node.

data: lt_table type <node type>

lr_node = wd_context->get_child_node( '<node name>' ).

lr_node->GET_STATIC_ATTRIBUTES_TABLE( table = lt_table ).

Abhi