2014 Aug 25 8:56 PM
Hi all,
I am displaying ALV using normal ABAP.when i click on button user command will activate and updates the bdc and displays another alv.
When i click on the button twice at the same time the second alv is not getting refreshed. can you please let me know how to refresh the alv on button click.
Thanks in advance.
Regards,
Lakshmi.
2014 Aug 25 9:28 PM
2014 Aug 26 5:43 AM
Hi,
I think you are missing this:
IF g_custom_container IS INITIAL
**********YOUR CODE*************
ELSE.
DATA: stable TYPE lvc_s_stbl.
CALL METHOD grid1->refresh_table_display
EXPORTING is_stable = stable.
ENDIF.
2014 Aug 26 3:44 PM
2014 Aug 26 3:50 PM
2014 Aug 26 9:16 AM
2014 Aug 27 12:46 AM
Hi Nagalakshmi,
are you updating anything after first refresh?
if so before the updating code refresh the tables or fields ,it definitely works
Regards,
Padma.