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: 

Problem in Double click event for ALV.

Former Member
0 Kudos

Hi experts ,

My scenario is one ALV is displayed in First screen and after double click on particular column second screen is displayed with the other ALV.

I have created 2 custom containers.

My problem is that for the first double click every thing is fine,then i come back to first screen from second screen when i double click on different item the previous item is displayed which was for the first double click .

I debugg the program , passing of data to the internal table is fine.

Help me in the problem

Thanks

Aisurya

2 REPLIES 2

former_member184578
Active Contributor
0 Kudos

Hi,

You have to use refresh_table_dispaly method to update the values. else it will display the same.

try this logic

if cus_cont is initial.

o_grid->set_table_for_first_display.

else.

o_grid->refresh_table_display.

endif.,

check BCALV_GRID_03 standard program for reference.

hope this helps u.,

Thanks & Regards,

Kiran

Aisurya
Participant
0 Kudos

Problem solved..