SAP FRE_RELEV_PROFILES_SELECT Function Module for Selection of F&R relev.Rounding Profiles & Rules
FRE_RELEV_PROFILES_SELECT is a standard fre relev profiles select SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Selection of F&R relev.Rounding Profiles & Rules 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 fre relev profiles select FM, simply by entering the name FRE_RELEV_PROFILES_SELECT into the relevant SAP transaction such as SE37 or SE38.
Function Group: FRE_LOGIST_ROUND_OUT
Program Name: SAPLFRE_LOGIST_ROUND_OUT
Main Program: SAPLFRE_LOGIST_ROUND_OUT
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FRE_RELEV_PROFILES_SELECT 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 'FRE_RELEV_PROFILES_SELECT'"Selection of F&R relev.Rounding Profiles & Rules.
EXPORTING
* IP_RPR_ONLY = ' ' "Checkbox
* IT_RDPR = "Rounding Profile
* IR_RPR_RANGE = "FRE Range Structure for FM Import / Export Parameter
* IR_RRU_RANGE = "FRE Range Structure for FM Import / Export Parameter
IMPORTING
ET_RDPR = "Rounding Profile
ET_RDTX = "Rounding Profile Short Texts Language dependent
ET_TW06S = "Rounding Rules
ET_UNIT_ISO = "ISO Units of Measure
ET_LANG_ISO = "ISO Language Keys
ET_MSG = "FRE CON R/3 User Interface Message Structure
EXCEPTIONS
NO_OBJECTS_FOUND = 1
IMPORTING Parameters details for FRE_RELEV_PROFILES_SELECT
IP_RPR_ONLY - Checkbox
Data type: XFELDDefault: ' '
Optional: No
Call by Reference: Yes
IT_RDPR - Rounding Profile
Data type: FRE_RDPR_TTYOptional: Yes
Call by Reference: Yes
IR_RPR_RANGE - FRE Range Structure for FM Import / Export Parameter
Data type: FRE_RANGE_RTTYOptional: Yes
Call by Reference: Yes
IR_RRU_RANGE - FRE Range Structure for FM Import / Export Parameter
Data type: FRE_RANGE_RTTYOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for FRE_RELEV_PROFILES_SELECT
ET_RDPR - Rounding Profile
Data type: FRE_RDPR_TTYOptional: No
Call by Reference: Yes
ET_RDTX - Rounding Profile Short Texts Language dependent
Data type: FRE_RDTX_TTYOptional: No
Call by Reference: Yes
ET_TW06S - Rounding Rules
Data type: FRE_TW06S_TTYOptional: No
Call by Reference: Yes
ET_UNIT_ISO - ISO Units of Measure
Data type: FRE_UNIT_ISO_TTYOptional: No
Call by Reference: Yes
ET_LANG_ISO - ISO Language Keys
Data type: FRE_LANG_ISO_TTYOptional: No
Call by Reference: Yes
ET_MSG - FRE CON R/3 User Interface Message Structure
Data type: FRE_UI_MSG_TTYOptional: No
Call by Reference: Yes
EXCEPTIONS details
NO_OBJECTS_FOUND -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for FRE_RELEV_PROFILES_SELECT 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_et_rdpr | TYPE FRE_RDPR_TTY, " | |||
| lv_ip_rpr_only | TYPE XFELD, " ' ' | |||
| lv_no_objects_found | TYPE XFELD, " | |||
| lv_et_rdtx | TYPE FRE_RDTX_TTY, " | |||
| lv_it_rdpr | TYPE FRE_RDPR_TTY, " | |||
| lv_et_tw06s | TYPE FRE_TW06S_TTY, " | |||
| lv_ir_rpr_range | TYPE FRE_RANGE_RTTY, " | |||
| lv_et_unit_iso | TYPE FRE_UNIT_ISO_TTY, " | |||
| lv_ir_rru_range | TYPE FRE_RANGE_RTTY, " | |||
| lv_et_lang_iso | TYPE FRE_LANG_ISO_TTY, " | |||
| lv_et_msg | TYPE FRE_UI_MSG_TTY. " |
|   CALL FUNCTION 'FRE_RELEV_PROFILES_SELECT' "Selection of F&R relev.Rounding Profiles & Rules |
| EXPORTING | ||
| IP_RPR_ONLY | = lv_ip_rpr_only | |
| IT_RDPR | = lv_it_rdpr | |
| IR_RPR_RANGE | = lv_ir_rpr_range | |
| IR_RRU_RANGE | = lv_ir_rru_range | |
| IMPORTING | ||
| ET_RDPR | = lv_et_rdpr | |
| ET_RDTX | = lv_et_rdtx | |
| ET_TW06S | = lv_et_tw06s | |
| ET_UNIT_ISO | = lv_et_unit_iso | |
| ET_LANG_ISO | = lv_et_lang_iso | |
| ET_MSG | = lv_et_msg | |
| EXCEPTIONS | ||
| NO_OBJECTS_FOUND = 1 | ||
| . " FRE_RELEV_PROFILES_SELECT | ||
ABAP code using 7.40 inline data declarations to call FM FRE_RELEV_PROFILES_SELECT
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.| DATA(ld_ip_rpr_only) | = ' '. | |||
Search for further information about these or an SAP related objects