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

Regarding ALV Grid Refresh

Former Member
0 Likes
954

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.

6 REPLIES 6
Read only

former_member156446
Active Contributor
0 Likes
931


Check this similar requirement post:

Read only

0 Likes
931

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.

Read only

0 Likes
931


It was clearly mentioned that its a regular ALV not OO alv.

Read only

0 Likes
931

Not that clearly though. OO is normal ABAP as well

Read only

PeterJonker
Active Contributor
0 Likes
931

How you click twice on a button at the same time ? 

Read only

Former Member
0 Likes
931

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.