SAP FI_PAYMENT_INSTRUCTION_CONVERT Function Module for









FI_PAYMENT_INSTRUCTION_CONVERT is a standard fi payment instruction convert 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 fi payment instruction convert FM, simply by entering the name FI_PAYMENT_INSTRUCTION_CONVERT into the relevant SAP transaction such as SE37 or SE38.

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



Function FI_PAYMENT_INSTRUCTION_CONVERT 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 'FI_PAYMENT_INSTRUCTION_CONVERT'"
EXPORTING
I_DTWSC = "
I_DTWSF = "
I_I015W1_PAR = "
* I_BNKA = "
* I_DTZUS = "
* I_SPRAS = SY-LANGU "

IMPORTING
E_CODE = "
E_TEXT = "
E_ADDINFO = "

CHANGING
* C_DTWSX = "
.



IMPORTING Parameters details for FI_PAYMENT_INSTRUCTION_CONVERT

I_DTWSC -

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

I_DTWSF -

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

I_I015W1_PAR -

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

I_BNKA -

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

I_DTZUS -

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

I_SPRAS -

Data type: T015W1T-SPRAS
Default: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for FI_PAYMENT_INSTRUCTION_CONVERT

E_CODE -

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

E_TEXT -

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

E_ADDINFO -

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

CHANGING Parameters details for FI_PAYMENT_INSTRUCTION_CONVERT

C_DTWSX -

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

Copy and paste ABAP code example for FI_PAYMENT_INSTRUCTION_CONVERT 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_code  TYPE STRING, "   
lv_c_dtwsx  TYPE T015W1-DTWSX, "   
lv_i_dtwsc  TYPE T015W1-DTWSC, "   
lv_e_text  TYPE T015W1T-TEXT, "   
lv_i_dtwsf  TYPE T015W1-DTWSF, "   
lv_e_addinfo  TYPE T015W1, "   
lv_i_i015w1_par  TYPE I015W1_PAR, "   
lv_i_bnka  TYPE BNKA, "   
lv_i_dtzus  TYPE T015W-DTZUS, "   
lv_i_spras  TYPE T015W1T-SPRAS. "   SY-LANGU

  CALL FUNCTION 'FI_PAYMENT_INSTRUCTION_CONVERT'  "
    EXPORTING
         I_DTWSC = lv_i_dtwsc
         I_DTWSF = lv_i_dtwsf
         I_I015W1_PAR = lv_i_i015w1_par
         I_BNKA = lv_i_bnka
         I_DTZUS = lv_i_dtzus
         I_SPRAS = lv_i_spras
    IMPORTING
         E_CODE = lv_e_code
         E_TEXT = lv_e_text
         E_ADDINFO = lv_e_addinfo
    CHANGING
         C_DTWSX = lv_c_dtwsx
. " FI_PAYMENT_INSTRUCTION_CONVERT




ABAP code using 7.40 inline data declarations to call FM FI_PAYMENT_INSTRUCTION_CONVERT

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 DTWSX FROM T015W1 INTO @DATA(ld_c_dtwsx).
 
"SELECT single DTWSC FROM T015W1 INTO @DATA(ld_i_dtwsc).
 
"SELECT single TEXT FROM T015W1T INTO @DATA(ld_e_text).
 
"SELECT single DTWSF FROM T015W1 INTO @DATA(ld_i_dtwsf).
 
 
 
 
"SELECT single DTZUS FROM T015W INTO @DATA(ld_i_dtzus).
 
"SELECT single SPRAS FROM T015W1T INTO @DATA(ld_i_spras).
DATA(ld_i_spras) = SY-LANGU.
 


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!