SAP RSDG_CUBE_COPY_TO_VERSION Function Module for Copies one InfoCube to another version
RSDG_CUBE_COPY_TO_VERSION is a standard rsdg cube copy to version SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Copies one InfoCube to another version 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 rsdg cube copy to version FM, simply by entering the name RSDG_CUBE_COPY_TO_VERSION into the relevant SAP transaction such as SE37 or SE38.
Function Group: RSDG_CUBE_DB_WRITE
Program Name: SAPLRSDG_CUBE_DB_WRITE
Main Program: SAPLRSDG_CUBE_DB_WRITE
Appliation area: B
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function RSDG_CUBE_COPY_TO_VERSION 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 'RSDG_CUBE_COPY_TO_VERSION'"Copies one InfoCube to another version.
EXPORTING
I_INFOCUBE = "InfoCube
I_SOURCE_OBJVERS = "Version to be read
I_TARGET_OBJVERS = "Target Version
* I_WRITE_PROTOCOL = RS_C_TRUE "Write protocol (if successful)
IMPORTING
E_SUBRC = "ReturnCode <> 0: Copy failed
EXCEPTIONS
INFOCUBE_NOT_FOUND = 1 TARGET_ONLY_M = 2
IMPORTING Parameters details for RSDG_CUBE_COPY_TO_VERSION
I_INFOCUBE - InfoCube
Data type: RSD_INFOCUBEOptional: No
Call by Reference: No ( called with pass by value option)
I_SOURCE_OBJVERS - Version to be read
Data type: RS_OBJVERSOptional: No
Call by Reference: No ( called with pass by value option)
I_TARGET_OBJVERS - Target Version
Data type: RS_OBJVERSOptional: No
Call by Reference: No ( called with pass by value option)
I_WRITE_PROTOCOL - Write protocol (if successful)
Data type: RS_BOOLDefault: RS_C_TRUE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for RSDG_CUBE_COPY_TO_VERSION
E_SUBRC - ReturnCode <> 0: Copy failed
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INFOCUBE_NOT_FOUND - nfoCube could not be read
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TARGET_ONLY_M - Target version (currently) must be 'M'
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for RSDG_CUBE_COPY_TO_VERSION 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_subrc | TYPE SY-SUBRC, " | |||
| lv_i_infocube | TYPE RSD_INFOCUBE, " | |||
| lv_infocube_not_found | TYPE RSD_INFOCUBE, " | |||
| lv_target_only_m | TYPE RSD_INFOCUBE, " | |||
| lv_i_source_objvers | TYPE RS_OBJVERS, " | |||
| lv_i_target_objvers | TYPE RS_OBJVERS, " | |||
| lv_i_write_protocol | TYPE RS_BOOL. " RS_C_TRUE |
|   CALL FUNCTION 'RSDG_CUBE_COPY_TO_VERSION' "Copies one InfoCube to another version |
| EXPORTING | ||
| I_INFOCUBE | = lv_i_infocube | |
| I_SOURCE_OBJVERS | = lv_i_source_objvers | |
| I_TARGET_OBJVERS | = lv_i_target_objvers | |
| I_WRITE_PROTOCOL | = lv_i_write_protocol | |
| IMPORTING | ||
| E_SUBRC | = lv_e_subrc | |
| EXCEPTIONS | ||
| INFOCUBE_NOT_FOUND = 1 | ||
| TARGET_ONLY_M = 2 | ||
| . " RSDG_CUBE_COPY_TO_VERSION | ||
ABAP code using 7.40 inline data declarations to call FM RSDG_CUBE_COPY_TO_VERSION
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.| "SELECT single SUBRC FROM SY INTO @DATA(ld_e_subrc). | ||||
| DATA(ld_i_write_protocol) | = RS_C_TRUE. | |||
Search for further information about these or an SAP related objects