SXMS_TEST_RUNTIME30 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 SXMS_TEST_RUNTIME30 into the relevant SAP transactions such as SE38 or SE80
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.
Title: Program SXMS_TEST_RUNTIME
Text Symbol: 001 = Select at least one test case
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_red_light info = 'RED' IMPORTING result = tt_red_light EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_yellow_light info = 'YELLOW' IMPORTING result = tt_yellow_light EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2.
ICON_CREATE CALL FUNCTION 'ICON_CREATE' EXPORTING name = icon_green_light info = 'GREEN' IMPORTING result = tt_green_light EXCEPTIONS icon_not_found = 1 outputfield_too_short = 2.
SXMB_GET_XMB_HUB_CLIENT CALL FUNCTION 'SXMB_GET_XMB_HUB_CLIENT' IMPORTING hub_client = lv_is_client.
DB_COMMIT CALL FUNCTION 'DB_COMMIT'.
SXMS_TEST_RUNTIME30 CALL FUNCTION 'SXMS_TEST_RUNTIME30' EXPORTING qos = p_qos inboundtype = 'PRX' outboundtype = 'PRX' rec_number = p_rec testkey = act_testkey qid = l_qid increment = 1 request_transport_ack =
request_appl_ack = sender = sender skip_pers = skip_pers IMPORTING msgguid = msguid_out ex_key = be_key ex_number = be_number ex_error_text = l_error_text EXCEPTIONS proxy_exception = 1 appl_exception = 2 syst_exception = 3 norec_be_exception = 4 OTHERS = 5.
SXMS_TEST_RUNTIME30 CALL FUNCTION 'SXMS_TEST_RUNTIME30' EXPORTING qos = p_qos inboundtype = 'PRX' outboundtype = 'PRX' rec_number = '1' testkey = 'XMB_APPL_ERROR' qid = 'XI_APPERROR' increment = 1 request_transport_ack =
request_appl_ack = sender = sender receivers = receiver_tab IMPORTING msgguid = msguid_out ex_key = be_key ex_number = be_number ex_error_text = l_error_text EXCEPTIONS proxy_exception = 1 appl_exception = 2 syst_exception = 3 norec_be_exception = 4 OTHERS = 5.
SXMS_TEST_RUNTIME30 CALL FUNCTION 'SXMS_TEST_RUNTIME30' EXPORTING qos = 'BE' inboundtype = 'PRX' outboundtype = 'PRX' rec_number = p_rec testkey = l_testkey qid = 'XI_APPERROR' increment = 1 request_transport_ack =
request_appl_ack = sender = sender skip_pers = skip_pers IMPORTING msgguid = msguid_out ex_key = be_key ex_number = be_number ex_error_text = l_error_text EXCEPTIONS proxy_exception = 1 appl_exception = 2 syst_exception = 3 norec_be_exception = 4 split_be_exception = 5 OTHERS = 6.
SXMS_TEST_RUNTIME30 CALL FUNCTION 'SXMS_TEST_RUNTIME30' EXPORTING testkey = 'XMB_QSERIALIZE' sender = sender skip_pers = skip_pers IMPORTING ex_error_text = l_error_text EXCEPTIONS proxy_exception = 1 OTHERS = 2.
SXMS_SET_ACK_INFO * CALL FUNCTION 'SXMS_SET_ACK_INFO' * EXPORTING * ack_info = lv_ack_info.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.