Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

printing abap reports

Former Member
0 Kudos

Hi All,

Is it possible to print ABAP report output written through se38.

Thanks

Rakesh

1 ACCEPTED SOLUTION

former_member223537
Active Contributor
0 Kudos

Hi,

You can use

NEW-PAGE PRINT ON.

WRITE 😕 'Test'.

NEW-PAGE PRINT OFF.

or if a spool is generated, then use the following FM to print the spool output.

RSPO_RPRINT_SPOOLREQ

Best regards,

Prashant

4 REPLIES 4

former_member223537
Active Contributor
0 Kudos

Hi,

You can use

NEW-PAGE PRINT ON.

WRITE 😕 'Test'.

NEW-PAGE PRINT OFF.

or if a spool is generated, then use the following FM to print the spool output.

RSPO_RPRINT_SPOOLREQ

Best regards,

Prashant

Former Member
0 Kudos

Hi,

Execute the report.

Then at the output screen , you will find LIST at the topmost left level.

there you find print option .click on print.

Hope you got your answer

Debjani

Former Member
0 Kudos

hi,

after u got output on screen you can send that to printer

system --> List --> print

you can achieve the same programmatically by using Spooling functions

regards,

pavan

Former Member
0 Kudos

Hi,

i have solved this using commands: NEW-PAGE PRINT ON  & PRINT OFF ....

and then i will have a spool no. generated in variable : sy-spono ,  after this i will call a FM: RSPO_OUTPUT_SPOOL_REQUEST , passing only my spool no and it displays a popup with default printer.... and once pressing enter it prints.....

Thanks for the comments