Hi all,
I have created a Notification using the following :
CALL FUNCTION 'BAPI_ALM_NOTIF_CREATE'
EXPORTING
notif_type = 'M4'
notifheader = notifheader
IMPORTING
notifheader_export = notifheader_export
TABLES
notitem = notitem
longtexts = longtexts
return = return.
CALL FUNCTION 'BAPI_ALM_NOTIF_SAVE'
EXPORTING
number = notifheader_export-notif_no
IMPORTING
notifheader = notifheader_export_2
TABLES
return = return.
CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
IMPORTING
return = return.
I can check the notification created by IW23 transaction without problems (notifheader_export_2 = QMEL-QMNUM).
Now I need to delete this notification.
I'm trying with BAPI_ALM_NOTIF_DATA_DELETE but this bapi ends with an error : 'E IM 407 No changes made'.
Can any one please let me know the procedure to delete a notification?
We are current working on SAP R/3 Enterprise.
Thanks in Advance,
Lilian.