SAP ALM_LIST_CLEAR_MEMORY_EA Function Module for ALM: Deletion of the Global Memory









ALM_LIST_CLEAR_MEMORY_EA is a standard alm list clear memory ea SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for ALM: Deletion of the Global Memory 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 alm list clear memory ea FM, simply by entering the name ALM_LIST_CLEAR_MEMORY_EA into the relevant SAP transaction such as SE37 or SE38.

Function Group: RMG3_C
Program Name: SAPLRMG3_C
Main Program: SAPLRMG3_C
Appliation area: F
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ALM_LIST_CLEAR_MEMORY_EA 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 'ALM_LIST_CLEAR_MEMORY_EA'"ALM: Deletion of the Global Memory
EXPORTING
* I_G_JBRGAPPARAMETER = '' "
* I_GIS_CONTROLS = '' "
* I_GIS_SETTINGS = '' "
* I_GIT_JBRREPGAP = '' "
* I_GIT_JBRREPGAP_SIM = '' "
* I_GIT_JBRDATE = '' "
* I_GIT_JBRSZTAB = '' "
* I_GIT_JBRPHBAUM = '' "
* I_GIT_JBRNAMEDAT = '' "
.



IMPORTING Parameters details for ALM_LIST_CLEAR_MEMORY_EA

I_G_JBRGAPPARAMETER -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIS_CONTROLS -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIS_SETTINGS -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIT_JBRREPGAP -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIT_JBRREPGAP_SIM -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIT_JBRDATE -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIT_JBRSZTAB -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIT_JBRPHBAUM -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_GIT_JBRNAMEDAT -

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ALM_LIST_CLEAR_MEMORY_EA 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_i_g_jbrgapparameter  TYPE C, "   ''
lv_i_gis_controls  TYPE C, "   ''
lv_i_gis_settings  TYPE C, "   ''
lv_i_git_jbrrepgap  TYPE C, "   ''
lv_i_git_jbrrepgap_sim  TYPE C, "   ''
lv_i_git_jbrdate  TYPE C, "   ''
lv_i_git_jbrsztab  TYPE C, "   ''
lv_i_git_jbrphbaum  TYPE C, "   ''
lv_i_git_jbrnamedat  TYPE C. "   ''

  CALL FUNCTION 'ALM_LIST_CLEAR_MEMORY_EA'  "ALM: Deletion of the Global Memory
    EXPORTING
         I_G_JBRGAPPARAMETER = lv_i_g_jbrgapparameter
         I_GIS_CONTROLS = lv_i_gis_controls
         I_GIS_SETTINGS = lv_i_gis_settings
         I_GIT_JBRREPGAP = lv_i_git_jbrrepgap
         I_GIT_JBRREPGAP_SIM = lv_i_git_jbrrepgap_sim
         I_GIT_JBRDATE = lv_i_git_jbrdate
         I_GIT_JBRSZTAB = lv_i_git_jbrsztab
         I_GIT_JBRPHBAUM = lv_i_git_jbrphbaum
         I_GIT_JBRNAMEDAT = lv_i_git_jbrnamedat
. " ALM_LIST_CLEAR_MEMORY_EA




ABAP code using 7.40 inline data declarations to call FM ALM_LIST_CLEAR_MEMORY_EA

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_i_g_jbrgapparameter) = ''.
 
DATA(ld_i_gis_controls) = ''.
 
DATA(ld_i_gis_settings) = ''.
 
DATA(ld_i_git_jbrrepgap) = ''.
 
DATA(ld_i_git_jbrrepgap_sim) = ''.
 
DATA(ld_i_git_jbrdate) = ''.
 
DATA(ld_i_git_jbrsztab) = ''.
 
DATA(ld_i_git_jbrphbaum) = ''.
 
DATA(ld_i_git_jbrnamedat) = ''.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!