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 reports

Former Member
0 Likes
613

hi experts,

how to skip from 13th list to 4th list in interactive report?

thanks in advance.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
595

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.

6 REPLIES 6
Read only

former_member225631
Active Contributor
0 Likes
595

If sy-lsind eq '13'.

sy-lsind = '4'.

endif.

Read only

Former Member
0 Likes
596

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.

Read only

Former Member
0 Likes
595

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

Read only

Former Member
0 Likes
595

hi

good

in your if loop use sy-lsind to skip to the screen you want,.

thanks

mrutyun^

Read only

Former Member
0 Likes
595

case  sy-lsind .
when '1'.
......
when.'2'.
.....
when '3'.
......
when.'13'.
sy-lsind  = 4 .
.....
endcase .

girish

Read only

Former Member
0 Likes
595

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.