SAP ISH_READ_NVBRK_NVBRP Function Module for
ISH_READ_NVBRK_NVBRP is a standard ish read nvbrk nvbrp 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 ish read nvbrk nvbrp FM, simply by entering the name ISH_READ_NVBRK_NVBRP into the relevant SAP transaction such as SE37 or SE38.
Function Group: N062
Program Name: SAPLN062
Main Program: SAPLN062
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function ISH_READ_NVBRK_NVBRP 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 'ISH_READ_NVBRK_NVBRP'".
EXPORTING
I_EINRI = "
I_FALNR = "
* I_LFDNR = "
* I_READ_DB = 'X' "
* I_READ_NVBRP = 'X' "
* I_READ_NVKONV = ' ' "
TABLES
E_NVBRK = "
* E_NVBRP = "
* E_NVKONV = "
EXCEPTIONS
PARAMETER_ERROR = 1 CASE_NOT_FOUND = 2 NO_RECORD_FOUND = 3
IMPORTING Parameters details for ISH_READ_NVBRK_NVBRP
I_EINRI -
Data type: TN01-EINRIOptional: No
Call by Reference: No ( called with pass by value option)
I_FALNR -
Data type: NFAL-FALNROptional: No
Call by Reference: No ( called with pass by value option)
I_LFDNR -
Data type: NVVF-LFDNROptional: Yes
Call by Reference: No ( called with pass by value option)
I_READ_DB -
Data type: NPDOK-XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_READ_NVBRP -
Data type: NPDOK-XFELDDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_READ_NVKONV -
Data type: NPDOK-XFELDDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ISH_READ_NVBRK_NVBRP
E_NVBRK -
Data type: NVBRKOptional: No
Call by Reference: No ( called with pass by value option)
E_NVBRP -
Data type: NVBRPOptional: Yes
Call by Reference: No ( called with pass by value option)
E_NVKONV -
Data type: NVKONVOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
PARAMETER_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
CASE_NOT_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_RECORD_FOUND -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for ISH_READ_NVBRK_NVBRP 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_e_nvbrk | TYPE STANDARD TABLE OF NVBRK, " | |||
| lv_i_einri | TYPE TN01-EINRI, " | |||
| lv_parameter_error | TYPE TN01, " | |||
| lt_e_nvbrp | TYPE STANDARD TABLE OF NVBRP, " | |||
| lv_i_falnr | TYPE NFAL-FALNR, " | |||
| lv_case_not_found | TYPE NFAL, " | |||
| lv_i_lfdnr | TYPE NVVF-LFDNR, " | |||
| lt_e_nvkonv | TYPE STANDARD TABLE OF NVKONV, " | |||
| lv_no_record_found | TYPE NVKONV, " | |||
| lv_i_read_db | TYPE NPDOK-XFELD, " 'X' | |||
| lv_i_read_nvbrp | TYPE NPDOK-XFELD, " 'X' | |||
| lv_i_read_nvkonv | TYPE NPDOK-XFELD. " ' ' |
|   CALL FUNCTION 'ISH_READ_NVBRK_NVBRP' " |
| EXPORTING | ||
| I_EINRI | = lv_i_einri | |
| I_FALNR | = lv_i_falnr | |
| I_LFDNR | = lv_i_lfdnr | |
| I_READ_DB | = lv_i_read_db | |
| I_READ_NVBRP | = lv_i_read_nvbrp | |
| I_READ_NVKONV | = lv_i_read_nvkonv | |
| TABLES | ||
| E_NVBRK | = lt_e_nvbrk | |
| E_NVBRP | = lt_e_nvbrp | |
| E_NVKONV | = lt_e_nvkonv | |
| EXCEPTIONS | ||
| PARAMETER_ERROR = 1 | ||
| CASE_NOT_FOUND = 2 | ||
| NO_RECORD_FOUND = 3 | ||
| . " ISH_READ_NVBRK_NVBRP | ||
ABAP code using 7.40 inline data declarations to call FM ISH_READ_NVBRK_NVBRP
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 EINRI FROM TN01 INTO @DATA(ld_i_einri). | ||||
| "SELECT single FALNR FROM NFAL INTO @DATA(ld_i_falnr). | ||||
| "SELECT single LFDNR FROM NVVF INTO @DATA(ld_i_lfdnr). | ||||
| "SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_read_db). | ||||
| DATA(ld_i_read_db) | = 'X'. | |||
| "SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_read_nvbrp). | ||||
| DATA(ld_i_read_nvbrp) | = 'X'. | |||
| "SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_read_nvkonv). | ||||
| DATA(ld_i_read_nvkonv) | = ' '. | |||
Search for further information about these or an SAP related objects