GET_BANK_CL_ACCOUNT SAP Method Get Bank clearing account
Below is documentation, parameters and attributes of ABAP Method GET_BANK_CL_ACCOUNT within SAP class IF_BADI_DIM_PROXY_METHODS. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_BADI_DIM_PROXY_METHODS into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_BANK_CL_ACCOUNT can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_BANK_CL_ACCOUNT
.| Name | Type | Data Type | Description | Default Value |
| I_ACCT_MAPPING | Importing | TYPE UKM_T_MAPPINGS_EASY | UKM: Mappings | |
| I_COMP_CODE | Importing | TYPE FKKVKP-STDBK | Standard Company Code | |
| I_TAB_PAYMENT_ITEMS | Importing | TYPE BCA_TAB_DIM_PAY_ITEMS | Payment Items | |
| E_BANK_CL_ACCOUNT | Exporting | TYPE BVRKO_KK | Bank clearing account | |
| E_TAB_VKONT_CLEARING | Exporting | TYPE BCA_TAB_VK_CLR | Table for Contract Account & Bank Clearing Account |
Exceptions of Method GET_BANK_CL_ACCOUNT
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_DIM_PROXY_METHODS.
DATA: lv_E_BANK_CL_ACCOUNT TYPE BVRKO_KK,
lv_E_TAB_VKONT_CLEARING TYPE BCA_TAB_VK_CLR,
lv_I_ACCT_MAPPING TYPE UKM_T_MAPPINGS_EASY,
lv_I_COMP_CODE TYPE FKKVKP-STDBK,
lv_I_TAB_PAYMENT_ITEMS TYPE BCA_TAB_DIM_PAY_ITEMS,
lv_other TYPE c.
CALL METHOD lo_class=>GET_BANK_CL_ACCOUNT(
EXPORTING
I_ACCT_MAPPING = lv_I_ACCT_MAPPING
I_COMP_CODE = lv_I_COMP_CODE
I_TAB_PAYMENT_ITEMS = lv_I_TAB_PAYMENT_ITEMS
IMPORTING
E_BANK_CL_ACCOUNT = lv_E_BANK_CL_ACCOUNT
E_TAB_VKONT_CLEARING = lv_E_TAB_VKONT_CLEARING ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects