SAP IWOA_DELETE_NOTIFICATION_ARC Function Module for Notification archiving: Delete archived records
IWOA_DELETE_NOTIFICATION_ARC is a standard iwoa delete notification arc SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Notification archiving: Delete archived records processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for iwoa delete notification arc FM, simply by entering the name IWOA_DELETE_NOTIFICATION_ARC into the relevant SAP transaction such as SE37 or SE38.
Function Group: IWOA
Program Name: SAPLIWOA
Main Program: SAPLIWOA
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IWOA_DELETE_NOTIFICATION_ARC pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'IWOA_DELETE_NOTIFICATION_ARC'"Notification archiving: Delete archived records.
EXPORTING
* I_TEST = 'X' "
* I_ARCNAME = "Key for Archive File
I_QMTYP = "Notification Category
TABLES
* I_SELC = "
IMPORTING Parameters details for IWOA_DELETE_NOTIFICATION_ARC
I_TEST -
Data type: IWOA_CHAR1Default: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_ARCNAME - Key for Archive File
Data type: ADMI_FILES-ARCHIV_KEYOptional: Yes
Call by Reference: No ( called with pass by value option)
I_QMTYP - Notification Category
Data type: TQ80-QMTYPOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for IWOA_DELETE_NOTIFICATION_ARC
I_SELC -
Data type: IWOA_SELCOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for IWOA_DELETE_NOTIFICATION_ARC Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_i_selc | TYPE STANDARD TABLE OF IWOA_SELC, " | |||
| lv_i_test | TYPE IWOA_CHAR1, " 'X' | |||
| lv_i_arcname | TYPE ADMI_FILES-ARCHIV_KEY, " | |||
| lv_i_qmtyp | TYPE TQ80-QMTYP. " |
|   CALL FUNCTION 'IWOA_DELETE_NOTIFICATION_ARC' "Notification archiving: Delete archived records |
| EXPORTING | ||
| I_TEST | = lv_i_test | |
| I_ARCNAME | = lv_i_arcname | |
| I_QMTYP | = lv_i_qmtyp | |
| TABLES | ||
| I_SELC | = lt_i_selc | |
| . " IWOA_DELETE_NOTIFICATION_ARC | ||
ABAP code using 7.40 inline data declarations to call FM IWOA_DELETE_NOTIFICATION_ARC
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| DATA(ld_i_test) | = 'X'. | |||
| "SELECT single ARCHIV_KEY FROM ADMI_FILES INTO @DATA(ld_i_arcname). | ||||
| "SELECT single QMTYP FROM TQ80 INTO @DATA(ld_i_qmtyp). | ||||
Search for further information about these or an SAP related objects