‎2006 Dec 19 10:12 AM
In interactive report,if we want to come back to basic list directly from the 4 th or 15 th secondary list...what we have to do?
‎2006 Dec 19 10:14 AM
use <b>sy-lsind.[/b
write: / sy-lsind.
start-of-selection.
SET PF-STATUS 'TEST1'.
AT USER-COMMAND.
If sy-ucomm = 'DISPLAY'.
write: / sy-lsind.
endif.
IF SY-UCOMM = 'EXIT'.
if sy-lsind > 1.
SY-LSIND = 0.
endif.
endif.
‎2006 Dec 19 10:14 AM
‎2006 Dec 19 10:14 AM
use <b>sy-lsind.[/b
write: / sy-lsind.
start-of-selection.
SET PF-STATUS 'TEST1'.
AT USER-COMMAND.
If sy-ucomm = 'DISPLAY'.
write: / sy-lsind.
endif.
IF SY-UCOMM = 'EXIT'.
if sy-lsind > 1.
SY-LSIND = 0.
endif.
endif.