SAP REIT_GUI_ORCALC_APPL Function Module for
REIT_GUI_ORCALC_APPL is a standard reit gui orcalc appl 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 reit gui orcalc appl FM, simply by entering the name REIT_GUI_ORCALC_APPL into the relevant SAP transaction such as SE37 or SE38.
Function Group: REIT_GUI_ORCALC_APPL
Program Name: SAPLREIT_GUI_ORCALC_APPL
Main Program: SAPLREIT_GUI_ORCALC_APPL
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function REIT_GUI_ORCALC_APPL 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 'REIT_GUI_ORCALC_APPL'".
EXPORTING
* IO_CALC = "Option Rate Determination Run
* ITO_CALC = "Option Rate Determination
* ITX_CALC_RESULT = "Table (Deep) with Result of Option Rate Determination
* IF_SAVE_BUTTON_SHOW = 'X' "
* IF_OBJECT_ERROR = "
* ID_ORCALEXTID = "Ext. ID of an Option Rate Determination Run
* IF_USE_RFW = ABAP_FALSE "
IMPORTING
EF_SAVE_REQUESTED = "
IMPORTING Parameters details for REIT_GUI_ORCALC_APPL
IO_CALC - Option Rate Determination Run
Data type: IF_REIT_OPTIONRATE_CALCULATIONOptional: Yes
Call by Reference: Yes
ITO_CALC - Option Rate Determination
Data type: RE_T_IF_REIT_OPTIONRATE_CALCOptional: Yes
Call by Reference: Yes
ITX_CALC_RESULT - Table (Deep) with Result of Option Rate Determination
Data type: RE_T_REITORXCALCRESULTOptional: Yes
Call by Reference: Yes
IF_SAVE_BUTTON_SHOW -
Data type: ABAP_BOOLDefault: 'X'
Optional: Yes
Call by Reference: Yes
IF_OBJECT_ERROR -
Data type: ABAP_BOOLOptional: Yes
Call by Reference: Yes
ID_ORCALEXTID - Ext. ID of an Option Rate Determination Run
Data type: REITORCALCEXTIDOptional: Yes
Call by Reference: Yes
IF_USE_RFW -
Data type: ABAP_BOOLDefault: ABAP_FALSE
Optional: Yes
Call by Reference: Yes
EXPORTING Parameters details for REIT_GUI_ORCALC_APPL
EF_SAVE_REQUESTED -
Data type: ABAP_BOOLOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for REIT_GUI_ORCALC_APPL 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_io_calc | TYPE IF_REIT_OPTIONRATE_CALCULATION, " | |||
| lv_ef_save_requested | TYPE ABAP_BOOL, " | |||
| lv_ito_calc | TYPE RE_T_IF_REIT_OPTIONRATE_CALC, " | |||
| lv_itx_calc_result | TYPE RE_T_REITORXCALCRESULT, " | |||
| lv_if_save_button_show | TYPE ABAP_BOOL, " 'X' | |||
| lv_if_object_error | TYPE ABAP_BOOL, " | |||
| lv_id_orcalextid | TYPE REITORCALCEXTID, " | |||
| lv_if_use_rfw | TYPE ABAP_BOOL. " ABAP_FALSE |
|   CALL FUNCTION 'REIT_GUI_ORCALC_APPL' " |
| EXPORTING | ||
| IO_CALC | = lv_io_calc | |
| ITO_CALC | = lv_ito_calc | |
| ITX_CALC_RESULT | = lv_itx_calc_result | |
| IF_SAVE_BUTTON_SHOW | = lv_if_save_button_show | |
| IF_OBJECT_ERROR | = lv_if_object_error | |
| ID_ORCALEXTID | = lv_id_orcalextid | |
| IF_USE_RFW | = lv_if_use_rfw | |
| IMPORTING | ||
| EF_SAVE_REQUESTED | = lv_ef_save_requested | |
| . " REIT_GUI_ORCALC_APPL | ||
ABAP code using 7.40 inline data declarations to call FM REIT_GUI_ORCALC_APPL
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_if_save_button_show) | = 'X'. | |||
| DATA(ld_if_use_rfw) | = ABAP_FALSE. | |||
Search for further information about these or an SAP related objects