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

interactive list

Former Member
0 Likes
385

Hi,

My question is if i am on 7 th secondary list and i want to come back to 2nd secondary list what should i do?

do i have to press back button to reach the desired list or is there any event through which i can achieve that.

Regards,

Quavi

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
367

Set the system field sy-lsind to 2 in any interactive event. It will bring you directly to the second list.

3 REPLIES 3
Read only

Former Member
0 Likes
368

Set the system field sy-lsind to 2 in any interactive event. It will bring you directly to the second list.

Read only

Former Member
0 Likes
367

write code in

at user-command

case sy-ucomm.

when 'BAC' "suppose you have given fn code BAC for back button in gui status

if sy-lsind = 7.

sy-lsind = 2.

endif.

when...

endcase.

regards

shiba dutta

Read only

Former Member
0 Likes
367

hi

at line selection.

if sy-lsind = 7.

sy-lsind = 2.

endif.

reward if useful