SAP CONVERT_BANK_ACCOUNT_NUM_LONG Function Module for









CONVERT_BANK_ACCOUNT_NUM_LONG is a standard convert bank account num long 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 convert bank account num long FM, simply by entering the name CONVERT_BANK_ACCOUNT_NUM_LONG into the relevant SAP transaction such as SE37 or SE38.

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



Function CONVERT_BANK_ACCOUNT_NUM_LONG 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 'CONVERT_BANK_ACCOUNT_NUM_LONG'"
EXPORTING
I_BANKN_LONG = "
I_BANKS = "Bank Country Key
* I_BANKK = "Bank Key
* I_BKONT = "Bank control key
* I_BKREF = "Reference specifications for bank details
* I_BANKL = "Bank Number

IMPORTING
E_BANKL = "SAP Bank Number Determined
E_BANKN = "SAP Bank Account Number Determined
E_BKONT = "SAP Bank Control Key Determined
E_BKREF = "
E_SUBRC = "Return Code (0 or 1)

EXCEPTIONS
CONVERSION_ERROR = 1 PARAM_CONVERSION_ERROR = 2
.



IMPORTING Parameters details for CONVERT_BANK_ACCOUNT_NUM_LONG

I_BANKN_LONG -

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

I_BANKS - Bank Country Key

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

I_BANKK - Bank Key

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

I_BKONT - Bank control key

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

I_BKREF - Reference specifications for bank details

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

I_BANKL - Bank Number

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

EXPORTING Parameters details for CONVERT_BANK_ACCOUNT_NUM_LONG

E_BANKL - SAP Bank Number Determined

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

E_BANKN - SAP Bank Account Number Determined

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

E_BKONT - SAP Bank Control Key Determined

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

E_BKREF -

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

E_SUBRC - Return Code (0 or 1)

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

EXCEPTIONS details

CONVERSION_ERROR - Error During Translation

Data type:
Optional: No
Call by Reference: Yes

PARAM_CONVERSION_ERROR - Inconsistent parameter(s)

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for CONVERT_BANK_ACCOUNT_NUM_LONG 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_bankl  TYPE REGUH_BF-ZBNKL, "   
lv_i_bankn_long  TYPE BANKN35, "   
lv_conversion_error  TYPE BANKN35, "   
lv_e_bankn  TYPE REGUH_BF-UBKNT, "   
lv_i_banks  TYPE REGUH_BF-UBNKS, "   
lv_param_conversion_error  TYPE REGUH_BF, "   
lv_e_bkont  TYPE REGUH_BF-UBKON, "   
lv_i_bankk  TYPE REGUH_BF-UBNKY, "   
lv_e_bkref  TYPE REGUH_BF-BKREF, "   
lv_i_bkont  TYPE REGUH_BF-UBKON, "   
lv_e_subrc  TYPE SY-SUBRC, "   
lv_i_bkref  TYPE REGUH_BF-BKREF, "   
lv_i_bankl  TYPE REGUH_BF-UBNKL. "   

  CALL FUNCTION 'CONVERT_BANK_ACCOUNT_NUM_LONG'  "
    EXPORTING
         I_BANKN_LONG = lv_i_bankn_long
         I_BANKS = lv_i_banks
         I_BANKK = lv_i_bankk
         I_BKONT = lv_i_bkont
         I_BKREF = lv_i_bkref
         I_BANKL = lv_i_bankl
    IMPORTING
         E_BANKL = lv_e_bankl
         E_BANKN = lv_e_bankn
         E_BKONT = lv_e_bkont
         E_BKREF = lv_e_bkref
         E_SUBRC = lv_e_subrc
    EXCEPTIONS
        CONVERSION_ERROR = 1
        PARAM_CONVERSION_ERROR = 2
. " CONVERT_BANK_ACCOUNT_NUM_LONG




ABAP code using 7.40 inline data declarations to call FM CONVERT_BANK_ACCOUNT_NUM_LONG

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 ZBNKL FROM REGUH_BF INTO @DATA(ld_e_bankl).
 
 
 
"SELECT single UBKNT FROM REGUH_BF INTO @DATA(ld_e_bankn).
 
"SELECT single UBNKS FROM REGUH_BF INTO @DATA(ld_i_banks).
 
 
"SELECT single UBKON FROM REGUH_BF INTO @DATA(ld_e_bkont).
 
"SELECT single UBNKY FROM REGUH_BF INTO @DATA(ld_i_bankk).
 
"SELECT single BKREF FROM REGUH_BF INTO @DATA(ld_e_bkref).
 
"SELECT single UBKON FROM REGUH_BF INTO @DATA(ld_i_bkont).
 
"SELECT single SUBRC FROM SY INTO @DATA(ld_e_subrc).
 
"SELECT single BKREF FROM REGUH_BF INTO @DATA(ld_i_bkref).
 
"SELECT single UBNKL FROM REGUH_BF INTO @DATA(ld_i_bankl).
 


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!