BKK_ACCNT_NUMBER_GET_ACNUM_EXT is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name BKK_ACCNT_NUMBER_GET_ACNUM_EXT into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FBK8
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'BKK_ACCNT_NUMBER_GET_ACNUM_EXT' "BCA: Use External Account Number (Creation With Internal Number Assignt)
EXPORTING
i_bkkrs = " ibkk40-bkkrs Bank Area
i_aktyp = " tbz0k-aktyp
i_aktdb = " tbz0k-aktyp
i_xsave = " ibkk50-xsave
i_prodext = " ibkk50-prodext Product
i_partner = " bkk45-partner BP Number
i_accur = " bkk42-waers Account Currency
IMPORTING
e_acnum_ext = " ibkk42-acnum_ext External Account Number
e_return = " sy-subrc
. " BKK_ACCNT_NUMBER_GET_ACNUM_EXT
The ABAP code below is a full code listing to execute function module BKK_ACCNT_NUMBER_GET_ACNUM_EXT including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_acnum_ext | TYPE IBKK42-ACNUM_EXT , |
| ld_e_return | TYPE SY-SUBRC . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_acnum_ext | TYPE IBKK42-ACNUM_EXT , |
| ld_i_bkkrs | TYPE IBKK40-BKKRS , |
| ld_e_return | TYPE SY-SUBRC , |
| ld_i_aktyp | TYPE TBZ0K-AKTYP , |
| ld_i_aktdb | TYPE TBZ0K-AKTYP , |
| ld_i_xsave | TYPE IBKK50-XSAVE , |
| ld_i_prodext | TYPE IBKK50-PRODEXT , |
| ld_i_partner | TYPE BKK45-PARTNER , |
| ld_i_accur | TYPE BKK42-WAERS . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name BKK_ACCNT_NUMBER_GET_ACNUM_EXT or its description.
BKK_ACCNT_NUMBER_GET_ACNUM_EXT - BCA: Use External Account Number (Creation With Internal Number Assign BKK_ACCNT_MAINTAIN_FROM_HY - Maintenance of Account From Cash Pool Hierarchy BKK_ACCNT_LIMIT_SET_AMNT - Save Amounts for Update in Global Memory BKK_ACCNT_LIMIT_REFRESH - Reset Data in Global Memory BKK_ACCNT_IN_RUN_IS_CHG_PERIOD - Is Account Currently Being Processed in Dual Currency Phase? BKK_ACCNT_INIT_TABLE - Initializes the Locally Buffered Data From BKK42 Table