SAP RSWAD_TRANSFORM_DATA_GET Function Module for BEx WAD Migration / Deployment transformation information









RSWAD_TRANSFORM_DATA_GET is a standard rswad transform data 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 BEx WAD Migration / Deployment transformation information 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 rswad transform data get FM, simply by entering the name RSWAD_TRANSFORM_DATA_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: RSWAD
Program Name: SAPLRSWAD
Main Program: SAPLRSWAD
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function RSWAD_TRANSFORM_DATA_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 'RSWAD_TRANSFORM_DATA_GET'"BEx WAD Migration / Deployment transformation information
EXPORTING
* I_TRANSFORMTYPE = 'MIG' "BW Web Template Item data classification
* I_COMPLETED = "Already merged
* I_TRANSFORMNAME = "WAD Specific Mime Repository Transformation Name

IMPORTING
E_PATTERN = "A pattern ( if existing)
E_DATA8 = "
E_DATA9 = "
E_SUBRC = "
E_MAX_MESSAGE_TYPE = "
E_DATA0 = "XSLT part 0
E_DATA1 = "XSLT part 1
E_DATA2 = "
E_DATA3 = "
E_DATA4 = "
E_DATA5 = "
E_DATA6 = "
E_DATA7 = "

TABLES
* E_T_MESSAGE = "
* I_T_STATISTIC_INFO = "OLAP Statistik: Massen Insert von Event Daten
.



IMPORTING Parameters details for RSWAD_TRANSFORM_DATA_GET

I_TRANSFORMTYPE - BW Web Template Item data classification

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

I_COMPLETED - Already merged

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

I_TRANSFORMNAME - WAD Specific Mime Repository Transformation Name

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

EXPORTING Parameters details for RSWAD_TRANSFORM_DATA_GET

E_PATTERN - A pattern ( if existing)

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

E_DATA8 -

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

E_DATA9 -

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

E_SUBRC -

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

E_MAX_MESSAGE_TYPE -

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

E_DATA0 - XSLT part 0

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

E_DATA1 - XSLT part 1

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

E_DATA2 -

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

E_DATA3 -

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

E_DATA4 -

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

E_DATA5 -

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

E_DATA6 -

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

E_DATA7 -

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

TABLES Parameters details for RSWAD_TRANSFORM_DATA_GET

E_T_MESSAGE -

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

I_T_STATISTIC_INFO - OLAP Statistik: Massen Insert von Event Daten

Data type: RSSTA_S_EVENTINPUT
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for RSWAD_TRANSFORM_DATA_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_pattern  TYPE STRING, "   
lt_e_t_message  TYPE STANDARD TABLE OF BICS_PROV_T_MESSAGE, "   
lv_i_transformtype  TYPE RSZWMDITEMDATTYPE, "   'MIG'
lv_e_data8  TYPE STRING, "   
lv_e_data9  TYPE STRING, "   
lv_e_subrc  TYPE SYSUBRC, "   
lv_e_max_message_type  TYPE SYMSGTY, "   
lv_e_data0  TYPE STRING, "   
lv_i_completed  TYPE RS_BOOL, "   
lt_i_t_statistic_info  TYPE STANDARD TABLE OF RSSTA_S_EVENTINPUT, "   
lv_e_data1  TYPE STRING, "   
lv_i_transformname  TYPE STRING, "   
lv_e_data2  TYPE STRING, "   
lv_e_data3  TYPE STRING, "   
lv_e_data4  TYPE STRING, "   
lv_e_data5  TYPE STRING, "   
lv_e_data6  TYPE STRING, "   
lv_e_data7  TYPE STRING. "   

  CALL FUNCTION 'RSWAD_TRANSFORM_DATA_GET'  "BEx WAD Migration / Deployment transformation information
    EXPORTING
         I_TRANSFORMTYPE = lv_i_transformtype
         I_COMPLETED = lv_i_completed
         I_TRANSFORMNAME = lv_i_transformname
    IMPORTING
         E_PATTERN = lv_e_pattern
         E_DATA8 = lv_e_data8
         E_DATA9 = lv_e_data9
         E_SUBRC = lv_e_subrc
         E_MAX_MESSAGE_TYPE = lv_e_max_message_type
         E_DATA0 = lv_e_data0
         E_DATA1 = lv_e_data1
         E_DATA2 = lv_e_data2
         E_DATA3 = lv_e_data3
         E_DATA4 = lv_e_data4
         E_DATA5 = lv_e_data5
         E_DATA6 = lv_e_data6
         E_DATA7 = lv_e_data7
    TABLES
         E_T_MESSAGE = lt_e_t_message
         I_T_STATISTIC_INFO = lt_i_t_statistic_info
. " RSWAD_TRANSFORM_DATA_GET




ABAP code using 7.40 inline data declarations to call FM RSWAD_TRANSFORM_DATA_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_transformtype) = 'MIG'.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


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!