‎2009 Jul 22 1:56 PM
Hi,
I'm calling a few functions in a program.
After calling them, for example function "L_TO_CREATE_DN", I get a message in the status bar, in this case saying that a TO has been created successfully.
How can I suppress all status bar messages for all the functions that are being called in the program?
THX!
‎2009 Jul 22 2:02 PM
Hi
Try to use the default excption error_message
CALL FUNCTION
....................
EXCEPTIONS
error_message = 1
OTHERS = 2.
Max
‎2009 Jul 22 2:02 PM
Hi
Try to use the default excption error_message
CALL FUNCTION
....................
EXCEPTIONS
error_message = 1
OTHERS = 2.
Max
‎2009 Jul 22 2:04 PM
Hi,
Make a Copy of the FM L_TO_CREATE_DN.
Then comment the code that displays the status message in the FM.
It will work.
Regards,
Vimal.
‎2009 Jul 22 2:41 PM
apparently, I can solve it by putting in the exceptions:
error_message = 99.