RSSXRAWGEN 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 RSSXRAWGEN 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: RECEIVER = Recipient (SAP User)
Selection Text: TITLE = Title of Test Document
Title: Send a RAW/RAW Test Document in the SAPoffice Inbox
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
SO_NEW_DOCUMENT_SEND_API1 CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1' EXPORTING document_data = l_document_data document_type = 'RAW' * PUT_IN_OUTBOX = ' ' * IMPORTING * SENT_TO_ALL = * NEW_OBJECT_ID = TABLES * OBJECT_HEADER = object_content = t_object_content * CONTENTS_HEX = * OBJECT_PARA = * OBJECT_PARB = receivers = t_receivers EXCEPTIONS too_many_receivers = 1 document_not_sent = 2 document_type_not_exist = 3 operation_no_authorization = 4 parameter_error = 5 x_error = 6 enqueue_error = 7 OTHERS = 8 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.