Skip to Content
0
Former Member
May 12, 2008 at 09:01 AM

Maybe this is a bug

15 Views

I found that the double click would return the incorrect line number , is this a bug?

Anybody can explain this would be appreciated in advance .

*----


Code start

REPORT Z_TEST_FOR_CYAN2.

start-OF-SELECTION.

Do 5 TIMES.

PERFORM output_line using sy-index.

enddo.

AT LINE-SELECTION.

write: '2nd list', sy-lsind.

form output_line USING p_index.

WRITE : / 'basic list',

p_index.

endform.

*----


Code end