‎2008 Sep 25 11:02 PM
Hi Gurus,
I am using a standard function module in my module pool program(RF program). While executing standard function module, it is giving me error message due to some validations. I want to capture this error message and continue the process.....but because of this error message whole program is stopped. Please suggest any way to capture this message from standard function module and continue processing
Thanks
Sharat
‎2008 Sep 25 11:09 PM
Hi,
Try this..
CALL FUNCTION 'xxxxxxxxxx'
EXPORTING
.....
IMPORTING
.......
EXCEPTIONS
error_message = 1.Using the above..You can catch the error messages raised inside a function module..
Thanks
Naren
‎2008 Sep 25 11:09 PM
Hi,
Try this..
CALL FUNCTION 'xxxxxxxxxx'
EXPORTING
.....
IMPORTING
.......
EXCEPTIONS
error_message = 1.Using the above..You can catch the error messages raised inside a function module..
Thanks
Naren
‎2008 Sep 25 11:27 PM
Hi Naren,
Thanks so much. That was very easy. Kuool.
Cheers
Sharat.