Application Development 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: 

REUSE_ALV_BLOCK_LIST_DISPLAY

Former Member
0 Kudos

Hi,

I am using the function module"REUSE_ALV_BLOCK_LIST_DISPLAY" for displaying output in block

problem is that,

i am updating the data after displaying the ALV , and after refreshing all the data is getting updated.

and when the i click on the back button then the value is not stored, is there any setting in FM REUSE_ALV_BLOCK_LIST_DISPLAY so that it gets refreshed itself

thanks

3 REPLIES 3

Former Member
0 Kudos

Hi,

The following method call is used to refresh the data displayed within an ALV object grid:

CALL method gd_tree->REFRESH_TABLE_DISPLAY.

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,

Eshwar.

0 Kudos

what field i ll put for "gd_tree"???

0 Kudos

Hi ,

try to declare the SET PF-STATUS 'STANDARD' EXCLUDING EXTAB.

regards,

Bharani