SAP Reports / Programs | Basis Components | Use Subcomponents | Monitoring(BC-CCM-MON) SAP BC

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







RSDSSMPL_LOG 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_LOG 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_LOG. "Basic submit
SUBMIT RSDSSMPL_LOG AND RETURN. "Return to original report after report execution complete
SUBMIT RSDSSMPL_LOG 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_LOG

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:

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_MSC_CREATE_ATTACH CALL FUNCTION 'SALI_MSC_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_MSC_REPORT_T100_MESSAGE CALL FUNCTION 'SALI_MSC_REPORT_T100_MESSAGE' EXPORTING VALUE = MSG_VAL " Criticality of the message: " al_val_green: Success message.



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_LOG or its description.