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

CL_SALV_TABLE and method double_click

former_member215107
Active Participant
0 Likes
521

Dear All,

I created an ALV object with method CL_SALV_TABLE=>FACTORY.

I have implemented event double__click like this:

class lcl_handle_events implementation.

method on_double_click.

data: c_row(4) type c.

c_row = row.

read table ILUX into wa_line_lux index c_row.

All's working.

The problem appears when i SORT (with specific column) the alv. If i double_click, the line don't match with the list.

Have you an idea to avoid this problem ?

Thanks a lot.

Rodolphe.

Dear All,

I created an ALV object with method CL_SALV_TABLE=>FACTORY.

I have implemented event double__click like this:

class lcl_handle_events implementation.

method on_double_click.

data: c_row(4) type c.

c_row = row.

read table ILUX into wa_line_lux index c_row.

All's working.

The problem appears when i SORT (with specific column) the alv. If i double_click, the line don't match with the list.

Have you an idea to avoid this problem ?

Thanks a lot.

Rodolphe.

1 REPLY 1
Read only

Clemenss
Active Contributor
0 Likes
393

Hi Rodolphe,

you MUST NEVER modify or sort the table displayed without RFEFRESHing the display.

Regards,

Clemens