2007 Mar 30 12:13 PM
Hi,
After calling Function Module BAPI_ALM_NOTIF_SAVE. How can I know that it successfully saved the created notification because I need to raise an error message if the save was not successfull.
2007 Mar 30 12:16 PM
Check if the table RETURN is empty after the call to the bapi. If it is, then it is succesful, and if not, then there was some error.
if not RETURN[]is initial.
Raise your error
endif.
Regards,
Ravi
2007 Mar 30 12:20 PM
When ever u r using BAPI, after execution of the BAPI check the RETRUN table values.
BAPI succesful execution also return the values to RETURN table, check the message type in BAPIRETURN table.