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

list

Former Member
0 Kudos
277

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

bpawanchand
Active Contributor
0 Kudos
255

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

Former Member
0 Kudos
255

hi,

do this way ...


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

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

Read only

Former Member
0 Kudos
255

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

Read only

bpawanchand
Active Contributor
0 Kudos
256

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