Hi Friends,
The standard toolbar items are not working in my screen painter program. The code I have written is as follows.
-
PROCESS AFTER INPUT.
MODULE USER_COMMAND_0100.
&----
*& Module USER_COMMAND_0100 INPUT
&----
text
----
MODULE USER_COMMAND_0100 INPUT.
LOOP AT SCREEN.
IF SY-UCOMM EQ 'EXIT'(001).
LEAVE PROGRAM.
ENDIF.
ENDLOOP.
ENDMODULE. " USER_COMMAND_0100 INPUT
-
When I execute the program and click on the Exit icon, the program is not functioning.
Kindly guide me the solution.
TIA.
Regards,
Mark K