SAP DNO_OW_READ_HEADER_DATA Function Module for
DNO_OW_READ_HEADER_DATA is a standard dno ow read header data 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 ow read header data FM, simply by entering the name DNO_OW_READ_HEADER_DATA into the relevant SAP transaction such as SE37 or SE38.
Function Group: DNO_OW
Program Name: SAPLDNO_OW
Main Program: SAPLDNO_OW
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DNO_OW_READ_HEADER_DATA 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_OW_READ_HEADER_DATA'".
EXPORTING
I_GUIDH = "
* I_LANGUAGE = SY-LANGU "SAP R/3 System, Current Language
IMPORTING
E_NOTIF_FOUND = "
E_HEADER_DATA = "
E_STATUS = "Single-Character Indicator
E_REPORTER = "Reported by
E_OBJNR = "
TABLES
TE_RETURN = "Return Parameters
* TE_STATUS = "
IMPORTING Parameters details for DNO_OW_READ_HEADER_DATA
I_GUIDH -
Data type: DNOT_GUIDHOptional: No
Call by Reference: No ( called with pass by value option)
I_LANGUAGE - SAP R/3 System, Current Language
Data type: SY-LANGUDefault: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for DNO_OW_READ_HEADER_DATA
E_NOTIF_FOUND -
Data type: DNOT_FLAGOptional: No
Call by Reference: No ( called with pass by value option)
E_HEADER_DATA -
Data type: RDNO_UISUB_2000Optional: No
Call by Reference: No ( called with pass by value option)
E_STATUS - Single-Character Indicator
Data type: DNOT_STATUSOptional: No
Call by Reference: No ( called with pass by value option)
E_REPORTER - Reported by
Data type: DNOT_REPORTEROptional: No
Call by Reference: No ( called with pass by value option)
E_OBJNR -
Data type: DNOT_OBJNROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for DNO_OW_READ_HEADER_DATA
TE_RETURN - Return Parameters
Data type: BAPIRET1Optional: No
Call by Reference: Yes
TE_STATUS -
Data type: JSTATOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for DNO_OW_READ_HEADER_DATA 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 DNOT_GUIDH, " | |||
| lt_te_return | TYPE STANDARD TABLE OF BAPIRET1, " | |||
| lv_e_notif_found | TYPE DNOT_FLAG, " | |||
| lt_te_status | TYPE STANDARD TABLE OF JSTAT, " | |||
| lv_i_language | TYPE SY-LANGU, " SY-LANGU | |||
| lv_e_header_data | TYPE RDNO_UISUB_2000, " | |||
| lv_e_status | TYPE DNOT_STATUS, " | |||
| lv_e_reporter | TYPE DNOT_REPORTER, " | |||
| lv_e_objnr | TYPE DNOT_OBJNR. " |
|   CALL FUNCTION 'DNO_OW_READ_HEADER_DATA' " |
| EXPORTING | ||
| I_GUIDH | = lv_i_guidh | |
| I_LANGUAGE | = lv_i_language | |
| IMPORTING | ||
| E_NOTIF_FOUND | = lv_e_notif_found | |
| E_HEADER_DATA | = lv_e_header_data | |
| E_STATUS | = lv_e_status | |
| E_REPORTER | = lv_e_reporter | |
| E_OBJNR | = lv_e_objnr | |
| TABLES | ||
| TE_RETURN | = lt_te_return | |
| TE_STATUS | = lt_te_status | |
| . " DNO_OW_READ_HEADER_DATA | ||
ABAP code using 7.40 inline data declarations to call FM DNO_OW_READ_HEADER_DATA
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 LANGU FROM SY INTO @DATA(ld_i_language). | ||||
| DATA(ld_i_language) | = SY-LANGU. | |||
Search for further information about these or an SAP related objects