RS_AMC_SEND_SYSTEM_MESSAGE 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 RS_AMC_SEND_SYSTEM_MESSAGE 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.
Selection Text: MESSAGE1 = Message text 1
Selection Text: MESSAGE2 = Message text 2
Selection Text: MESSAGE3 = Message text 3
Title: ABAP Push Message: publishing of system messagess
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SM02_DEL_MESSAGE CALL FUNCTION 'SM02_DEL_MESSAGE' EXPORTING message_id = lv_msg_id EXCEPTIONS invalid_id = 1 not_authorized = 2 OTHERS = 3.
SM02_ADD_MESSAGE CALL FUNCTION 'SM02_ADD_MESSAGE' EXPORTING message = message1 message2 = message2 message3 = message3 * servername = temsg-applserver client = sy-mandt * start insert langu added langu = sy-langu * end insert langu added * expiration_date = temsg-datdel * expiration_time = temsg-timdel * delete_date = temsg-datrem * delete_time = temsg-timrem IMPORTING message_id = lv_msg_id EXCEPTIONS empty_message = 1 server_not_available = 2 client_not_available = 3 langu_not_available = 4 not_authorized = 5.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.
RS_AMC_SEND_SYSTEM_MESSAGE - ABAP Push Message: publishing of system messagess RS_AMC_SEND_SYSTEM_MESSAGE - ABAP Push Message: publishing of system messagess RS_AMC_SEND_MESSAGE_TEXT - Producer for ABAP Messaging Channels RS_AMC_SEND_MESSAGE_TEXT - Producer for ABAP Messaging Channels RS_AMC_SEND_MESSAGE - Producer for ABAP Messaging Channels RS_AMC_SEND_MESSAGE - Producer for ABAP Messaging Channels