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

any class or method to update avl grid dynamically

Former Member
0 Likes
339

Hi all,

I want to update ALV GRID under one standard transaction. If any one can help me to get class name ,

any method or function module !

thanks in advace!

Sandesh

Hi all,

I want to update ALV GRID under one standard transaction. If any one can help me to get class name ,

any method or function module !

thanks in advace!

Sandesh

1 REPLY 1
Read only

Former Member
0 Likes
314

Hi,

Try with refresh the grid. The following method is used to refresh the data:

gd_tree->REFRESH_TABLE_DISPLAY.

Write the code like this:

CALL METHOD gd_tree->set_table_for_first_display

EXPORTING

is_layout = gd_layout

CHANGING

it_fieldcatalog = gd_fieldcat

it_sort = it_sortcat

it_outtab = it_report.

CALL method gd_tree->REFRESH_TABLE_DISPLAY.

CALL METHOD cl_gui_cfw=>flush.

Regards,

Bhaskar