SAP RSD_CUBE_F4 Function Module for F4 help InfoCubes / MultiProvider









RSD_CUBE_F4 is a standard rsd cube f4 SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for F4 help InfoCubes / MultiProvider 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 f4 FM, simply by entering the name RSD_CUBE_F4 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_F4 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_F4'"F4 help InfoCubes / MultiProvider
EXPORTING
* I_OBJVERS = RS_C_OBJVERS-ACTIVE "Version
* I_CUBETYPE = 'B' "Type of InfoCube ('B', 'M', 'R', 'A', '%')
* I_T_CUBETYPE = "List of Cube types
* I_T_CUBESUBTYPE = "List of CubeSubtypes
* I_INCL_OWNED_BY = "Included OWNED BY Level (See N_C_OWNED_BY)
* I_DS_SUITABLE_ONLY = RS_C_FALSE "only Prov., whose DS can be used
* I_FILTER_PARTITION = '*' "* = All '' = no, 'X' with partitioning
* I_TITLE = ' ' "Dialog Box Title
* I_DISPLAY = RS_C_FALSE "

IMPORTING
E_TXTLG = "Text (long)
E_TXTSH = "Text (short)
E_CUBETYPE = "

CHANGING
* C_INFOCUBE = RS_C_' '30 "InfoCube

EXCEPTIONS
ILLEGAL_INPUT = 1
.



IMPORTING Parameters details for RSD_CUBE_F4

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_CUBETYPE - Type of InfoCube ('B', 'M', 'R', 'A', '%')

Data type: RSD_S_CUBE-CUBETYPE
Default: 'B'
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_T_CUBETYPE - List of Cube types

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

I_T_CUBESUBTYPE - List of CubeSubtypes

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

I_INCL_OWNED_BY - Included OWNED BY Level (See N_C_OWNED_BY)

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

I_DS_SUITABLE_ONLY - only Prov., whose DS can be used

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

I_FILTER_PARTITION - * = All '' = no, 'X' with partitioning

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

I_TITLE - Dialog Box Title

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

I_DISPLAY -

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_F4

E_TXTLG - Text (long)

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

E_TXTSH - Text (short)

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

E_CUBETYPE -

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

CHANGING Parameters details for RSD_CUBE_F4

C_INFOCUBE - InfoCube

Data type: RSD_INFOCUBE
Default: RS_C_SPACE30
Optional: Yes
Call by Reference: Yes

EXCEPTIONS details

ILLEGAL_INPUT - Invalid Status

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

Copy and paste ABAP code example for RSD_CUBE_F4 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_txtlg  TYPE RS_TXTLG, "   
lv_i_objvers  TYPE RS_OBJVERS, "   RS_C_OBJVERS-ACTIVE
lv_c_infocube  TYPE RSD_INFOCUBE, "   RS_C_SPACE30
lv_illegal_input  TYPE RSD_INFOCUBE, "   
lv_e_txtsh  TYPE RS_TXTSH, "   
lv_i_cubetype  TYPE RSD_S_CUBE-CUBETYPE, "   'B'
lv_e_cubetype  TYPE RSD_CUBETYPE, "   
lv_i_t_cubetype  TYPE RSD_T_CUBETYPE, "   
lv_i_t_cubesubtype  TYPE RSD_T_CUBESUBTYPE, "   
lv_i_incl_owned_by  TYPE RS_CHAR1, "   
lv_i_ds_suitable_only  TYPE RS_BOOL, "   RS_C_FALSE
lv_i_filter_partition  TYPE RS_CHAR1, "   '*'
lv_i_title  TYPE RS_CHAR1, "   SPACE
lv_i_display  TYPE RS_BOOL. "   RS_C_FALSE

  CALL FUNCTION 'RSD_CUBE_F4'  "F4 help InfoCubes / MultiProvider
    EXPORTING
         I_OBJVERS = lv_i_objvers
         I_CUBETYPE = lv_i_cubetype
         I_T_CUBETYPE = lv_i_t_cubetype
         I_T_CUBESUBTYPE = lv_i_t_cubesubtype
         I_INCL_OWNED_BY = lv_i_incl_owned_by
         I_DS_SUITABLE_ONLY = lv_i_ds_suitable_only
         I_FILTER_PARTITION = lv_i_filter_partition
         I_TITLE = lv_i_title
         I_DISPLAY = lv_i_display
    IMPORTING
         E_TXTLG = lv_e_txtlg
         E_TXTSH = lv_e_txtsh
         E_CUBETYPE = lv_e_cubetype
    CHANGING
         C_INFOCUBE = lv_c_infocube
    EXCEPTIONS
        ILLEGAL_INPUT = 1
. " RSD_CUBE_F4




ABAP code using 7.40 inline data declarations to call FM RSD_CUBE_F4

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_c_infocube) = RS_C_' '30.
 
 
 
"SELECT single CUBETYPE FROM RSD_S_CUBE INTO @DATA(ld_i_cubetype).
DATA(ld_i_cubetype) = 'B'.
 
 
 
 
 
DATA(ld_i_ds_suitable_only) = RS_C_FALSE.
 
DATA(ld_i_filter_partition) = '*'.
 
DATA(ld_i_title) = ' '.
 
DATA(ld_i_display) = 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!