SAP Reports / Programs

RSDSSMPL_PERFORMANCE SAP ABAP Report - Sample program for a collection tool for performance values







RSDSSMPL_PERFORMANCE is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.

If you would like to execute this report or see the full code listing simply enter RSDSSMPL_PERFORMANCE into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.






SUBMIT RSDSSMPL_PERFORMANCE. "Basic submit
SUBMIT RSDSSMPL_PERFORMANCE AND RETURN. "Return to original report after report execution complete
SUBMIT RSDSSMPL_PERFORMANCE VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Title: Sample program for a collection tool for performance values


INCLUDES used within this REPORT RSDSSMPL_PERFORMANCE

INCLUDE RSALEXTI.


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

TH_USER_LIST CALL FUNCTION 'TH_USER_LIST' TABLES LIST = USER_TBL EXCEPTIONS OTHERS = 1.

SALI_MT_GET_TID_BY_NAME call function 'SALI_MT_GET_TID_BY_NAME' exporting MT_FULL_NAME = '\&SY\&INSTANCE_NAME' " Supported variables: " &SY: R/3 System name - C11 " &N: SAP System number - 53 " &HOSTNAM: Host name as in system " profile parameter saplocalhost- " host1 " &INSTANCE_NAME: Instance name - " profile parameter rdisp/myname- " host1_C11_53 importing TID = PARENT_TID exceptions unable_to_expand_name = 1 name_not_found = 2 communication_failure = 3 other_problem = 4 others = 5.

SALI_MO_CREATE_ATTACH CALL FUNCTION 'SALI_MO_CREATE_ATTACH' EXPORTING PARENT_TID = PARENT_TID MO_NAME = SAMPLE_OBJECT_NAME NUMRANGE = AL_NR_TEMP " temporary number range " Sample uses the temporary number " range for the MO handle. Benefit:

SALI_PERF_CREATE_ATTACH CALL FUNCTION 'SALI_PERF_CREATE_ATTACH' EXPORTING PARENT_TID = MO_TID MTE_NAME = SAMPLE_ATTRIBUTE_NAME MTE_CLASS = SAMPLE_ATTRIBUTE_CLASS MTE_NUMRANGE = AL_NR_TEMP " See above.

SALI_PERF_REPORT_VALUE call function 'SALI_PERF_REPORT_VALUE' exporting TOTAL_OF_REPORTED_VALUES = EX_P_VALUE NUMBER_OF_REPORTED_VALUES = 1 REPORTEDBY = 'RSDSSMPL_PERFORMANCE' changing TID = MA_P_TID exceptions invalid_tid = 1 wrong_typeclass = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 others = 6.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSDSSMPL_PERFORMANCE or its description.