Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

interactive repotrt

Former Member
0 Likes
371

suppose in a interactive repot has 15 secondary lists. how can we go directly 10th screen to 5th screen?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
351

Hi Sandya,

the system variable 'SY-LSIND' holds the value of the current list.

if sy-lsind = '10'.

sy-lsind = 5.

endif.

Regards,

Vidya,

2 REPLIES 2
Read only

Former Member
0 Likes
352

Hi Sandya,

the system variable 'SY-LSIND' holds the value of the current list.

if sy-lsind = '10'.

sy-lsind = 5.

endif.

Regards,

Vidya,

Read only

Former Member
0 Likes
351

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