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

hi all

Former Member
0 Likes
662

i am developing an interactive report , i have one basic and 10 interactive lists . i am executing each list , now I am in 10 th list ,i want to go to 5 th list directly from the 10 th list ... how to code for this...

n one more i want to go directly from 2nd list to 7 list how can i do ....

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
638

Hello,

DOI like this.

AT LINE-SELECTION.

IF SY-LSIND = 10.

SY-LSIND = 5.

ENDIF.

IF SY-LSIND = 2.

SY-LSIND = 7.

ENDIF.

If useful reward.

Vasanth

4 REPLIES 4
Read only

Former Member
0 Likes
638

Hello,

Set sy-lsind = sy-lsind - 5.

i.e. Reduce the list index by 5

Manoj

Read only

Former Member
0 Likes
639

Hello,

DOI like this.

AT LINE-SELECTION.

IF SY-LSIND = 10.

SY-LSIND = 5.

ENDIF.

IF SY-LSIND = 2.

SY-LSIND = 7.

ENDIF.

If useful reward.

Vasanth

Read only

0 Likes
638

When you handle your own BACK Button in the at user-command section, your should reset your sy-lsind to less than its present value

sy-lsind = sy-lsind - 5.

Read only

Former Member
0 Likes
638

Hi ,

At the basic list the value of sy-lsind is 0 , so if you want to go to a perticular level just assign that value to sy-lisid.

I am not sure whether you can go from level 2 to level 7 directly , you first need to good to level 7 or above come back and then you can go else i dont think direclly it is possible

Regards

Arun

Message was edited by:

Arun R