‎2006 Nov 08 2:34 PM
I have one baisc list and 5 detailed list in the report we want to go back frm list 5 to list 2 how we will do.
Thanks in advance.
‎2006 Nov 08 2:55 PM
hi Nagini,
i assume that you need to go back to the second list when you press the back button in list 5...right?
AT USER-COMMAND.
case sy-ucomm.
when 'BACK'.
if sy-lsind = 5.
sy-lsind = 2.
endif.
endcase.
hope this helps.
Sajan.
‎2006 Nov 08 2:37 PM
use sy-lsind which stores the list number.
create a button and u can navigate to different lists backwards.
santhosh
‎2006 Nov 08 2:55 PM
hi Nagini,
i assume that you need to go back to the second list when you press the back button in list 5...right?
AT USER-COMMAND.
case sy-ucomm.
when 'BACK'.
if sy-lsind = 5.
sy-lsind = 2.
endif.
endcase.
hope this helps.
Sajan.
‎2006 Nov 08 2:59 PM