SAP G_BEB_FISPLIT_EXCHANGE_RATE Function Module for
G_BEB_FISPLIT_EXCHANGE_RATE is a standard g beb fisplit exchange rate 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 g beb fisplit exchange rate FM, simply by entering the name G_BEB_FISPLIT_EXCHANGE_RATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: G_BEB_FISPLIT
Program Name: SAPLG_BEB_FISPLIT
Main Program: SAPLG_BEB_FISPLIT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function G_BEB_FISPLIT_EXCHANGE_RATE 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 'G_BEB_FISPLIT_EXCHANGE_RATE'".
EXPORTING
LEDGER = "
* ITEM_KEY = "Split Information: Item Key
* IS_ITEM = "
* CURRENCY_TYPE = "Currency type and valuation view
TOTAL_AMOUNT = "Split Information: Exchange Rate Differences
* IB_VALUATION = "Valuation difference
* ID_BUDAT = "Posting Date
* IT_AUSZ_CLR_ASGMT = "Table for Ausz_clr_asgmt
* IB_ALL_CURRENCIES = "
IMPORTING
SPLITTED_AMOUNTS = "Split Information: Exchange Rate Differences (Table)
IMPORTING Parameters details for G_BEB_FISPLIT_EXCHANGE_RATE
LEDGER -
Data type: RLDNROptional: No
Call by Reference: Yes
ITEM_KEY - Split Information: Item Key
Data type: FISPL_ITEM_KEYOptional: Yes
Call by Reference: Yes
IS_ITEM -
Data type: BSEGOptional: Yes
Call by Reference: Yes
CURRENCY_TYPE - Currency type and valuation view
Data type: CURTPOptional: Yes
Call by Reference: Yes
TOTAL_AMOUNT - Split Information: Exchange Rate Differences
Data type: GLT0_S_SPL_FOREXOptional: No
Call by Reference: Yes
IB_VALUATION - Valuation difference
Data type: BOOLE_DOptional: Yes
Call by Reference: Yes
ID_BUDAT - Posting Date
Data type: BUDATOptional: Yes
Call by Reference: Yes
IT_AUSZ_CLR_ASGMT - Table for Ausz_clr_asgmt
Data type: AUSZ_CLR_ASGMT_TOptional: Yes
Call by Reference: Yes
IB_ALL_CURRENCIES -
Data type: BOOLE_DOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for G_BEB_FISPLIT_EXCHANGE_RATE
SPLITTED_AMOUNTS - Split Information: Exchange Rate Differences (Table)
Data type: GLT0_T_SPL_FOREXOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for G_BEB_FISPLIT_EXCHANGE_RATE 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_ledger | TYPE RLDNR, " | |||
| lv_splitted_amounts | TYPE GLT0_T_SPL_FOREX, " | |||
| lv_item_key | TYPE FISPL_ITEM_KEY, " | |||
| lv_is_item | TYPE BSEG, " | |||
| lv_currency_type | TYPE CURTP, " | |||
| lv_total_amount | TYPE GLT0_S_SPL_FOREX, " | |||
| lv_ib_valuation | TYPE BOOLE_D, " | |||
| lv_id_budat | TYPE BUDAT, " | |||
| lv_it_ausz_clr_asgmt | TYPE AUSZ_CLR_ASGMT_T, " | |||
| lv_ib_all_currencies | TYPE BOOLE_D. " |
|   CALL FUNCTION 'G_BEB_FISPLIT_EXCHANGE_RATE' " |
| EXPORTING | ||
| LEDGER | = lv_ledger | |
| ITEM_KEY | = lv_item_key | |
| IS_ITEM | = lv_is_item | |
| CURRENCY_TYPE | = lv_currency_type | |
| TOTAL_AMOUNT | = lv_total_amount | |
| IB_VALUATION | = lv_ib_valuation | |
| ID_BUDAT | = lv_id_budat | |
| IT_AUSZ_CLR_ASGMT | = lv_it_ausz_clr_asgmt | |
| IB_ALL_CURRENCIES | = lv_ib_all_currencies | |
| IMPORTING | ||
| SPLITTED_AMOUNTS | = lv_splitted_amounts | |
| . " G_BEB_FISPLIT_EXCHANGE_RATE | ||
ABAP code using 7.40 inline data declarations to call FM G_BEB_FISPLIT_EXCHANGE_RATE
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.Search for further information about these or an SAP related objects