SAP RM_GAP_GET_SAVED_RESULTS Function Module for Get Saved Results Objects in Gap Analysis
RM_GAP_GET_SAVED_RESULTS is a standard rm gap get saved results SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Get Saved Results Objects in Gap Analysis 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 rm gap get saved results FM, simply by entering the name RM_GAP_GET_SAVED_RESULTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: RMG12
Program Name: SAPLRMG12
Main Program: SAPLRMG12
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RM_GAP_GET_SAVED_RESULTS 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 'RM_GAP_GET_SAVED_RESULTS'"Get Saved Results Objects in Gap Analysis.
CHANGING
C_JBRGAPPARAMETER = "
TABLES
IT_JBRSAVEGAP = "
* IT_JBRBPAMORTRES = "
I_JBRSZTAB = "
* G_ERROR = "
CHANGING Parameters details for RM_GAP_GET_SAVED_RESULTS
C_JBRGAPPARAMETER -
Data type: JBRGAPPARAMETEROptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for RM_GAP_GET_SAVED_RESULTS
IT_JBRSAVEGAP -
Data type: JBRSAVEGAPOptional: No
Call by Reference: No ( called with pass by value option)
IT_JBRBPAMORTRES -
Data type: JBRBPAMORTRESOptional: Yes
Call by Reference: No ( called with pass by value option)
I_JBRSZTAB -
Data type: JBRSZTABOptional: No
Call by Reference: No ( called with pass by value option)
G_ERROR -
Data type: TVEH_ERROR_ITAB_TABOptional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RM_GAP_GET_SAVED_RESULTS 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: | ||||
| lt_it_jbrsavegap | TYPE STANDARD TABLE OF JBRSAVEGAP, " | |||
| lv_c_jbrgapparameter | TYPE JBRGAPPARAMETER, " | |||
| lt_it_jbrbpamortres | TYPE STANDARD TABLE OF JBRBPAMORTRES, " | |||
| lt_i_jbrsztab | TYPE STANDARD TABLE OF JBRSZTAB, " | |||
| lt_g_error | TYPE STANDARD TABLE OF TVEH_ERROR_ITAB_TAB. " |
|   CALL FUNCTION 'RM_GAP_GET_SAVED_RESULTS' "Get Saved Results Objects in Gap Analysis |
| CHANGING | ||
| C_JBRGAPPARAMETER | = lv_c_jbrgapparameter | |
| TABLES | ||
| IT_JBRSAVEGAP | = lt_it_jbrsavegap | |
| IT_JBRBPAMORTRES | = lt_it_jbrbpamortres | |
| I_JBRSZTAB | = lt_i_jbrsztab | |
| G_ERROR | = lt_g_error | |
| . " RM_GAP_GET_SAVED_RESULTS | ||
ABAP code using 7.40 inline data declarations to call FM RM_GAP_GET_SAVED_RESULTS
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