2007 Feb 27 11:57 AM
hi
in an interactive report, after going to 5th list, can you come back to 2nd list? how?
Thanks
Rama
2007 Feb 27 11:58 AM
2007 Feb 27 12:01 PM
Hi,
At user-command.
case sy-ucomm.
when '2'.
sy-lsind = 2.
endcase.
The command 2 can be passed from the command line.
Hope this will help u.
Regards,
U. Uma
2007 Feb 27 12:04 PM
hi,
At user-command.
if sy-lsind = 5.
sy-lsind = 1.
endif.
regards,
pankaj singh.
2007 Feb 27 12:05 PM
edit ravi's answer ---
give sy-lsind = 1 instead of 2 to goto the 2nd list
2007 Feb 27 12:05 PM
Rama,
u can have menu options to go to required list number.
under those respective ok-code s, u can handle, to which list u should go.
Regards,
Sujatha.
2007 Feb 27 12:11 PM
AT USER-COMMAND.
CASE SY-UCOMM.
WHEN 'BACK'.
IF SY-LSIND = 5.
SY-LSIND = 1.
ENDIF.
ENDCASE.
YOU CAN ASSIGN THE VALUE FOR SY-LSIND .
<b>DEMO_LIST_INTERACTIVE_3</b> Refer this
reward if this helsp.
Message was edited by:
Judith Jessie Selvi