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

list

Former Member
0 Likes
967

1) if i am in LIST 20 ...How to code to get back directly to 5 LIST.

1 ACCEPTED SOLUTION
Read only

former_member196280
Active Contributor
951

Use system field

IF SY-LSIND = 20.

sy-lsind = 5.

ENDIF.

Rgds,

SaiRam

7 REPLIES 7
Read only

Former Member
0 Likes
951

Hi,

You can give SY-LSIND = 5.

Thanks,

Naren

Read only

Former Member
0 Likes
951

hI,

in the event at line selection.

if sy-lsind = '20'

set the variable sy-lsind = 5.

endif.

sudheer.A

Read only

Former Member
0 Likes
951

hi,

If sy-lsind = 20.

sy-lsind = 5.

endif.

Reward points if it is helpful.

Regards,

Sangeetha.A

Read only

Former Member
0 Likes
951

hi,

U can use SY-LSIND

Read only

Former Member
0 Likes
951

case sy-lsind.

when '20'.

sy-lsind = 5.

endcase.

Read only

Former Member
0 Likes
951

hi.........

set the sy-lsind to 5.

Read only

former_member196280
Active Contributor
952

Use system field

IF SY-LSIND = 20.

sy-lsind = 5.

ENDIF.

Rgds,

SaiRam