‎2007 May 27 5:57 AM
suppose in a interactive repot has 15 secondary lists. how can we go directly 10th screen to 5th screen?
‎2007 May 27 10:11 AM
Hi Sandya,
the system variable 'SY-LSIND' holds the value of the current list.
if sy-lsind = '10'.
sy-lsind = 5.
endif.
Regards,
Vidya,
‎2007 May 27 10:11 AM
Hi Sandya,
the system variable 'SY-LSIND' holds the value of the current list.
if sy-lsind = '10'.
sy-lsind = 5.
endif.
Regards,
Vidya,
‎2007 May 28 12:26 PM
hi sandhya,
In interactive report there are certains system defined fields...such as SY-LSIND, SY-LISEL and soon..
in that SY-LSIND holds the count of secondary list...
in case you want to go directly to 10th screen from screen 0 it is not possible..u can go go from bottom to top..then the code will be:
IF sy-lsind = 15.
sy-lsind = 5. " set sy-lsind equal to 5
ENDIF.
from that the screen will be getting incremented by 1.
hope this would solve ur problem,
please reward points in case usefull,
regards,
prashant