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: 

list

Former Member
0 Kudos
89

Hi,

while displaying lists through interactive reporting.Suppose if I were at 16th list and suppose If I want to see the 3rd list or someother list suddenly.what is the procedure for that.

1 ACCEPTED SOLUTION

bpawanchand
Active Contributor
0 Kudos
67

Hi

You have a SYSTEM FIELD called SY-LSIND where you can assign the list index number so suppose if you are in 16th list index then in that level you write a code

IF SY-LSIND = 16.

SY-LSIND = 3.

ENDIF.

Regards

Pavan

3 REPLIES 3

Former Member
0 Kudos
67

hi,

do this way ...


if sy-lsind = 16.
 sy-lsind = 3.
endif.

Edited by: Santosh Kumar Patha on Jul 28, 2008 6:47 PM

Former Member
0 Kudos
67

Hi

Set the sy-lsind to the list index to which you would like to go...

There is only backward navigation not forward

eg

if sy-lsind = 16.

sy-lsind = 2.

endif

regards

padma

bpawanchand
Active Contributor
0 Kudos
68

Hi

You have a SYSTEM FIELD called SY-LSIND where you can assign the list index number so suppose if you are in 16th list index then in that level you write a code

IF SY-LSIND = 16.

SY-LSIND = 3.

ENDIF.

Regards

Pavan