2008 Jul 28 11:29 AM
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.
2008 Jul 28 2:00 PM
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
2008 Jul 28 11:32 AM
hi,
do this way ...
if sy-lsind = 16.
sy-lsind = 3.
endif.
Edited by: Santosh Kumar Patha on Jul 28, 2008 6:47 PM
2008 Jul 28 1:50 PM
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
2008 Jul 28 2:00 PM
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