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 Report

Former Member
0 Likes
441

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
Read only

naimesh_patel
Active Contributor
0 Likes
421

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
Read only

naimesh_patel
Active Contributor
0 Likes
422

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

In your example: set it to 11.


SY-LSIND = 11.

Regards,

Naimesh Patel

Read only

Former Member
0 Likes
421

Hi,

For basic list 0.

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

Regards

Adil