SAP RSAU_SIMULATION_SAVE_DATA Function Module for Simulation: writing data









RSAU_SIMULATION_SAVE_DATA is a standard rsau simulation save data SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Simulation: writing data 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 rsau simulation save data FM, simply by entering the name RSAU_SIMULATION_SAVE_DATA into the relevant SAP transaction such as SE37 or SE38.

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



Function RSAU_SIMULATION_SAVE_DATA 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 'RSAU_SIMULATION_SAVE_DATA'"Simulation: writing data
EXPORTING
I_RNR = "
I_SIMUL_ID = "
I_INFOCUBE = "
I_ISOURCE = "
I_LOGSYS = "
* I_TABNAME_T0 = "
* I_TABNAME_C0 = "
* I_TABNAME_V0 = "

TABLES
* C_T_T0 = "
* C_T_C0 = "
* C_T_V0 = "
* C_T_T1 = "
* C_T_C1 = "
.



IMPORTING Parameters details for RSAU_SIMULATION_SAVE_DATA

I_RNR -

Data type: RSMONFACT-RNR
Optional: No
Call by Reference: Yes

I_SIMUL_ID -

Data type: RSSGTPDIR-UNI_IDC25
Optional: No
Call by Reference: Yes

I_INFOCUBE -

Data type: RSAU_S_UPDINFO-INFOCUBE
Optional: No
Call by Reference: Yes

I_ISOURCE -

Data type: RSAU_S_UPDINFO-ISOURCE
Optional: No
Call by Reference: Yes

I_LOGSYS -

Data type: RSAU_S_UPDSIMULH-LOGSYS
Optional: No
Call by Reference: Yes

I_TABNAME_T0 -

Data type: DFIES-TABNAME
Optional: Yes
Call by Reference: Yes

I_TABNAME_C0 -

Data type: DFIES-TABNAME
Optional: Yes
Call by Reference: Yes

I_TABNAME_V0 -

Data type: DFIES-TABNAME
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for RSAU_SIMULATION_SAVE_DATA

C_T_T0 -

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

C_T_C0 -

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

C_T_V0 -

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

C_T_T1 -

Data type:
Optional: Yes
Call by Reference: Yes

C_T_C1 -

Data type:
Optional: Yes
Call by Reference: Yes

Copy and paste ABAP code example for RSAU_SIMULATION_SAVE_DATA 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_i_rnr  TYPE RSMONFACT-RNR, "   
lt_c_t_t0  TYPE STANDARD TABLE OF RSMONFACT, "   
lt_c_t_c0  TYPE STANDARD TABLE OF RSMONFACT, "   
lv_i_simul_id  TYPE RSSGTPDIR-UNI_IDC25, "   
lt_c_t_v0  TYPE STANDARD TABLE OF RSSGTPDIR, "   
lv_i_infocube  TYPE RSAU_S_UPDINFO-INFOCUBE, "   
lt_c_t_t1  TYPE STANDARD TABLE OF RSAU_S_UPDINFO, "   
lv_i_isource  TYPE RSAU_S_UPDINFO-ISOURCE, "   
lt_c_t_c1  TYPE STANDARD TABLE OF RSAU_S_UPDINFO, "   
lv_i_logsys  TYPE RSAU_S_UPDSIMULH-LOGSYS, "   
lv_i_tabname_t0  TYPE DFIES-TABNAME, "   
lv_i_tabname_c0  TYPE DFIES-TABNAME, "   
lv_i_tabname_v0  TYPE DFIES-TABNAME. "   

  CALL FUNCTION 'RSAU_SIMULATION_SAVE_DATA'  "Simulation: writing data
    EXPORTING
         I_RNR = lv_i_rnr
         I_SIMUL_ID = lv_i_simul_id
         I_INFOCUBE = lv_i_infocube
         I_ISOURCE = lv_i_isource
         I_LOGSYS = lv_i_logsys
         I_TABNAME_T0 = lv_i_tabname_t0
         I_TABNAME_C0 = lv_i_tabname_c0
         I_TABNAME_V0 = lv_i_tabname_v0
    TABLES
         C_T_T0 = lt_c_t_t0
         C_T_C0 = lt_c_t_c0
         C_T_V0 = lt_c_t_v0
         C_T_T1 = lt_c_t_t1
         C_T_C1 = lt_c_t_c1
. " RSAU_SIMULATION_SAVE_DATA




ABAP code using 7.40 inline data declarations to call FM RSAU_SIMULATION_SAVE_DATA

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 RNR FROM RSMONFACT INTO @DATA(ld_i_rnr).
 
 
 
"SELECT single UNI_IDC25 FROM RSSGTPDIR INTO @DATA(ld_i_simul_id).
 
 
"SELECT single INFOCUBE FROM RSAU_S_UPDINFO INTO @DATA(ld_i_infocube).
 
 
"SELECT single ISOURCE FROM RSAU_S_UPDINFO INTO @DATA(ld_i_isource).
 
 
"SELECT single LOGSYS FROM RSAU_S_UPDSIMULH INTO @DATA(ld_i_logsys).
 
"SELECT single TABNAME FROM DFIES INTO @DATA(ld_i_tabname_t0).
 
"SELECT single TABNAME FROM DFIES INTO @DATA(ld_i_tabname_c0).
 
"SELECT single TABNAME FROM DFIES INTO @DATA(ld_i_tabname_v0).
 


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!