SAP IQS0_MODIFY_NOTIFICATION Function Module for NOTRANSL: Meldung Ändern von Meldungskopf, Positionen, Ursachen, Maßnahme
IQS0_MODIFY_NOTIFICATION is a standard iqs0 modify notification SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Meldung Ändern von Meldungskopf, Positionen, Ursachen, Maßnahme 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 iqs0 modify notification FM, simply by entering the name IQS0_MODIFY_NOTIFICATION into the relevant SAP transaction such as SE37 or SE38.
Function Group: IQS0
Program Name: SAPLIQS0
Main Program: SAPLIQS0
Appliation area: I
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function IQS0_MODIFY_NOTIFICATION 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 'IQS0_MODIFY_NOTIFICATION'"NOTRANSL: Meldung Ändern von Meldungskopf, Positionen, Ursachen, Maßnahme.
EXPORTING
I_QMNUM = "Notification Number
* I_RIQS5_NEW = "
* I_RESET = 'X' "Reset
* P_HEAD_NOCHANGE = "Checkbox
IMPORTING
E_VIQMEL = "Notification Header
TABLES
* I_VIQMFE = "Items to Be Deleted
* I_VIQMUR = "
* I_VIQMSM = "
* I_VIQMMA = "
EXCEPTIONS
SHOW_MESSAGES = 1
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLIQS0_001 Customer Exit 'Check Status Change for Permission' for PM/CS Notifications
EXIT_SAPLIQS0_002 User Exit for Influencing the F4 Help for Catalogs
EXIT_SAPLIQS0_003 Function Code '+US3/4' in Menu 'Goto/Task' in Notification Processing
EXIT_SAPLIQS0_004 Function Code '+US5/6' in Menu 'Goto/Activities' in Notif. Processing
EXIT_SAPLIQS0_005 Determining Processing Deadlines According to Priority
EXIT_SAPLIQS0_006 Default Partner When Adding A Notification
EXIT_SAPLIQS0_007 Determination of BOM application for BOM Explosion
EXIT_SAPLIQS0_008 Supply Function Codes with Text/ Deactivate Codes: 'Goto/Task'
EXIT_SAPLIQS0_009 Supply Function Codes/ Deactivate Codes: 'Goto/Activity'
EXIT_SAPLIQS0_010 Function Codes in Menu 'Goto/Notification' in Notification Processing
EXIT_SAPLIQS0_011 Supply Function Codes with Text/ Deactivate Codes: 'Goto/Notification'
EXIT_SAPLIQS0_012 Function Codes in 'Goto/Cause' Menu in Notification Processing
EXIT_SAPLIQS0_013 Supply Function Codes with Text/ Deactivate Codes: 'Goto/Cause'
EXIT_SAPLIQS0_014 Function Codes in Menu 'Goto/Item' in Notification Processing
EXIT_SAPLIQS0_015 Supply Function Codes with Text/Deactivate Codes: 'Goto/Item'
EXIT_SAPLIQS0_016 Function Module for Deactivating Notification Function Codes
EXIT_SAPLIQS0_017 Default Values when Adding PM/CS Notification
EXIT_SAPLIQS0_018 Check Whether a Change of Notification Type is Allowed
EXIT_SAPLIQS0_019 Influence Data Transfer for New Notification Type
EXIT_SAPLIQS0_020 User Exit 'Check Authorization for Status Change'
IMPORTING Parameters details for IQS0_MODIFY_NOTIFICATION
I_QMNUM - Notification Number
Data type: VIQMEL-QMNUMOptional: No
Call by Reference: No ( called with pass by value option)
I_RIQS5_NEW -
Data type: RIQS5Optional: Yes
Call by Reference: No ( called with pass by value option)
I_RESET - Reset
Data type: T365-AKTYPDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
P_HEAD_NOCHANGE - Checkbox
Data type: RIWO00-SELECOptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for IQS0_MODIFY_NOTIFICATION
E_VIQMEL - Notification Header
Data type: VIQMELOptional: No
Call by Reference: Yes
TABLES Parameters details for IQS0_MODIFY_NOTIFICATION
I_VIQMFE - Items to Be Deleted
Data type: RFC_VIQMFEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VIQMUR -
Data type: RFC_VIQMUROptional: Yes
Call by Reference: No ( called with pass by value option)
I_VIQMSM -
Data type: RFC_VIQMSMOptional: Yes
Call by Reference: No ( called with pass by value option)
I_VIQMMA -
Data type: RFC_VIQMMAOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
SHOW_MESSAGES -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for IQS0_MODIFY_NOTIFICATION 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: | ||||
| lv_i_qmnum | TYPE VIQMEL-QMNUM, " | |||
| lv_e_viqmel | TYPE VIQMEL, " | |||
| lt_i_viqmfe | TYPE STANDARD TABLE OF RFC_VIQMFE, " | |||
| lv_show_messages | TYPE RFC_VIQMFE, " | |||
| lt_i_viqmur | TYPE STANDARD TABLE OF RFC_VIQMUR, " | |||
| lv_i_riqs5_new | TYPE RIQS5, " | |||
| lv_i_reset | TYPE T365-AKTYP, " 'X' | |||
| lt_i_viqmsm | TYPE STANDARD TABLE OF RFC_VIQMSM, " | |||
| lt_i_viqmma | TYPE STANDARD TABLE OF RFC_VIQMMA, " | |||
| lv_p_head_nochange | TYPE RIWO00-SELEC. " |
|   CALL FUNCTION 'IQS0_MODIFY_NOTIFICATION' "NOTRANSL: Meldung Ändern von Meldungskopf, Positionen, Ursachen, Maßnahme |
| EXPORTING | ||
| I_QMNUM | = lv_i_qmnum | |
| I_RIQS5_NEW | = lv_i_riqs5_new | |
| I_RESET | = lv_i_reset | |
| P_HEAD_NOCHANGE | = lv_p_head_nochange | |
| IMPORTING | ||
| E_VIQMEL | = lv_e_viqmel | |
| TABLES | ||
| I_VIQMFE | = lt_i_viqmfe | |
| I_VIQMUR | = lt_i_viqmur | |
| I_VIQMSM | = lt_i_viqmsm | |
| I_VIQMMA | = lt_i_viqmma | |
| EXCEPTIONS | ||
| SHOW_MESSAGES = 1 | ||
| . " IQS0_MODIFY_NOTIFICATION | ||
ABAP code using 7.40 inline data declarations to call FM IQS0_MODIFY_NOTIFICATION
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.| "SELECT single QMNUM FROM VIQMEL INTO @DATA(ld_i_qmnum). | ||||
| "SELECT single AKTYP FROM T365 INTO @DATA(ld_i_reset). | ||||
| DATA(ld_i_reset) | = 'X'. | |||
| "SELECT single SELEC FROM RIWO00 INTO @DATA(ld_p_head_nochange). | ||||
Search for further information about these or an SAP related objects