SAP MAINTAIN_IBAN_DIAL Function Module for Online Entry Module for Processing IBAN
MAINTAIN_IBAN_DIAL is a standard maintain iban dial SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Online Entry Module for Processing IBAN processing and below is the pattern details for this FM, 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 maintain iban dial FM, simply by entering the name MAINTAIN_IBAN_DIAL into the relevant SAP transaction such as SE37 or SE38.
Function Group: IBMA
Program Name: SAPLIBMA
Main Program: SAPLIBMA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function MAINTAIN_IBAN_DIAL 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 'MAINTAIN_IBAN_DIAL'"Online Entry Module for Processing IBAN.
EXPORTING
I_MODE = "Display/Change Mode
I_BANKS = "Bank Country Key
I_BANKL = "Bank Key
I_BANKN = "Bank Account Number (18)
I_BKONT = "Bank Control Key
* I_BKREF = "Reference specifications for bank details
* I_TABNAME = "Table name, 16 characters
* I_TABKEY = "IBAN origin: Key to table of bank details
IMPORTING
E_IBAN = "IBAN
E_CHANGED = "Are There Any Changes?
EXCEPTIONS
ACTION_CANCELLED = 1 BANK_NOT_FOUND = 2 IBAN_NOT_FOUND = 3
IMPORTING Parameters details for MAINTAIN_IBAN_DIAL
I_MODE - Display/Change Mode
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
I_BANKS - Bank Country Key
Data type: BNKA-BANKSOptional: No
Call by Reference: No ( called with pass by value option)
I_BANKL - Bank Key
Data type: BNKA-BANKLOptional: No
Call by Reference: No ( called with pass by value option)
I_BANKN - Bank Account Number (18)
Data type: REGUH_BF-ZBNKNOptional: No
Call by Reference: No ( called with pass by value option)
I_BKONT - Bank Control Key
Data type: REGUH_BF-ZBKONOptional: No
Call by Reference: No ( called with pass by value option)
I_BKREF - Reference specifications for bank details
Data type: REGUH_BF-BKREFOptional: Yes
Call by Reference: No ( called with pass by value option)
I_TABNAME - Table name, 16 characters
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
I_TABKEY - IBAN origin: Key to table of bank details
Data type: COptional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for MAINTAIN_IBAN_DIAL
E_IBAN - IBAN
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
E_CHANGED - Are There Any Changes?
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ACTION_CANCELLED - Action canceled
Data type:Optional: No
Call by Reference: Yes
BANK_NOT_FOUND - Bank Does Not Exist
Data type:Optional: No
Call by Reference: Yes
IBAN_NOT_FOUND - IBAN does not exist
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for MAINTAIN_IBAN_DIAL 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_iban | TYPE C, " | |||
| lv_i_mode | TYPE C, " | |||
| lv_action_cancelled | TYPE C, " | |||
| lv_i_banks | TYPE BNKA-BANKS, " | |||
| lv_e_changed | TYPE C, " | |||
| lv_bank_not_found | TYPE C, " | |||
| lv_i_bankl | TYPE BNKA-BANKL, " | |||
| lv_iban_not_found | TYPE BNKA, " | |||
| lv_i_bankn | TYPE REGUH_BF-ZBNKN, " | |||
| lv_i_bkont | TYPE REGUH_BF-ZBKON, " | |||
| lv_i_bkref | TYPE REGUH_BF-BKREF, " | |||
| lv_i_tabname | TYPE C, " | |||
| lv_i_tabkey | TYPE C. " |
|   CALL FUNCTION 'MAINTAIN_IBAN_DIAL' "Online Entry Module for Processing IBAN |
| EXPORTING | ||
| I_MODE | = lv_i_mode | |
| I_BANKS | = lv_i_banks | |
| I_BANKL | = lv_i_bankl | |
| I_BANKN | = lv_i_bankn | |
| I_BKONT | = lv_i_bkont | |
| I_BKREF | = lv_i_bkref | |
| I_TABNAME | = lv_i_tabname | |
| I_TABKEY | = lv_i_tabkey | |
| IMPORTING | ||
| E_IBAN | = lv_e_iban | |
| E_CHANGED | = lv_e_changed | |
| EXCEPTIONS | ||
| ACTION_CANCELLED = 1 | ||
| BANK_NOT_FOUND = 2 | ||
| IBAN_NOT_FOUND = 3 | ||
| . " MAINTAIN_IBAN_DIAL | ||
ABAP code using 7.40 inline data declarations to call FM MAINTAIN_IBAN_DIAL
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 BANKS FROM BNKA INTO @DATA(ld_i_banks). | ||||
| "SELECT single BANKL FROM BNKA INTO @DATA(ld_i_bankl). | ||||
| "SELECT single ZBNKN FROM REGUH_BF INTO @DATA(ld_i_bankn). | ||||
| "SELECT single ZBKON FROM REGUH_BF INTO @DATA(ld_i_bkont). | ||||
| "SELECT single BKREF FROM REGUH_BF INTO @DATA(ld_i_bkref). | ||||
Search for further information about these or an SAP related objects