I am working on a dialog program. On the screen 100 i have 6 push buttons and a tables.
if the user click one push new screen 200 should be displayed...how can i do that...
module user_command_0100 input. case sy-ucomm. when 'N'. message i029(ys) with text-001. call screen 200. when 'S'. message i029(ys) with text-002. when 'C'. message i029(ys) with text-003. when 'A'. message i029(ys) with text-004. when 'T'. message i029(ys) with text-005. when 'D'. message i029(ys) with text-006. endcase. endmodule. " USER_COMMAND_0100 INPUT
Here is the code what is present.. and it is giving short dump.