SAP SXI_AC_CACHE_REFRESH Function Module for









SXI_AC_CACHE_REFRESH is a standard sxi ac cache refresh 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 sxi ac cache refresh FM, simply by entering the name SXI_AC_CACHE_REFRESH into the relevant SAP transaction such as SE37 or SE38.

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



Function SXI_AC_CACHE_REFRESH 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 'SXI_AC_CACHE_REFRESH'"
EXPORTING
* IM_REFRESH_MODE = 'X' "
IM_REFRESH_OBJECTS = "
IM_DELETE_OBJECTS = "
* IM_DEBUG_MODE = ' ' "

IMPORTING
ET_AC_MAPPING = "
EXCEPTION_TAB = "

EXCEPTIONS
INTERNAL_ERROR = 1
.



IMPORTING Parameters details for SXI_AC_CACHE_REFRESH

IM_REFRESH_MODE -

Data type: STRING
Default: 'X'
Optional: No
Call by Reference: Yes

IM_REFRESH_OBJECTS -

Data type: SWF_AC_CACHE_CAS_TAB
Optional: No
Call by Reference: Yes

IM_DELETE_OBJECTS -

Data type: SAIOBJ_KEYTAB
Optional: No
Call by Reference: Yes

IM_DEBUG_MODE -

Data type: FLAG
Default: ' '
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for SXI_AC_CACHE_REFRESH

ET_AC_MAPPING -

Data type: SWF_AC_CACHE_TAB
Optional: No
Call by Reference: Yes

EXCEPTION_TAB -

Data type: SXI_CX_CACHE_MULTIPLE_TAB
Optional: No
Call by Reference: Yes

EXCEPTIONS details

INTERNAL_ERROR -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for SXI_AC_CACHE_REFRESH 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_ac_mapping  TYPE SWF_AC_CACHE_TAB, "   
lv_internal_error  TYPE SWF_AC_CACHE_TAB, "   
lv_im_refresh_mode  TYPE STRING, "   'X'
lv_exception_tab  TYPE SXI_CX_CACHE_MULTIPLE_TAB, "   
lv_im_refresh_objects  TYPE SWF_AC_CACHE_CAS_TAB, "   
lv_im_delete_objects  TYPE SAIOBJ_KEYTAB, "   
lv_im_debug_mode  TYPE FLAG. "   ' '

  CALL FUNCTION 'SXI_AC_CACHE_REFRESH'  "
    EXPORTING
         IM_REFRESH_MODE = lv_im_refresh_mode
         IM_REFRESH_OBJECTS = lv_im_refresh_objects
         IM_DELETE_OBJECTS = lv_im_delete_objects
         IM_DEBUG_MODE = lv_im_debug_mode
    IMPORTING
         ET_AC_MAPPING = lv_et_ac_mapping
         EXCEPTION_TAB = lv_exception_tab
    EXCEPTIONS
        INTERNAL_ERROR = 1
. " SXI_AC_CACHE_REFRESH




ABAP code using 7.40 inline data declarations to call FM SXI_AC_CACHE_REFRESH

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_im_refresh_mode) = 'X'.
 
 
 
 
DATA(ld_im_debug_mode) = ' '.
 


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!