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
969

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
953

Use system field

IF SY-LSIND = 20.

sy-lsind = 5.

ENDIF.

Rgds,

SaiRam

7 REPLIES 7
Read only

Former Member
0 Likes
953

Hi,

You can give SY-LSIND = 5.

Thanks,

Naren

Read only

Former Member
0 Likes
953

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
953

hi,

If sy-lsind = 20.

sy-lsind = 5.

endif.

Reward points if it is helpful.

Regards,

Sangeetha.A

Read only

Former Member
0 Likes
953

hi,

U can use SY-LSIND

Read only

Former Member
0 Likes
953

case sy-lsind.

when '20'.

sy-lsind = 5.

endcase.

Read only

Former Member
0 Likes
953

hi.........

set the sy-lsind to 5.

Read only

former_member196280
Active Contributor
954

Use system field

IF SY-LSIND = 20.

sy-lsind = 5.

ENDIF.

Rgds,

SaiRam