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
1,112

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
1,096

Use system field

IF SY-LSIND = 20.

sy-lsind = 5.

ENDIF.

Rgds,

SaiRam

case sy-lsind.

when '20'.

sy-lsind = 5.

endcase.

7 REPLIES 7
Read only

Former Member
0 Likes
1,096

Hi,

You can give SY-LSIND = 5.

Thanks,

Naren

Read only

Former Member
0 Likes
1,096

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
1,096

hi,

If sy-lsind = 20.

sy-lsind = 5.

endif.

Reward points if it is helpful.

Regards,

Sangeetha.A

Read only

Former Member
0 Likes
1,096

hi,

U can use SY-LSIND

Read only

Former Member
0 Likes
1,096

case sy-lsind.

when '20'.

sy-lsind = 5.

endcase.

Read only

Former Member
0 Likes
1,096

hi.........

set the sy-lsind to 5.

Read only

former_member196280
Active Contributor
1,097

Use system field

IF SY-LSIND = 20.

sy-lsind = 5.

ENDIF.

Rgds,

SaiRam