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

Function ISH_PRINT_INVOICE_DATA_READ 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_PRINT_INVOICE_DATA_READ'".
EXPORTING
I_EINRI = "IS-H: Institution
I_VBRK = "Billing Document: Header Data
* IT_NFAL = "IS-H: Cases
* I_ABRKZ_AUS_NFAL = ' ' "IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
* I_PROV_BILL = ' ' "IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
* I_ZERO_BILL = ' ' "IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
* IS_RNF_NOUSE = "IS-H: Invoice Printing Structures
IMPORTING
E_INV_DATA = "
E_SUBRC = "Return Value, Return Value after ABAP Statements
TABLES
* IT_AKT_KOMV = "Price Determination Communications-Condition Record
IMPORTING Parameters details for ISH_PRINT_INVOICE_DATA_READ
I_EINRI - IS-H: Institution
Data type: EINRIOptional: No
Call by Reference: Yes
I_VBRK - Billing Document: Header Data
Data type: VBRKOptional: No
Call by Reference: Yes
IT_NFAL - IS-H: Cases
Data type: ISH_YT_NFALOptional: Yes
Call by Reference: Yes
I_ABRKZ_AUS_NFAL - IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
Data type: ISH_ON_OFFDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_PROV_BILL - IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
Data type: ISH_ON_OFFDefault: SPACE
Optional: Yes
Call by Reference: Yes
I_ZERO_BILL - IS-H: Boolean Data Type for ON (= 'X') and OFF (= ' ')
Data type: ISH_ON_OFFDefault: SPACE
Optional: Yes
Call by Reference: Yes
IS_RNF_NOUSE - IS-H: Invoice Printing Structures
Data type: ISH_YS_INVOICE_RNFXX_NOUSEOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for ISH_PRINT_INVOICE_DATA_READ
E_INV_DATA -
Data type: ISH_YS_INVOICE_DATAOptional: No
Call by Reference: Yes
E_SUBRC - Return Value, Return Value after ABAP Statements
Data type: SY-SUBRCOptional: No
Call by Reference: Yes
TABLES Parameters details for ISH_PRINT_INVOICE_DATA_READ
IT_AKT_KOMV - Price Determination Communications-Condition Record
Data type: KOMVOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ISH_PRINT_INVOICE_DATA_READ 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_einri | TYPE EINRI, " | |||
| lv_e_inv_data | TYPE ISH_YS_INVOICE_DATA, " | |||
| lt_it_akt_komv | TYPE STANDARD TABLE OF KOMV, " | |||
| lv_i_vbrk | TYPE VBRK, " | |||
| lv_e_subrc | TYPE SY-SUBRC, " | |||
| lv_it_nfal | TYPE ISH_YT_NFAL, " | |||
| lv_i_abrkz_aus_nfal | TYPE ISH_ON_OFF, " SPACE | |||
| lv_i_prov_bill | TYPE ISH_ON_OFF, " SPACE | |||
| lv_i_zero_bill | TYPE ISH_ON_OFF, " SPACE | |||
| lv_is_rnf_nouse | TYPE ISH_YS_INVOICE_RNFXX_NOUSE. " |
|   CALL FUNCTION 'ISH_PRINT_INVOICE_DATA_READ' " |
| EXPORTING | ||
| I_EINRI | = lv_i_einri | |
| I_VBRK | = lv_i_vbrk | |
| IT_NFAL | = lv_it_nfal | |
| I_ABRKZ_AUS_NFAL | = lv_i_abrkz_aus_nfal | |
| I_PROV_BILL | = lv_i_prov_bill | |
| I_ZERO_BILL | = lv_i_zero_bill | |
| IS_RNF_NOUSE | = lv_is_rnf_nouse | |
| IMPORTING | ||
| E_INV_DATA | = lv_e_inv_data | |
| E_SUBRC | = lv_e_subrc | |
| TABLES | ||
| IT_AKT_KOMV | = lt_it_akt_komv | |
| . " ISH_PRINT_INVOICE_DATA_READ | ||
ABAP code using 7.40 inline data declarations to call FM ISH_PRINT_INVOICE_DATA_READ
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 SUBRC FROM SY INTO @DATA(ld_e_subrc). | ||||
| DATA(ld_i_abrkz_aus_nfal) | = ' '. | |||
| DATA(ld_i_prov_bill) | = ' '. | |||
| DATA(ld_i_zero_bill) | = ' '. | |||
Search for further information about these or an SAP related objects