SAP RS_DME_AWO_SC_OUTPUT_EXCEL_NEW Function Module for Scoring Output Visualisation with Excel Integration









RS_DME_AWO_SC_OUTPUT_EXCEL_NEW is a standard rs dme awo sc output excel new SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Scoring Output Visualisation with Excel Integration 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 rs dme awo sc output excel new FM, simply by entering the name RS_DME_AWO_SC_OUTPUT_EXCEL_NEW into the relevant SAP transaction such as SE37 or SE38.

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



Function RS_DME_AWO_SC_OUTPUT_EXCEL_NEW 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 'RS_DME_AWO_SC_OUTPUT_EXCEL_NEW'"Scoring Output Visualisation with Excel Integration
EXPORTING
I_MODEL = "Model Name
* I_TORP = 'T' "View Train/Pred/Eval Results?
* I_T_SUM_AGGR_IND = "Score Grid: Indexes for Nodes
* I_T_SUM_AGGR_VAL = "Aggregated Data: Values for Indexes
* I_T_SUM_NET_AXIS = "Score Grid: Axis Values
* I_SCORING_TYPE = 'R' "Scoring Type - Reg/Wt

TABLES
E_T_RETURN = "Error Return Table
.



IMPORTING Parameters details for RS_DME_AWO_SC_OUTPUT_EXCEL_NEW

I_MODEL - Model Name

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

I_TORP - View Train/Pred/Eval Results?

Data type: RSDMEM_BOOL_CH
Default: 'T'
Optional: Yes
Call by Reference: Yes

I_T_SUM_AGGR_IND - Score Grid: Indexes for Nodes

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

I_T_SUM_AGGR_VAL - Aggregated Data: Values for Indexes

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

I_T_SUM_NET_AXIS - Score Grid: Axis Values

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

I_SCORING_TYPE - Scoring Type - Reg/Wt

Data type: RSDMEM_BOOL_CH
Default: 'R'
Optional: Yes
Call by Reference: Yes

TABLES Parameters details for RS_DME_AWO_SC_OUTPUT_EXCEL_NEW

E_T_RETURN - Error Return Table

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

Copy and paste ABAP code example for RS_DME_AWO_SC_OUTPUT_EXCEL_NEW 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_model  TYPE RSDMEM_MODEL_NAME, "   
lt_e_t_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_i_torp  TYPE RSDMEM_BOOL_CH, "   'T'
lv_i_t_sum_aggr_ind  TYPE RSDMESC_T_AGGR_IND, "   
lv_i_t_sum_aggr_val  TYPE RSDMESC_T_AGGR_VAL, "   
lv_i_t_sum_net_axis  TYPE RSDMESC_T_NET_AXIS, "   
lv_i_scoring_type  TYPE RSDMEM_BOOL_CH. "   'R'

  CALL FUNCTION 'RS_DME_AWO_SC_OUTPUT_EXCEL_NEW'  "Scoring Output Visualisation with Excel Integration
    EXPORTING
         I_MODEL = lv_i_model
         I_TORP = lv_i_torp
         I_T_SUM_AGGR_IND = lv_i_t_sum_aggr_ind
         I_T_SUM_AGGR_VAL = lv_i_t_sum_aggr_val
         I_T_SUM_NET_AXIS = lv_i_t_sum_net_axis
         I_SCORING_TYPE = lv_i_scoring_type
    TABLES
         E_T_RETURN = lt_e_t_return
. " RS_DME_AWO_SC_OUTPUT_EXCEL_NEW




ABAP code using 7.40 inline data declarations to call FM RS_DME_AWO_SC_OUTPUT_EXCEL_NEW

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_torp) = 'T'.
 
 
 
 
DATA(ld_i_scoring_type) = 'R'.
 


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!