‎2006 Jun 27 2:14 AM
Hi,
I think I have found the function code and would want to know some simple code to detect the status of this function code and process some simple ABAP statements according to the value of the function code.
Thanks,
RT
‎2006 Jun 27 3:35 AM
hi,
Use the foll code in your form..
module USER_COMMAND_0100 input.
CASE <b>SY-UCOMM.</b>
WHEN 'SAVE'.
***
***
WHEN 'EXIT' .
LEAVE SCREEN 0.
ENDCASE.
endmodule.
‎2006 Jun 27 2:19 AM
‎2006 Jun 27 3:04 AM
Hi Rob,
<b>1</b>.
Use system variable SY-UCOMM.
<b>Thanks,
Venkat.O</b>
‎2006 Jun 27 3:35 AM
hi,
Use the foll code in your form..
module USER_COMMAND_0100 input.
CASE <b>SY-UCOMM.</b>
WHEN 'SAVE'.
***
***
WHEN 'EXIT' .
LEAVE SCREEN 0.
ENDCASE.
endmodule.