‎2007 May 27 6:27 AM
hi experts,
how to skip from 13th list to 4th list in interactive report?
thanks in advance.
‎2007 May 28 12:34 PM
hi venkat,
in interactive report there are system defined fields...for ex: SY_LISEL,
SY_LSIND..etc
now SY-LSIND holds the count of secondary list...
now u need to put a check...as follow:
IF sy-lsind = 10.
sy-lsind = 5. " set sy-lsind equal to 5
ENDIF.
‎2007 May 27 9:07 AM
‎2007 May 28 12:34 PM
hi venkat,
in interactive report there are system defined fields...for ex: SY_LISEL,
SY_LSIND..etc
now SY-LSIND holds the count of secondary list...
now u need to put a check...as follow:
IF sy-lsind = 10.
sy-lsind = 5. " set sy-lsind equal to 5
ENDIF.
‎2007 May 29 11:09 AM
hi,
using the system field <b>SY-LSIND</b> is only the way to go from one list to another in interactive reporting.
Thanks,
Madhukar
‎2007 May 29 11:58 AM
hi
good
in your if loop use sy-lsind to skip to the screen you want,.
thanks
mrutyun^
‎2007 May 29 1:42 PM
case sy-lsind .
when '1'.
......
when.'2'.
.....
when '3'.
......
when.'13'.
sy-lsind = 4 .
.....
endcase .girish
‎2007 May 30 12:00 AM
use sy-lsind. However also use this sy-lsind in the PAI of the screen if you want to move from 13th screen to 4th screen after performing anything on 13th screen.