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

in interactive reporting

Former Member
0 Likes
706

hi

in Interaactive reporting how to move from basis list to 17th list directly?

1 ACCEPTED SOLUTION
Read only

jaideeps
Product and Topic Expert
Product and Topic Expert
0 Likes
691

hi,

sy-lsind = 17.

ex:

if sy-lsind = 2.

sy-lsind = 17.

endif.

thanks

jaideep

*reward points if useful..

7 REPLIES 7
Read only

Former Member
0 Likes
691

Hi,

Just write.

sy-lsind = 17.

regards,

Ruchika

Read only

Shahid
Product and Topic Expert
Product and Topic Expert
0 Likes
691

if

ur code

then

u can use sy-lsind = 17.""

endif.

Read only

Former Member
0 Likes
691

hi,

First you need to generate the 17th list then only it is possible to move from 1st list to 17th list, you just assign the SY-LSIND to 17 then the 17th list will be genarated

Regards

Sudheer

Read only

Former Member
0 Likes
691

HI,

do like this.

at line selection.

case sy-lsind.

when 1.

sy-lsind = 17.

when 17.

write:/ 'this is from 17th secondary list'.

endcase.

<b>reward all helpful answers</b>

rgds,

bharat.

Read only

jaideeps
Product and Topic Expert
Product and Topic Expert
0 Likes
692

hi,

sy-lsind = 17.

ex:

if sy-lsind = 2.

sy-lsind = 17.

endif.

thanks

jaideep

*reward points if useful..

Read only

Former Member
0 Likes
691

Hi,

Try like this:

At Line selection.

if sy-lsind=0. "basic list

sy-lsind=17.

endif.

Regards,

Bhaskar