‎2007 Mar 30 9:01 PM
Sorry if this has already been answered, but I couldn't find it....
I have a report program that has a drill down (sy-lsind=1) of multiple records. When I double click a line (going to sy-lsind=2) I want the program to run a submit and then automatically return to sy-lsind=1. Is this possible?
Thanks in advance.
‎2007 Mar 30 9:14 PM
try this..
case sy-lsind.
when 2.
submit <report> and return.
sy-lsind = 1.
when others.
endcase.
~Suresh
‎2007 Mar 30 9:14 PM
try this..
case sy-lsind.
when 2.
submit <report> and return.
sy-lsind = 1.
when others.
endcase.
~Suresh
‎2007 Mar 30 9:19 PM
Hi,
Please set the sy-lsind = 1 after the submit statement.
Regards,
Ferry Lianto
‎2007 Apr 02 3:25 PM
Found it, I did a AND RETURN, but I had to add the following:
SET USER-COMMAND 'BACK'.
Thanks for the help!