‎2007 Jul 11 10:26 AM
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
‎2007 Jul 11 10:30 AM
Set the system field sy-lsind to 2 in any interactive event. It will bring you directly to the second list.
‎2007 Jul 11 10:30 AM
Set the system field sy-lsind to 2 in any interactive event. It will bring you directly to the second list.
‎2007 Jul 11 10:34 AM
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
‎2007 Jul 11 10:37 AM
hi
at line selection.
if sy-lsind = 7.
sy-lsind = 2.
endif.
reward if useful