SAP Reports / Programs

BCS_EXAMPLE_8 SAP ABAP Report - BCS: Send a Spool Request as PDF by E-Mail (Example)







BCS_EXAMPLE_8 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 BCS_EXAMPLE_8 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 BCS_EXAMPLE_8. "Basic submit
SUBMIT BCS_EXAMPLE_8 AND RETURN. "Return to original report after report execution complete
SUBMIT BCS_EXAMPLE_8 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: MAILTO = Mail To
Selection Text: RQIDENT = Spool Request ID
Title: BCS: Send a Spool Request as PDF by E-Mail (Example)


INCLUDES used within this REPORT BCS_EXAMPLE_8

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:

RSPO_GET_ATTRIBUTES_SPOOLJOB call function 'RSPO_GET_ATTRIBUTES_SPOOLJOB' exporting rqident = rqident importing rq = rq tables attributes = dummy exceptions no_such_job = 1 others = 2.

CONVERT_OTFSPOOLJOB_2_PDF call function 'CONVERT_OTFSPOOLJOB_2_PDF' exporting src_spoolid = rqident no_dialog = 'X' pdf_destination = 'X' no_background = 'X' importing pdf_bytecount = bin_size bin_file = pdf_xstring exceptions err_no_otf_spooljob = 1 err_no_spooljob = 2 err_no_permission = 3 err_conv_not_possible = 4 err_bad_dstdevice = 5 user_cancelled = 6 err_spoolerror = 7 err_temseerror = 8 err_btcjob_open_failed = 9 err_btcjob_submit_failed = 10 err_btcjob_close_failed = 11 others = 12.

CONVERT_ABAPSPOOLJOB_2_PDF call function 'CONVERT_ABAPSPOOLJOB_2_PDF' exporting src_spoolid = rqident no_dialog = 'X' pdf_destination = 'X' no_background = 'X' importing pdf_bytecount = bin_size bin_file = pdf_xstring exceptions err_no_abap_spooljob = 1 err_no_spooljob = 2 err_no_permission = 3 err_conv_not_possible = 4 err_bad_destdevice = 5 user_cancelled = 6 err_spoolerror = 7 err_temseerror = 8 err_btcjob_open_failed = 9 err_btcjob_submit_failed = 10 err_btcjob_close_failed = 11 others = 12.



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