Hi All
I want to know which statement we give in the MODULE USER_COMMAND_0100. so as to provide the functionality of cancel and back to the icon.
eg.
MODULE USER_COMMAND_0100 INPUT.
CASE OK_CODE.
WHEN 'EXIT'.
LEAVE PROGRAM.
ENDMODULE.
so what to do if we want to have the functionality BACK and Cancel as well ??
MODULE USER_COMMAND_0100 INPUT.
CASE OK_CODE.
WHEN 'cancel'.
??
WHEN 'back'.
??
WHEN 'EXIT'.
LEAVE PROGRAM.
ENDMODULE.