Application Development 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: 

Interactive Report

Former Member
0 Kudos

Hi guru's,

I have a doubt in interactive report.

In Normal interactive report suppose if we are in 15 list and there is a situation where you have to come back to 11th list . Could anyone please tell me how to come back to specified list.

Thanks in advance

Regards

Vardhan

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

You can set the SY-LSIND field for that purpose.

In your example: set it to 11.


SY-LSIND = 11.

Regards,

Naimesh Patel

2 REPLIES 2

naimesh_patel
Active Contributor
0 Kudos

You can set the SY-LSIND field for that purpose.

In your example: set it to 11.


SY-LSIND = 11.

Regards,

Naimesh Patel

former_member705122
Active Contributor
0 Kudos

Hi,

For basic list 0.

At line selection.
   If sy-lsind = 15.
       sy-lsind = 10.      " Eleventh list
   endif.

Regards

Adil