SAP RSD_BUFFER_REFRESH Function Module for Deletion of Buffer Contents









RSD_BUFFER_REFRESH is a standard rsd buffer refresh SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Deletion of Buffer Contents 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 rsd buffer refresh FM, simply by entering the name RSD_BUFFER_REFRESH into the relevant SAP transaction such as SE37 or SE38.

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



Function RSD_BUFFER_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 'RSD_BUFFER_REFRESH'"Deletion of Buffer Contents
EXPORTING
* I_INFOCUBE = ' ' "InfoCube (That Was Edited or Deleted)
* I_AREA_REFRESH = RS_C_FALSE "Delete Buffer with InfoAreas (Indicator)
* I_IOBC_REFRESH = RS_C_FALSE "Delete Buffer with InfoObject Catalog (Indicator)
* I_DOMA_REFRESH = RS_C_FALSE "Delete Buffer with Domains (Indicator)
* I_DTEL_REFRESH = RS_C_FALSE "Delete Buffer with Data Elements (Indicator)
* I_TBHD_REFRESH = RS_C_FALSE "Delete Buffer with Table Fields (Indicator)
* I_TBFD_REFRESH = RS_C_FALSE "Delete Buffer with Table Headers (Indicator)
* I_INFOOBJCAT = ' ' "InfoObject Catalog
* I_COB_PRO_REFRESH = RS_C_FALSE "Delete Buffer with InfoCube Objects (Indicator)
* I_IOBJ_REFRESH = RS_C_FALSE "Delete Buffer with InfoObjects (Indicator)
* I_IOBJ_CMP_REFRESH = RS_C_FALSE "Delete Buffer with Compoundings (Indicator)
* I_ATR_REFRESH = RS_C_FALSE "Delete Buffer with Master Data Attributes (Indicator)
* I_ATR_NAV_REFRESH = RS_C_FALSE "Delete Buffer with Navigation Attributes (Indicator)
* I_CUBE_REFRESH = RS_C_FALSE "Delete Buffer with InfoCubes (Indicator)
* I_DIME_REFRESH = RS_C_FALSE "Delete Buffer with Dimensions (Indicator)
.



IMPORTING Parameters details for RSD_BUFFER_REFRESH

I_INFOCUBE - InfoCube (That Was Edited or Deleted)

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

I_AREA_REFRESH - Delete Buffer with InfoAreas (Indicator)

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

I_IOBC_REFRESH - Delete Buffer with InfoObject Catalog (Indicator)

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

I_DOMA_REFRESH - Delete Buffer with Domains (Indicator)

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

I_DTEL_REFRESH - Delete Buffer with Data Elements (Indicator)

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

I_TBHD_REFRESH - Delete Buffer with Table Fields (Indicator)

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

I_TBFD_REFRESH - Delete Buffer with Table Headers (Indicator)

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

I_INFOOBJCAT - InfoObject Catalog

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

I_COB_PRO_REFRESH - Delete Buffer with InfoCube Objects (Indicator)

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

I_IOBJ_REFRESH - Delete Buffer with InfoObjects (Indicator)

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

I_IOBJ_CMP_REFRESH - Delete Buffer with Compoundings (Indicator)

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

I_ATR_REFRESH - Delete Buffer with Master Data Attributes (Indicator)

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

I_ATR_NAV_REFRESH - Delete Buffer with Navigation Attributes (Indicator)

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

I_CUBE_REFRESH - Delete Buffer with InfoCubes (Indicator)

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

I_DIME_REFRESH - Delete Buffer with Dimensions (Indicator)

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

Copy and paste ABAP code example for RSD_BUFFER_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_i_infocube  TYPE RSINFOCUBE, "   SPACE
lv_i_area_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_iobc_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_doma_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_dtel_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_tbhd_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_tbfd_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_infoobjcat  TYPE RSINFOOBJCAT, "   SPACE
lv_i_cob_pro_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_iobj_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_iobj_cmp_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_atr_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_atr_nav_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_cube_refresh  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_dime_refresh  TYPE RS_BOOL. "   RS_C_FALSE

  CALL FUNCTION 'RSD_BUFFER_REFRESH'  "Deletion of Buffer Contents
    EXPORTING
         I_INFOCUBE = lv_i_infocube
         I_AREA_REFRESH = lv_i_area_refresh
         I_IOBC_REFRESH = lv_i_iobc_refresh
         I_DOMA_REFRESH = lv_i_doma_refresh
         I_DTEL_REFRESH = lv_i_dtel_refresh
         I_TBHD_REFRESH = lv_i_tbhd_refresh
         I_TBFD_REFRESH = lv_i_tbfd_refresh
         I_INFOOBJCAT = lv_i_infoobjcat
         I_COB_PRO_REFRESH = lv_i_cob_pro_refresh
         I_IOBJ_REFRESH = lv_i_iobj_refresh
         I_IOBJ_CMP_REFRESH = lv_i_iobj_cmp_refresh
         I_ATR_REFRESH = lv_i_atr_refresh
         I_ATR_NAV_REFRESH = lv_i_atr_nav_refresh
         I_CUBE_REFRESH = lv_i_cube_refresh
         I_DIME_REFRESH = lv_i_dime_refresh
. " RSD_BUFFER_REFRESH




ABAP code using 7.40 inline data declarations to call FM RSD_BUFFER_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_i_infocube) = ' '.
 
DATA(ld_i_area_refresh) = RS_C_FALSE.
 
DATA(ld_i_iobc_refresh) = RS_C_FALSE.
 
DATA(ld_i_doma_refresh) = RS_C_FALSE.
 
DATA(ld_i_dtel_refresh) = RS_C_FALSE.
 
DATA(ld_i_tbhd_refresh) = RS_C_FALSE.
 
DATA(ld_i_tbfd_refresh) = RS_C_FALSE.
 
DATA(ld_i_infoobjcat) = ' '.
 
DATA(ld_i_cob_pro_refresh) = RS_C_FALSE.
 
DATA(ld_i_iobj_refresh) = RS_C_FALSE.
 
DATA(ld_i_iobj_cmp_refresh) = RS_C_FALSE.
 
DATA(ld_i_atr_refresh) = RS_C_FALSE.
 
DATA(ld_i_atr_nav_refresh) = RS_C_FALSE.
 
DATA(ld_i_cube_refresh) = RS_C_FALSE.
 
DATA(ld_i_dime_refresh) = RS_C_FALSE.
 


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!