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

RSDSSMPL_WORKSHOP_BATCH SAP ABAP Report - Sample Program (Example of Passive Data Supplier)







RSDSSMPL_WORKSHOP_BATCH 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_WORKSHOP_BATCH 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_WORKSHOP_BATCH. "Basic submit
SUBMIT RSDSSMPL_WORKSHOP_BATCH AND RETURN. "Return to original report after report execution complete
SUBMIT RSDSSMPL_WORKSHOP_BATCH 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 (Example of Passive Data Supplier)


INCLUDES used within this REPORT RSDSSMPL_WORKSHOP_BATCH

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.

SALI_MT_GET_TID_BY_NAME call function 'SALI_MT_GET_TID_BY_NAME' exporting MT_FULL_NAME = '\&SY\&INSTANCE_NAME' importing TID = PARENT_TID exceptions unable_to_expand_name = 1 name_not_found = 2 communication_failure = 3 other_problem = 4 others = 5.

SALI_SUM_CREATE_ATTACH CALL FUNCTION 'SALI_SUM_CREATE_ATTACH' EXPORTING PARENT_TID = PARENT_TID SUM_NAME = EXAMPLE_SUM_NAME * numrange = al_nr_auto * uniquenum = 0 * VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * DESC_TEXT_MSGID = 'RT' * DESC_TEXT_MSGNO = 013 MT_CLASS = EXAMPLE_SUM_CLASS * TOOL_COLLECTING = * TOOL_ONALERT = * TOOL_ANALYZE = IMPORTING NEW_TID = SUM_TID EXCEPTIONS INVALID_TID = 1 UNABLE_TO_EXPAND_NAME = 2 INVALID_PARAMETERS = 3 COMMUNICATION_FAILURE = 4 OTHER_PROBLEM = 5 WRONG_SEGMENT = 6 INTERNAL_FAILURE_SALS = 7 OTHERS = 8 .

SALI_MO_CREATE_ATTACH CALL FUNCTION 'SALI_MO_CREATE_ATTACH' EXPORTING PARENT_TID = SUM_TID MO_NAME = NBR_EXAMPLE_OBJECT_NAME * numrange = al_nr_auto * uniquenum = 0 VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR DESC_TEXT_MSGID = 'RT' DESC_TEXT_MSGNO = 092 MT_CLASS = NBR_EXAMPLE_OBJECT_CLASS IMPORTING NEW_TID = MO_TID EXCEPTIONS INVALID_TID = 1 UNABLE_TO_EXPAND_NAME = 2 INVALID_PARAMETERS = 3 COMMUNICATION_FAILURE = 4 OTHER_PROBLEM = 5 WRONG_SEGMENT = 6 INTERNAL_FAILURE_SALS = 7 OTHERS = 8.

SALI_PERF_CREATE_ATTACH CALL FUNCTION 'SALI_PERF_CREATE_ATTACH' EXPORTING PARENT_TID = MO_TID MTE_NAME = NBR_EXAMPLE_NAME MTE_CLASS = NBR_EXAMPLE_CLASS * mte_numrange = al_nr_auto * mte_uniquenum = 0 * MTE_SEVERITY = 50 * MTE_VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * MTE_KEEPALTYPE = AL_KEEP_ALL * MTE_KEEPALMAX = 10 MTE_SECONDS_TIL_COLLECTINGTOOL = 300 MTE_SECONDS_UNTIL_SET_INACTIVE = 900 * MTE_SECONDS_WARMUPTIME = 0 MTE_F1_HELP_TEXT_MSGID = 'RT' MTE_F1_HELP_TEXT_MSGNO = 093 PERF_CUSTOMIZING_GROUP = NBR_EXAMPLE_CUSTGRP * PERF_SUBTYPE = AL_STD_NO_SUBCLASS * PERF_RELEVANT_VALUE = AL_PERF_RV_LAST * PERF_THRESHOLD_DIRECTION = AL_THRESHDIR_ABOVE PERF_THRESHOLD_GREEN_TO_YELLOW = 50 PERF_THRESHOLD_YELLOW_TO_RED = 100 PERF_THRESHOLD_YELLOW_TO_GREEN = 40 PERF_THRESHOLD_RED_TO_YELLOW = 90 PERF_UNIT_TO_DISPLAY = '' * PERF_DECIMALS = 0 * PERF_ALERT_TEXT_MSGID = 'RT' * PERF_ALERT_TEXT_MSGNO = 001 TOOL_COLLECTING = 'CCMS_Example_Collect' * TOOL_ONALERT = * TOOL_ANALYZE = * TOOL_TOOLDISPATCHER = 'SAP_CCMS_DEFAULT_TD' IMPORTING NEW_TID = EX_P_TID EXCEPTIONS INVALID_TID = 1 UNABLE_TO_EXPAND_NAME = 2 INVALID_PARAMETERS = 3 COMMUNICATION_FAILURE = 4 OTHER_PROBLEM = 5 WRONG_SEGMENT = 6 INTERNAL_FAILURE_SALS = 7 OTHERS = 8.

SALI_SMES_CREATE_ATTACH CALL FUNCTION 'SALI_SMES_CREATE_ATTACH' EXPORTING PARENT_TID = MO_TID MTE_NAME = NBR_EXAMPLE_STATUS_NAME MTE_CLASS = NBR_EXAMPLE_STATUS_CLASS * mte_numrange = al_nr_auto * mte_uniquenum = 0 * MTE_SEVERITY = 50 * MTE_VISIBLE_ON_USERLEV = AL_VISIBLE_OPERATOR * MTE_KEEPALTYPE = AL_KEEP_ALL * MTE_KEEPALMAX = 10 MTE_SECONDS_TIL_COLLECTINGTOOL = 300 MTE_SECONDS_UNTIL_SET_INACTIVE = 900 * MTE_SECONDS_WARMUPTIME = 0 MTE_F1_HELP_TEXT_MSGID = 'RT' MTE_F1_HELP_TEXT_MSGNO = 094 SMES_CUSTOMIZING_GROUP = NBR_EXAMPLE_STATUS_CUSTGRP * SMES_SUBTYPE = AL_STD_NO_SUBCLASS * SMES_ALERT_MODE = AL_SMSG_ALMODE_ALWAYS * SMES_ALERT_SHIFT = AL_SMSG_ALSHIFT_UNCHG TOOL_COLLECTING = 'CCMS_Example_Collect' * TOOL_ONALERT = * TOOL_ANALYZE = * TOOL_TOOLDISPATCHER = 'SAP_CCMS_DEFAULT_TD' IMPORTING NEW_TID = EX_S_TID EXCEPTIONS INVALID_TID = 1 UNABLE_TO_EXPAND_NAME = 2 INVALID_PARAMETERS = 3 COMMUNICATION_FAILURE = 4 OTHER_PROBLEM = 5 WRONG_SEGMENT = 6 INTERNAL_FAILURE_SALS = 7 OTHERS = 8.

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' changing TID = MA_P_TID exceptions invalid_tid = 1 wrong_typeclass = 2 invalid_parameters = 3 communication_failure = 4 other_problem = 5 others = 6.

SALI_SMES_REPORT_T100_MESSAGE CALL FUNCTION 'SALI_SMES_REPORT_T100_MESSAGE' EXPORTING MSGVALUE = AL_VAL_GREEN MSGID = 'RT' MSGNO = 020 MSGARG1 = 'RSDSSMPL' ARGTYPE1 = 'C' * MSGARG2 = * ARGTYPE2 = 'C' * MSGARG3 = * ARGTYPE3 = 'C' * MSGARG4 = * ARGTYPE4 = 'C' REPORTEDBY = 'RSDSSMPL' CHANGING TID = MA_S_TID EXCEPTIONS INVALID_TID = 1 WRONG_TYPECLASS = 2 INVALID_PARAMETERS = 3 COMMUNICATION_FAILURE = 4 OTHER_PROBLEM = 5 WRONG_SEGMENT = 6 INTERNAL_FAILURE_SALS = 7 OTHERS = 8.



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