SAP RSD_CUBE_GET Function Module for Returns information about an InfoCube









RSD_CUBE_GET is a standard rsd cube get SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Returns information about an InfoCube 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 cube get FM, simply by entering the name RSD_CUBE_GET into the relevant SAP transaction such as SE37 or SE38.

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



Function RSD_CUBE_GET 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_CUBE_GET'"Returns information about an InfoCube
EXPORTING
I_INFOCUBE = "Name of the InfoCube
* I_OBJVERS = RS_C_OBJVERS-ACTIVE "Version
* I_INCL_APPEND = RS_C_TRUE "With Appends
* I_BYPASS_BUFFER = RS_C_FALSE "Bypass and Refresh Buffer (Indicator)
* I_WITH_ATR_NAV = RS_C_FALSE "Navigation attributes to be looked up (flag)

IMPORTING
E_S_CUBE = "InfoCube (View bar)
E_T_ICHA_PRO = "InfoCube-specific characteristic properties
E_T_IKYF_PRO = "InfoCube-specific key figure properties
E_T_IPRO_IOBJT = "Texts for InfoObjects in InfoProvider
E_T_IPRO_IOBJTT = "Texts fpr IObj in IPro (alle languages)
E_T_IC_VAL_IOBJ = "InfoObjects in the validity table of the Cube
E_T_CUBE_PART = "Used InfoCubes in a Multicube
E_T_CUBE_PART_IOBJ = "InfoObjects of used Cubes
E_T_MULTI_IOBJ = "Relation: Iobj in MultiCube - Iobj in Involved Cube
E_S_TBHD = "Table header of the fact table
E_TBHD_NOT_FOUND = "table header not found (Flag)
E_T_CUBET = "Texts for InfoCube in all languages
E_T_CUBE_IOBJ = "InfoObjects of InfoCubes
E_T_CUBE_DIME = "Dimensions of the InfoCubes
E_T_DIME = "Dimensions
E_T_DIMET = "Dimension Texts
E_T_DIME_IOBJ = "InfoObjects of Dimensions

EXCEPTIONS
INFOCUBE_NOT_FOUND = 1 ILLEGAL_INPUT = 2
.



IMPORTING Parameters details for RSD_CUBE_GET

I_INFOCUBE - Name of the InfoCube

Data type: RSD_INFOCUBE
Optional: No
Call by Reference: No ( called with pass by value option)

I_OBJVERS - Version

Data type: RS_OBJVERS
Default: RS_C_OBJVERS-ACTIVE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_INCL_APPEND - With Appends

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

I_BYPASS_BUFFER - Bypass and Refresh Buffer (Indicator)

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

I_WITH_ATR_NAV - Navigation attributes to be looked up (flag)

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

EXPORTING Parameters details for RSD_CUBE_GET

E_S_CUBE - InfoCube (View bar)

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

E_T_ICHA_PRO - InfoCube-specific characteristic properties

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

E_T_IKYF_PRO - InfoCube-specific key figure properties

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

E_T_IPRO_IOBJT - Texts for InfoObjects in InfoProvider

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

E_T_IPRO_IOBJTT - Texts fpr IObj in IPro (alle languages)

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

E_T_IC_VAL_IOBJ - InfoObjects in the validity table of the Cube

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

E_T_CUBE_PART - Used InfoCubes in a Multicube

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

E_T_CUBE_PART_IOBJ - InfoObjects of used Cubes

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

E_T_MULTI_IOBJ - Relation: Iobj in MultiCube - Iobj in Involved Cube

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

E_S_TBHD - Table header of the fact table

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

E_TBHD_NOT_FOUND - table header not found (Flag)

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

E_T_CUBET - Texts for InfoCube in all languages

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

E_T_CUBE_IOBJ - InfoObjects of InfoCubes

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

E_T_CUBE_DIME - Dimensions of the InfoCubes

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

E_T_DIME - Dimensions

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

E_T_DIMET - Dimension Texts

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

E_T_DIME_IOBJ - InfoObjects of Dimensions

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

EXCEPTIONS details

INFOCUBE_NOT_FOUND - InfoCube not found

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ILLEGAL_INPUT - Invalid Entry

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for RSD_CUBE_GET 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_e_s_cube  TYPE RSD_S_CUBE, "   
lv_i_infocube  TYPE RSD_INFOCUBE, "   
lv_infocube_not_found  TYPE RSD_INFOCUBE, "   
lv_e_t_icha_pro  TYPE RSD_T_ICHA_PRO, "   
lv_e_t_ikyf_pro  TYPE RSD_T_IKYF_PRO, "   
lv_e_t_ipro_iobjt  TYPE RSD_T_IPRO_IOBJT, "   
lv_e_t_ipro_iobjtt  TYPE RSD_T_IPRO_IOBJT, "   
lv_e_t_ic_val_iobj  TYPE RSD_T_IC_VAL_IOBJ, "   
lv_e_t_cube_part  TYPE RSD_T_CUBE_PART, "   
lv_e_t_cube_part_iobj  TYPE RSD_T_CUBE_IOBJ, "   
lv_e_t_multi_iobj  TYPE RSD_T_MULTI_IOBJ, "   
lv_e_s_tbhd  TYPE RSD_S_TBHD, "   
lv_i_objvers  TYPE RS_OBJVERS, "   RS_C_OBJVERS-ACTIVE
lv_illegal_input  TYPE RS_OBJVERS, "   
lv_i_incl_append  TYPE RS_BOOL, "   RS_C_TRUE
lv_e_tbhd_not_found  TYPE RS_BOOL, "   
lv_e_t_cubet  TYPE RSD_T_CUBET, "   
lv_i_bypass_buffer  TYPE RS_BOOL, "   RS_C_FALSE
lv_e_t_cube_iobj  TYPE RSD_T_CUBE_IOBJ, "   
lv_i_with_atr_nav  TYPE RS_BOOL, "   RS_C_FALSE
lv_e_t_cube_dime  TYPE RSD_T_CUBE_DIME, "   
lv_e_t_dime  TYPE RSD_T_DIME, "   
lv_e_t_dimet  TYPE RSD_T_DIMET, "   
lv_e_t_dime_iobj  TYPE RSD_T_DIME_IOBJ. "   

  CALL FUNCTION 'RSD_CUBE_GET'  "Returns information about an InfoCube
    EXPORTING
         I_INFOCUBE = lv_i_infocube
         I_OBJVERS = lv_i_objvers
         I_INCL_APPEND = lv_i_incl_append
         I_BYPASS_BUFFER = lv_i_bypass_buffer
         I_WITH_ATR_NAV = lv_i_with_atr_nav
    IMPORTING
         E_S_CUBE = lv_e_s_cube
         E_T_ICHA_PRO = lv_e_t_icha_pro
         E_T_IKYF_PRO = lv_e_t_ikyf_pro
         E_T_IPRO_IOBJT = lv_e_t_ipro_iobjt
         E_T_IPRO_IOBJTT = lv_e_t_ipro_iobjtt
         E_T_IC_VAL_IOBJ = lv_e_t_ic_val_iobj
         E_T_CUBE_PART = lv_e_t_cube_part
         E_T_CUBE_PART_IOBJ = lv_e_t_cube_part_iobj
         E_T_MULTI_IOBJ = lv_e_t_multi_iobj
         E_S_TBHD = lv_e_s_tbhd
         E_TBHD_NOT_FOUND = lv_e_tbhd_not_found
         E_T_CUBET = lv_e_t_cubet
         E_T_CUBE_IOBJ = lv_e_t_cube_iobj
         E_T_CUBE_DIME = lv_e_t_cube_dime
         E_T_DIME = lv_e_t_dime
         E_T_DIMET = lv_e_t_dimet
         E_T_DIME_IOBJ = lv_e_t_dime_iobj
    EXCEPTIONS
        INFOCUBE_NOT_FOUND = 1
        ILLEGAL_INPUT = 2
. " RSD_CUBE_GET




ABAP code using 7.40 inline data declarations to call FM RSD_CUBE_GET

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_objvers) = RS_C_OBJVERS-ACTIVE.
 
 
DATA(ld_i_incl_append) = RS_C_TRUE.
 
 
 
DATA(ld_i_bypass_buffer) = RS_C_FALSE.
 
 
DATA(ld_i_with_atr_nav) = 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!