SAP FRML539_CALL_CONVERSION Function Module for NOTRANSL: RMS-FRM: Umrechnungsfunktionen
FRML539_CALL_CONVERSION is a standard frml539 call conversion 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: RMS-FRM: Umrechnungsfunktionen 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 frml539 call conversion FM, simply by entering the name FRML539_CALL_CONVERSION into the relevant SAP transaction such as SE37 or SE38.
Function Group: FRML539
Program Name: SAPLFRML539
Main Program: SAPLFRML539
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FRML539_CALL_CONVERSION 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 'FRML539_CALL_CONVERSION'"NOTRANSL: RMS-FRM: Umrechnungsfunktionen.
EXPORTING
IS_ADDINF = "RMS-FRM: Additional Information for Function Module Calls
I_FLG_NEED_SAVE = "General Indicator
I_CONV_MODULE = "Function Name
I_LOCAL_CLOSE = "Function Name
I_LEVEL = "View of a Recipe Formula
IMPORTING
E_FLG_SAVE = "General Indicator
ET_LOG = "RMS-FRM: Messages for Application Log
E_AFTER_CALC_DATA_FLG = "Customizing: General Indicator
CHANGING
XS_KEYPATH = "RMS-FRM: Formula 'Key' Path for Function Module Call
XT_COMP_DATA = "RMSA: Composition Contribution
EXCEPTIONS
API_ERROR = 1
IMPORTING Parameters details for FRML539_CALL_CONVERSION
IS_ADDINF - RMS-FRM: Additional Information for Function Module Calls
Data type: FRMLS_ADDINFOptional: No
Call by Reference: Yes
I_FLG_NEED_SAVE - General Indicator
Data type: FLAGOptional: No
Call by Reference: Yes
I_CONV_MODULE - Function Name
Data type: FRMLE_FUNCNAMEOptional: No
Call by Reference: Yes
I_LOCAL_CLOSE - Function Name
Data type: FRMLE_FUNCNAMEOptional: No
Call by Reference: Yes
I_LEVEL - View of a Recipe Formula
Data type: FRMLE_LEVELOptional: No
Call by Reference: Yes
EXPORTING Parameters details for FRML539_CALL_CONVERSION
E_FLG_SAVE - General Indicator
Data type: FLAGOptional: No
Call by Reference: Yes
ET_LOG - RMS-FRM: Messages for Application Log
Data type: FRMLTY_LOG_RECOptional: No
Call by Reference: Yes
E_AFTER_CALC_DATA_FLG - Customizing: General Indicator
Data type: FRMLE_FLAGOptional: No
Call by Reference: Yes
CHANGING Parameters details for FRML539_CALL_CONVERSION
XS_KEYPATH - RMS-FRM: Formula 'Key' Path for Function Module Call
Data type: FRMLS_KEYPATHOptional: No
Call by Reference: Yes
XT_COMP_DATA - RMSA: Composition Contribution
Data type: FRMLTY_CMPOptional: No
Call by Reference: Yes
EXCEPTIONS details
API_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FRML539_CALL_CONVERSION 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_api_error | TYPE STRING, " | |||
| lv_is_addinf | TYPE FRMLS_ADDINF, " | |||
| lv_e_flg_save | TYPE FLAG, " | |||
| lv_xs_keypath | TYPE FRMLS_KEYPATH, " | |||
| lv_et_log | TYPE FRMLTY_LOG_REC, " | |||
| lv_xt_comp_data | TYPE FRMLTY_CMP, " | |||
| lv_i_flg_need_save | TYPE FLAG, " | |||
| lv_i_conv_module | TYPE FRMLE_FUNCNAME, " | |||
| lv_e_after_calc_data_flg | TYPE FRMLE_FLAG, " | |||
| lv_i_local_close | TYPE FRMLE_FUNCNAME, " | |||
| lv_i_level | TYPE FRMLE_LEVEL. " |
|   CALL FUNCTION 'FRML539_CALL_CONVERSION' "NOTRANSL: RMS-FRM: Umrechnungsfunktionen |
| EXPORTING | ||
| IS_ADDINF | = lv_is_addinf | |
| I_FLG_NEED_SAVE | = lv_i_flg_need_save | |
| I_CONV_MODULE | = lv_i_conv_module | |
| I_LOCAL_CLOSE | = lv_i_local_close | |
| I_LEVEL | = lv_i_level | |
| IMPORTING | ||
| E_FLG_SAVE | = lv_e_flg_save | |
| ET_LOG | = lv_et_log | |
| E_AFTER_CALC_DATA_FLG | = lv_e_after_calc_data_flg | |
| CHANGING | ||
| XS_KEYPATH | = lv_xs_keypath | |
| XT_COMP_DATA | = lv_xt_comp_data | |
| EXCEPTIONS | ||
| API_ERROR = 1 | ||
| . " FRML539_CALL_CONVERSION | ||
ABAP code using 7.40 inline data declarations to call FM FRML539_CALL_CONVERSION
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