SAP Reports / Programs

SENDLIST SAP ABAP Report - Sending Lists (Example Report from Note 190669)







SENDLIST 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 SENDLIST 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 SENDLIST. "Basic submit
SUBMIT SENDLIST AND RETURN. "Return to original report after report execution complete
SUBMIT SENDLIST VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: FAX = Fax
Selection Text: INT = E-Mail
Selection Text: RML = RML
Selection Text: SPOOL = Read List from Spool
Selection Text: SUBMIT = Submit report
Selection Text: USER = Send Internally
Selection Text: WRITE = Create List Directly
Title: Sending Lists (Example Report from Note 190669)
Text Symbol: 001 = Create List
Text Symbol: 002 = Address Type
Text Symbol: 003 = Document


INCLUDES used within this REPORT SENDLIST

No INCLUDES are used within this REPORT code!


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:

SO_RAW_TO_RTF call function 'SO_RAW_TO_RTF' tables objcont_old = text_content objcont_new = text_content exceptions others = 0.

SO_DOCUMENT_SEND_API1 call function 'SO_DOCUMENT_SEND_API1' exporting document_data = document_data put_in_outbox = 'X' commit_work = 'X' importing sent_to_all = sent_to_all tables packing_list = packing_list contents_txt = contents_txt contents_hex = contents_hex receivers = 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.

LIST_FROM_MEMORY call function 'LIST_FROM_MEMORY' tables listobject = listobject exceptions not_found = 1 others = 2.

TABLE_COMPRESS call function 'TABLE_COMPRESS' "#EC * tables in = listobject out = contents_hex exceptions compress_error = 1 others = 2.

LIST_FREE_MEMORY call function 'LIST_FREE_MEMORY' tables listobject = listobject exceptions others = 1.

SAVE_LIST call function 'SAVE_LIST' exporting list_index = sy-lsind tables listobject = listobject exceptions list_index_invalid = 1.

TABLE_COMPRESS call function 'TABLE_COMPRESS' "#EC * tables in = listobject out = contents_hex exceptions compress_error = 1 others = 2.

GET_PRINT_PARAMETERS call function 'GET_PRINT_PARAMETERS' importing out_parameters = print_parameters valid = valid exceptions archive_info_not_found = 1 invalid_print_params = 2 invalid_archive_params = 3 others = 4.

RSPO_RETURN_SPOOLJOB call function 'RSPO_RETURN_SPOOLJOB' exporting rqident = spool_number tables buffer = contents_bin exceptions no_such_job = 1 job_contains_no_data = 2 selection_empty = 3 no_permission = 4 can_not_access = 5 read_error = 6 type_no_match = 7 others = 8.

SO_SOLITAB_TO_SOLIXTAB call function 'SO_SOLITAB_TO_SOLIXTAB' exporting ip_solitab = contents_bin importing ep_solixtab = contents_hex.

SO_NAME_CONVERT call function 'SO_NAME_CONVERT' exporting name_in = name importing name_out = name exceptions others = 1.



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