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: 

data updation in next screen in alv using checkbox

trupti_kanekar
Explorer
0 Kudos

Hi,

I need my table it_final to be updated after selecting a entry by checkbox selection and on executing it should populate to the next screen, i am using alv_grid_display as both the screen must be in alv, should not use alv_popup for selection using checkbox. pls help

1 REPLY 1

Former Member
0 Kudos

There is not much to go on in your problem description. However if you need to refresh the ALV grid after making a change to the internal table, you need to use the ALV Refresh. If you are using the old reuse function module in your user command processing form add the following:

rs_selfield-refresh = 'X'.

rs_selfield-col_stable = 'X'.

rs_selfield-row_stable = 'X'.

If you are using the ALV OM (Class based Object Model )

l_stb-row = 'X'.

l_stb-col = 'X'.

gr_alv1->refresh(

s_stable = l_stb

refresh_mode = if_salv_c_refresh=>soft

).

Of couse you may use options as needed