RSDRT_INFOCUBE_DATA_MULTIPLY is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RSDRT_INFOCUBE_DATA_MULTIPLY into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
RSDRT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RSDRT_INFOCUBE_DATA_MULTIPLY' "Multiplication of existing InfoCube data
EXPORTING
i_infocube = " rsinfoprov InfoCube
* i_facttab_from = 'F' " rsdu_facttabtp Fact table for reading
* i_facttab_to = 'F' " rsdu_facttabtp Fact table for writing
* i_new_rows = 100 " i Number of new records
* i_packagesize = 50000 " i Size of internal processing packages
* i_random_seed = 0 " i Initial value of random generator (0=clock based)
* i_pdim_set_0 = RS_C_UNKNOWN " rs_bool Setting P-dimensions-IDs to 0 yes/no?
* i_debug = RS_C_FALSE " rs_bool Debug mode on/off?
IMPORTING
e_count = " i Number of actually written sets
EXCEPTIONS
ILLEGAL_INPUT = 1 " Incorrect Input Parameter
READ_ERROR = 2 " Error Reading Data
WRITE_ERROR = 3 " Write Error
. " RSDRT_INFOCUBE_DATA_MULTIPLY
The ABAP code below is a full code listing to execute function module RSDRT_INFOCUBE_DATA_MULTIPLY including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| ld_e_count | TYPE I . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_e_count | TYPE I , |
| ld_i_infocube | TYPE RSINFOPROV , |
| ld_i_facttab_from | TYPE RSDU_FACTTABTP , |
| ld_i_facttab_to | TYPE RSDU_FACTTABTP , |
| ld_i_new_rows | TYPE I , |
| ld_i_packagesize | TYPE I , |
| ld_i_random_seed | TYPE I , |
| ld_i_pdim_set_0 | TYPE RS_BOOL , |
| ld_i_debug | TYPE RS_BOOL . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RSDRT_INFOCUBE_DATA_MULTIPLY or its description.
RSDRT_INFOCUBE_DATA_MULTIPLY - Multiplication of existing InfoCube data RSDRT_INFOCUBE_DATA_COPY - Copying Data RSDRT_FOODMART_BUDGET_READ - Access to the cube BUDGET of the FOODMART scenario RSDRT_DEMO_STAT_VIP - FM for query statistic; demo only - VIP RSDRT_CUBE_SAMPLE_CREATE - Generates a data packet with random data for a cube RSDRT_APACHE_ACCESS_LOG_READ - Reading an access log of an Apache Web server