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 basic list concept

Former Member
0 Kudos

Suppose in a basic list i have 7 parallel detail list.i am in basic list is there any way to go directly to 7 th detail list from basiclist or from 1st detail list to 7 th detail list vice-versa.

plz tell me..i am waiting.. for reply

thanx

arya

9 REPLIES 9

Former Member
0 Kudos

make sy-lsind = 7

at-lineselection.

sy-lsind = 7.

Former Member
0 Kudos

Hi,

set sy-lsind (list index value ) value to 7..

Regds,

Murali.

GauthamV
Active Contributor
0 Kudos

hi,

try like this.

first define data for all 7 lists.

then use this logic.

if sy-lsind = 1.

sy-lsind = 7.

endif.

reward points if hlpful.

Former Member
0 Kudos

Yes , The system variable sy-lsind saves the list index . Make it the level you want like if you want the third , make is as 3 likewise.

0 Kudos

plz give me a sample code...

Former Member
0 Kudos

hi

you can do this in simple way by creating an PF-STATUS and in that Create Button to move from 1st to 7th list or if u want from 1st to 4 th then develop Another button for it and vice versa

REWARD POINTS

Cheers

Snehi

0 Kudos

plz give me a sample code...

thanks in advance

0 Kudos


AT LINE-SELECTION.

IF sy-lsind = 1.
sy-lsind = 7.
ENDIF.

Former Member
0 Kudos

hi,

I don't think we can go forward from sy-lsind 1 to sy-lsind 7.

yes can move back directly from sy-lsind 7 to sy-lsind 2.

if sy-lsind = 7.

sy-lsind = 2.

endif.

If i am wrong, correct me.

thanks