‎2005 Jul 12 10:33 PM
Abap Experts,
I have function module. The selection conditions fails sometimes. Even if it fails I want to carry out the remaining part of the function module.
Wondering how to create a exception on a selection condition.
Any suggestions appreciated.
Many thanks in advance.
BWer
‎2005 Jul 13 4:11 AM
Don't clear your problem.
Your function module is created by you?
if so, you can check the select result of select, like this:
SELECT XXXX
FROM XXX
WHERE ....
IF SY-SUBRC = 0.
SELECT SUCCESS
ELSE.
SELECT FAILED
ENDIF.
Does it what you want? if not, please explain more details about your problem.
‎2005 Jul 13 4:14 AM
hi,
your problem description is not clear, more detail, please
Regards,
Andrej.