SAP GET_TAB_DATA_FOR_FEBKO Function Module for NOTRANSL: Liest die Customizingtabellen zu einem Bankkonto









GET_TAB_DATA_FOR_FEBKO is a standard get tab data for febko SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Liest die Customizingtabellen zu einem Bankkonto 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 get tab data for febko FM, simply by entering the name GET_TAB_DATA_FOR_FEBKO into the relevant SAP transaction such as SE37 or SE38.

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



Function GET_TAB_DATA_FOR_FEBKO 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 'GET_TAB_DATA_FOR_FEBKO'"NOTRANSL: Liest die Customizingtabellen zu einem Bankkonto
EXPORTING
* I_BANKL = ' ' "
* I_BANKN = ' ' "
* I_WAERS = ' ' "
* I_BNKN2 = ' ' "
* I_ANWND = '0001' "
* I_BIGAC1 = ' ' "Account Number in Bank Statement
* I_BIGAC2 = ' ' "Account Number in Bank Statement

IMPORTING
E_T012 = "
E_T012K = "
E_KTOPL = "
E_BNKA = "
E_T028B = "
E_BUKRS = "

EXCEPTIONS
INPUT_WRONG = 1 GL_ACCOUNT_MISSING = 10 BANK_ACCOUNT_NOT_FOUND = 2 BANK_KEY_FALSE = 3 BANK_KEY_NOT_FOUND = 4 CURRENCY_FALSE = 5 CURRENCY_NOT_FOUND = 6 MULTIPLE_BANK_ACCOUNT = 7 T028B_MISSING = 8 TR_ACCOUNT_MISSING = 9
.



IMPORTING Parameters details for GET_TAB_DATA_FOR_FEBKO

I_BANKL -

Data type: T012-BANKL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BANKN -

Data type: T012K-BANKN
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_WAERS -

Data type: T012K-WAERS
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BNKN2 -

Data type: T012K-BNKN2
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_ANWND -

Data type: FEBKO-ANWND
Default: '0001'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_BIGAC1 - Account Number in Bank Statement

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

I_BIGAC2 - Account Number in Bank Statement

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

EXPORTING Parameters details for GET_TAB_DATA_FOR_FEBKO

E_T012 -

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

E_T012K -

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

E_KTOPL -

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

E_BNKA -

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

E_T028B -

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

E_BUKRS -

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

EXCEPTIONS details

INPUT_WRONG -

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

GL_ACCOUNT_MISSING -

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

BANK_ACCOUNT_NOT_FOUND -

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

BANK_KEY_FALSE -

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

BANK_KEY_NOT_FOUND -

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

CURRENCY_FALSE -

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

CURRENCY_NOT_FOUND -

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

MULTIPLE_BANK_ACCOUNT -

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

T028B_MISSING -

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

TR_ACCOUNT_MISSING -

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

Copy and paste ABAP code example for GET_TAB_DATA_FOR_FEBKO 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_t012  TYPE T012, "   
lv_i_bankl  TYPE T012-BANKL, "   SPACE
lv_input_wrong  TYPE T012, "   
lv_gl_account_missing  TYPE T012, "   
lv_e_t012k  TYPE T012K, "   
lv_i_bankn  TYPE T012K-BANKN, "   SPACE
lv_bank_account_not_found  TYPE T012K, "   
lv_e_ktopl  TYPE T001-KTOPL, "   
lv_i_waers  TYPE T012K-WAERS, "   SPACE
lv_bank_key_false  TYPE T012K, "   
lv_e_bnka  TYPE BNKA, "   
lv_i_bnkn2  TYPE T012K-BNKN2, "   SPACE
lv_bank_key_not_found  TYPE T012K, "   
lv_e_t028b  TYPE T028B, "   
lv_i_anwnd  TYPE FEBKO-ANWND, "   '0001'
lv_currency_false  TYPE FEBKO, "   
lv_e_bukrs  TYPE T001-BUKRS, "   
lv_i_bigac1  TYPE BIGAC_EB, "   SPACE
lv_currency_not_found  TYPE BIGAC_EB, "   
lv_i_bigac2  TYPE BIGAC_EB, "   SPACE
lv_multiple_bank_account  TYPE BIGAC_EB, "   
lv_t028b_missing  TYPE BIGAC_EB, "   
lv_tr_account_missing  TYPE BIGAC_EB. "   

  CALL FUNCTION 'GET_TAB_DATA_FOR_FEBKO'  "NOTRANSL: Liest die Customizingtabellen zu einem Bankkonto
    EXPORTING
         I_BANKL = lv_i_bankl
         I_BANKN = lv_i_bankn
         I_WAERS = lv_i_waers
         I_BNKN2 = lv_i_bnkn2
         I_ANWND = lv_i_anwnd
         I_BIGAC1 = lv_i_bigac1
         I_BIGAC2 = lv_i_bigac2
    IMPORTING
         E_T012 = lv_e_t012
         E_T012K = lv_e_t012k
         E_KTOPL = lv_e_ktopl
         E_BNKA = lv_e_bnka
         E_T028B = lv_e_t028b
         E_BUKRS = lv_e_bukrs
    EXCEPTIONS
        INPUT_WRONG = 1
        GL_ACCOUNT_MISSING = 10
        BANK_ACCOUNT_NOT_FOUND = 2
        BANK_KEY_FALSE = 3
        BANK_KEY_NOT_FOUND = 4
        CURRENCY_FALSE = 5
        CURRENCY_NOT_FOUND = 6
        MULTIPLE_BANK_ACCOUNT = 7
        T028B_MISSING = 8
        TR_ACCOUNT_MISSING = 9
. " GET_TAB_DATA_FOR_FEBKO




ABAP code using 7.40 inline data declarations to call FM GET_TAB_DATA_FOR_FEBKO

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 BANKL FROM T012 INTO @DATA(ld_i_bankl).
DATA(ld_i_bankl) = ' '.
 
 
 
 
"SELECT single BANKN FROM T012K INTO @DATA(ld_i_bankn).
DATA(ld_i_bankn) = ' '.
 
 
"SELECT single KTOPL FROM T001 INTO @DATA(ld_e_ktopl).
 
"SELECT single WAERS FROM T012K INTO @DATA(ld_i_waers).
DATA(ld_i_waers) = ' '.
 
 
 
"SELECT single BNKN2 FROM T012K INTO @DATA(ld_i_bnkn2).
DATA(ld_i_bnkn2) = ' '.
 
 
 
"SELECT single ANWND FROM FEBKO INTO @DATA(ld_i_anwnd).
DATA(ld_i_anwnd) = '0001'.
 
 
"SELECT single BUKRS FROM T001 INTO @DATA(ld_e_bukrs).
 
DATA(ld_i_bigac1) = ' '.
 
 
DATA(ld_i_bigac2) = ' '.
 
 
 
 


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!