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

ALV GRID Control Problem

Former Member
0 Likes
410

I am using ALV Grid Control ABAP Objects concept.

I am facing problem in it , if i click on any record it will display me the output , but when i click on any other report it is still

displaying me the 1st record output.

for eq. i clicked on 000002121 it will display me internal table related to this document but when i click on

000002122 it is showing IT of previous document only.

How to refresh the display in gui with new record

2 REPLIES 2
Read only

rainer_hbenthal
Active Contributor
0 Likes
384

Are you using

cl_gui_cfw=>flush( ).

?

Read only

praveen_hannu
Contributor
0 Likes
384

Hi

Check your double click method implementation. How you are retrieving the value of the selected item.

sample code for hotspot click

CALL METHOD grid1->get_current_cell
    IMPORTING
      e_row     = w_row
      e_value   = w_value
      e_col     = w_col
      .