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

Function Module u0091BAPI_ALM_NOTIF_SAVEu0092

Former Member
0 Likes
448

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.

2 REPLIES 2
Read only

Former Member
0 Likes
386

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

Read only

alex_m
Active Contributor
0 Likes
386

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.