Application Development and Automation 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: 
Read only

Problem in Back button

Former Member
0 Likes
499

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
Read only

Former Member
0 Likes
463

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.

Read only

Former Member
0 Likes
463

Thanks

Read only

Former Member
0 Likes
463

This message was moderated.