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

Former Member
0 Likes
1,122

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

Former Member
0 Likes
1,067

make sy-lsind = 7

at-lineselection.

sy-lsind = 7.

Read only

Former Member
0 Likes
1,067

Hi,

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

Regds,

Murali.

Read only

GauthamV
Active Contributor
0 Likes
1,067

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.

Read only

Former Member
0 Likes
1,067

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.

Read only

0 Likes
1,067

plz give me a sample code...

Read only

Former Member
0 Likes
1,067

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

Read only

0 Likes
1,067

plz give me a sample code...

thanks in advance

Read only

0 Likes
1,067


AT LINE-SELECTION.

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

Read only

Former Member
0 Likes
1,067

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