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

REFRESH ALV GRID VALUES

Former Member
0 Likes
332

Hi gurues...

How come my output internal table isn't being updated (ceckbox for example) at the user-commannd even when I'm activating REFRESH_TABLE_DISPLAY.

How can I make my internal table update itself within the user-command module??

Thanks,

Rebeka

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
314

you need to call method CHECK_CHANGED_DATA method in your pai in the beginning.

module user_command input.

call method grid->check_changed_data.
"this method will update the checkbox changes to internal table


endmodule.

1 REPLY 1
Read only

Former Member
0 Likes
315

you need to call method CHECK_CHANGED_DATA method in your pai in the beginning.

module user_command input.

call method grid->check_changed_data.
"this method will update the checkbox changes to internal table


endmodule.