SAP ISH_INTERPRET_NOTE_TO_PAYEE Function Module for









ISH_INTERPRET_NOTE_TO_PAYEE is a standard ish interpret note to payee 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 interpret note to payee FM, simply by entering the name ISH_INTERPRET_NOTE_TO_PAYEE into the relevant SAP transaction such as SE37 or SE38.

Function Group: N034
Program Name: SAPLN034
Main Program: SAPLN034
Appliation area: N
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISH_INTERPRET_NOTE_TO_PAYEE 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_INTERPRET_NOTE_TO_PAYEE'"
EXPORTING
I_FEBKO = "Header Data Electronic Bank Statement
I_FEBEP = "Item Data Electonic Bank Statement
I_EINRI = "IS-H Institution
* I_FIND_BELNR_GJAHR = ' ' "
* I_FIND_BELNR = ' ' "Search Note-to-Payee for Document Number
* I_FIND_FALNR = ' ' "Search Note-to-Payee for Case Number
* I_VGINT = ' ' "Internal transaction
* I_CONVERT = "Replacement Characters (see FM documentation)
* I_OPEN_ITEMS_CHECK = '' "Check of Open Down Payments/Copayments Exist

IMPORTING
E_FEBKO = "
E_FEBEP = "
E_UPDATE = "

TABLES
T_FEBRE = "Note-to-Payee Data (Import)
T_FEBCL = "Clearing Information (Import)
* T_RNG_BLART = "Range Table for Document Types (Optional)
.



IMPORTING Parameters details for ISH_INTERPRET_NOTE_TO_PAYEE

I_FEBKO - Header Data Electronic Bank Statement

Data type: FEBKO
Optional: No
Call by Reference: No ( called with pass by value option)

I_FEBEP - Item Data Electonic Bank Statement

Data type: FEBEP
Optional: No
Call by Reference: No ( called with pass by value option)

I_EINRI - IS-H Institution

Data type: TN01-EINRI
Optional: No
Call by Reference: No ( called with pass by value option)

I_FIND_BELNR_GJAHR -

Data type: NPDOK-XFELD
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FIND_BELNR - Search Note-to-Payee for Document Number

Data type: NPDOK-XFELD
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_FIND_FALNR - Search Note-to-Payee for Case Number

Data type: NPDOK-XFELD
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_VGINT - Internal transaction

Data type: T028D-VGINT
Default: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_CONVERT - Replacement Characters (see FM documentation)

Data type: C
Optional: Yes
Call by Reference: Yes

I_OPEN_ITEMS_CHECK - Check of Open Down Payments/Copayments Exist

Data type: NPDOK-XFELD
Default: ''
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for ISH_INTERPRET_NOTE_TO_PAYEE

E_FEBKO -

Data type: FEBKO
Optional: No
Call by Reference: No ( called with pass by value option)

E_FEBEP -

Data type: FEBEP
Optional: No
Call by Reference: No ( called with pass by value option)

E_UPDATE -

Data type: NPDOK-XFELD
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for ISH_INTERPRET_NOTE_TO_PAYEE

T_FEBRE - Note-to-Payee Data (Import)

Data type: FEBRE
Optional: No
Call by Reference: No ( called with pass by value option)

T_FEBCL - Clearing Information (Import)

Data type: FEBCL
Optional: No
Call by Reference: No ( called with pass by value option)

T_RNG_BLART - Range Table for Document Types (Optional)

Data type: RNG_BLART
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISH_INTERPRET_NOTE_TO_PAYEE 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_e_febko  TYPE FEBKO, "   
lv_i_febko  TYPE FEBKO, "   
lt_t_febre  TYPE STANDARD TABLE OF FEBRE, "   
lv_e_febep  TYPE FEBEP, "   
lv_i_febep  TYPE FEBEP, "   
lt_t_febcl  TYPE STANDARD TABLE OF FEBCL, "   
lv_i_einri  TYPE TN01-EINRI, "   
lv_e_update  TYPE NPDOK-XFELD, "   
lt_t_rng_blart  TYPE STANDARD TABLE OF RNG_BLART, "   
lv_i_find_belnr_gjahr  TYPE NPDOK-XFELD, "   ' '
lv_i_find_belnr  TYPE NPDOK-XFELD, "   ' '
lv_i_find_falnr  TYPE NPDOK-XFELD, "   ' '
lv_i_vgint  TYPE T028D-VGINT, "   ' '
lv_i_convert  TYPE C, "   
lv_i_open_items_check  TYPE NPDOK-XFELD. "   ''

  CALL FUNCTION 'ISH_INTERPRET_NOTE_TO_PAYEE'  "
    EXPORTING
         I_FEBKO = lv_i_febko
         I_FEBEP = lv_i_febep
         I_EINRI = lv_i_einri
         I_FIND_BELNR_GJAHR = lv_i_find_belnr_gjahr
         I_FIND_BELNR = lv_i_find_belnr
         I_FIND_FALNR = lv_i_find_falnr
         I_VGINT = lv_i_vgint
         I_CONVERT = lv_i_convert
         I_OPEN_ITEMS_CHECK = lv_i_open_items_check
    IMPORTING
         E_FEBKO = lv_e_febko
         E_FEBEP = lv_e_febep
         E_UPDATE = lv_e_update
    TABLES
         T_FEBRE = lt_t_febre
         T_FEBCL = lt_t_febcl
         T_RNG_BLART = lt_t_rng_blart
. " ISH_INTERPRET_NOTE_TO_PAYEE




ABAP code using 7.40 inline data declarations to call FM ISH_INTERPRET_NOTE_TO_PAYEE

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 XFELD FROM NPDOK INTO @DATA(ld_e_update).
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_find_belnr_gjahr).
DATA(ld_i_find_belnr_gjahr) = ' '.
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_find_belnr).
DATA(ld_i_find_belnr) = ' '.
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_find_falnr).
DATA(ld_i_find_falnr) = ' '.
 
"SELECT single VGINT FROM T028D INTO @DATA(ld_i_vgint).
DATA(ld_i_vgint) = ' '.
 
 
"SELECT single XFELD FROM NPDOK INTO @DATA(ld_i_open_items_check).
DATA(ld_i_open_items_check) = ''.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!