SAP DNO_DB_NOTIF_N_SELECT Function Module for
DNO_DB_NOTIF_N_SELECT is a standard dno db notif n select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 dno db notif n select FM, simply by entering the name DNO_DB_NOTIF_N_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: DNO_DB
Program Name: SAPLDNO_DB
Main Program: SAPLDNO_DB
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DNO_DB_NOTIF_N_SELECT 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 'DNO_DB_NOTIF_N_SELECT'".
EXPORTING
* I_GUIDH = "GUID Notification
* I_DELETED = ' ' "
* I_TYPE_NOTE = "Note Type
* I_IDENT = "Note Identification
TABLES
T_DNOD_NOTIF_N = "Notes
EXCEPTIONS
NOTFOUND = 1 PARAMETER = 2
IMPORTING Parameters details for DNO_DB_NOTIF_N_SELECT
I_GUIDH - GUID Notification
Data type: DNOD_NOTIF_N-GUIDHOptional: Yes
Call by Reference: Yes
I_DELETED -
Data type: DNOD_NOTIF_N-DELETEDDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_TYPE_NOTE - Note Type
Data type: DNOD_NOTIF_N-TYPE_NOTEOptional: Yes
Call by Reference: Yes
I_IDENT - Note Identification
Data type: DNOD_NOTIF_N-IDENTOptional: Yes
Call by Reference: Yes
TABLES Parameters details for DNO_DB_NOTIF_N_SELECT
T_DNOD_NOTIF_N - Notes
Data type: DNOD_NOTIF_NOptional: No
Call by Reference: Yes
EXCEPTIONS details
NOTFOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
PARAMETER -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DNO_DB_NOTIF_N_SELECT 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_guidh | TYPE DNOD_NOTIF_N-GUIDH, " | |||
| lv_notfound | TYPE DNOD_NOTIF_N, " | |||
| lt_t_dnod_notif_n | TYPE STANDARD TABLE OF DNOD_NOTIF_N, " | |||
| lv_i_deleted | TYPE DNOD_NOTIF_N-DELETED, " SPACE | |||
| lv_parameter | TYPE DNOD_NOTIF_N, " | |||
| lv_i_type_note | TYPE DNOD_NOTIF_N-TYPE_NOTE, " | |||
| lv_i_ident | TYPE DNOD_NOTIF_N-IDENT. " |
|   CALL FUNCTION 'DNO_DB_NOTIF_N_SELECT' " |
| EXPORTING | ||
| I_GUIDH | = lv_i_guidh | |
| I_DELETED | = lv_i_deleted | |
| I_TYPE_NOTE | = lv_i_type_note | |
| I_IDENT | = lv_i_ident | |
| TABLES | ||
| T_DNOD_NOTIF_N | = lt_t_dnod_notif_n | |
| EXCEPTIONS | ||
| NOTFOUND = 1 | ||
| PARAMETER = 2 | ||
| . " DNO_DB_NOTIF_N_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM DNO_DB_NOTIF_N_SELECT
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 GUIDH FROM DNOD_NOTIF_N INTO @DATA(ld_i_guidh). | ||||
| "SELECT single DELETED FROM DNOD_NOTIF_N INTO @DATA(ld_i_deleted). | ||||
| DATA(ld_i_deleted) | = ' '. | |||
| "SELECT single TYPE_NOTE FROM DNOD_NOTIF_N INTO @DATA(ld_i_type_note). | ||||
| "SELECT single IDENT FROM DNOD_NOTIF_N INTO @DATA(ld_i_ident). | ||||
Search for further information about these or an SAP related objects