‎2008 Aug 19 9:52 PM
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
‎2008 Aug 19 10:03 PM
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.
‎2008 Aug 19 10:03 PM
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.