SAP ISU_NOTIF_AUTHORITY_CHECK Function Module for INTERNAL: Authorization Check for IS-U Notifications
ISU_NOTIF_AUTHORITY_CHECK is a standard isu notif authority check SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for INTERNAL: Authorization Check for IS-U Notifications 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 isu notif authority check FM, simply by entering the name ISU_NOTIF_AUTHORITY_CHECK into the relevant SAP transaction such as SE37 or SE38.
Function Group: EEWM_SV_NTF
Program Name: SAPLEEWM_SV_NTF
Main Program: SAPLEEWM_SV_NTF
Appliation area: E
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISU_NOTIF_AUTHORITY_CHECK 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 'ISU_NOTIF_AUTHORITY_CHECK'"INTERNAL: Authorization Check for IS-U Notifications.
EXPORTING
* MODE = '02' "
X_QMART = "Message
EXCEPTIONS
NO_PERMISSION_S_TCODE = 1 NO_PERMISSION_I_TCODE = 2 NO_PERMISSION_IQMEL = 3 USERDATA_ERROR = 4 NO_PROFILE = 5 NO_OBJECT = 6 SYSTEM_ERROR = 7
IMPORTING Parameters details for ISU_NOTIF_AUTHORITY_CHECK
MODE -
Data type: EEWM_HELP-MODUSDefault: '02'
Optional: Yes
Call by Reference: No ( called with pass by value option)
X_QMART - Message
Data type: VIQMEL-QMARTOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_PERMISSION_S_TCODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_PERMISSION_I_TCODE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_PERMISSION_IQMEL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
USERDATA_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_PROFILE - No Profile Is Entered in the User Master Record
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_OBJECT -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SYSTEM_ERROR - Other Errors
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISU_NOTIF_AUTHORITY_CHECK 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_mode | TYPE EEWM_HELP-MODUS, " '02' | |||
| lv_no_permission_s_tcode | TYPE EEWM_HELP, " | |||
| lv_x_qmart | TYPE VIQMEL-QMART, " | |||
| lv_no_permission_i_tcode | TYPE VIQMEL, " | |||
| lv_no_permission_iqmel | TYPE VIQMEL, " | |||
| lv_userdata_error | TYPE VIQMEL, " | |||
| lv_no_profile | TYPE VIQMEL, " | |||
| lv_no_object | TYPE VIQMEL, " | |||
| lv_system_error | TYPE VIQMEL. " |
|   CALL FUNCTION 'ISU_NOTIF_AUTHORITY_CHECK' "INTERNAL: Authorization Check for IS-U Notifications |
| EXPORTING | ||
| MODE | = lv_mode | |
| X_QMART | = lv_x_qmart | |
| EXCEPTIONS | ||
| NO_PERMISSION_S_TCODE = 1 | ||
| NO_PERMISSION_I_TCODE = 2 | ||
| NO_PERMISSION_IQMEL = 3 | ||
| USERDATA_ERROR = 4 | ||
| NO_PROFILE = 5 | ||
| NO_OBJECT = 6 | ||
| SYSTEM_ERROR = 7 | ||
| . " ISU_NOTIF_AUTHORITY_CHECK | ||
ABAP code using 7.40 inline data declarations to call FM ISU_NOTIF_AUTHORITY_CHECK
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 MODUS FROM EEWM_HELP INTO @DATA(ld_mode). | ||||
| DATA(ld_mode) | = '02'. | |||
| "SELECT single QMART FROM VIQMEL INTO @DATA(ld_x_qmart). | ||||
Search for further information about these or an SAP related objects