Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Problem in Back button

Former Member
0 Kudos

Hi All,

Thanks to all for solution.

I have a required field in module pool programming. When i press Back push button message displays "Fill in all required entry fields".

I want to go previous screen without fill any field.

Is it possible. plz help me

3 REPLIES 3

Former Member
0 Kudos

Hi,

Give the function type for the button as 'E' and write your code in the MODULE <module_name> AT EXIT-COMMAND.


MODULE exit.
  if sy-ucomm eq 'F_BACK'.
    LEAVE PROGRAM.
  endif.
ENDMODULE.

Former Member
0 Kudos

Thanks

Former Member
0 Kudos

This message was moderated.