cancel
Showing results for 
Search instead for 
Did you mean: 

confirming multiple alerts

former_member206760
Active Contributor
0 Kudos

hi guys,

how to confirm multiple alerts at once. i do not want to delete the alerts

so i used SALRT_CONFIRM_ALERT FM but it required a GUID as input so i cannot do a mass confirmation of alerts

do i need to write a small abap program for that

Accepted Solutions (1)

Accepted Solutions (1)

former_member9864
Participant
0 Kudos

Hi,

please try the FM SALRT_CONFIRM.

BR,

Chen

former_member206760
Active Contributor
0 Kudos

but using this FM i can still not confirm multiple alerts

former_member9864
Participant
0 Kudos

FM SALRT_CONFIRM should be working, as long as SALRT_CONFIRM_ALERT works.

Use the table parameter IT_APPL_GUID and fill with multiple lines of the GUID. Look up the GUID in the table SALRT. It's in the column APPL_GUID.

The test function in SE37 is not supposed to used for massive data test. In this case, you can write a small piece of ABAP with select options and a loop around the FM SALRT_CONFIRM_ALERT.

Answers (2)

Answers (2)

former_member206760
Active Contributor
0 Kudos

thanks guys i think i will have to write a ABAP program

Former Member
0 Kudos

I am not aware of a Std FM availble to confirm multiple alerts.

You can always write a wrapper BAPI to accept the multiple Alert GUID's by using ALERT GUID as a table parm instead of Import Param. Loop thru the GUID's & confirm them using the Std FM.

-SM