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