How To Download A Huge Spool Into PDF - SAP Q&A
How To Download A Huge Spool Into PDF - SAP Q&A
(http://www.sap.com/)
(https://community.sap.com)
(/users/login.html?
redirect_to=%2Fquestions%2F10106338%2Fhow-to-
download-a-huge-spool-into-pdf.html)
Ask a Question (https://answers.sap.com/questions/ask.html) Write a Blog Post (https://blogs.sap.com/wp-admin/post-new.php) Login (/users
Former Member
How to download a huge spool into PDF
Jun 27, 2013 at 09:43 PM | 959 Views
uestions%2F10106338%2Fhow-to-download-a-huge-
spool-into-
ta%3D10106338%26s_csrf%3D1607311451872.954)
0
uestions%2F10106338%2Fhow-to-download-a-huge-
spool-into-
ata%3D10106338%26s_csrf%3D1607311451872.954)
(/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-pdf.html%3Fs_action%3Dfollow%26s_csrf%3D1607311451872.954)
Follow RSS Feed
Hi Team,
I have a huge data in the spool and it contains around 1740 Pages and need to download the same in PDF. Is there any standard program does download or any FM.
Regards,
Sunil Kumar.
Assigned Tags
Related questions
how to get the spool id or how to create a spool id for the report . (https://answers.sap.com/questions/2547888/how-to-get-the-spool-id-or-how-to-create-a-spool-i.html)
By Former Member ( https://people.sap.com/former.member) Jun 22, 2007
7 Answers
Best Answer
Hi,
Fquestions%2F10106338%2Fhow-to-download-a-huge-
data%3D10106445%26s_csrf%3D1607311451872.954)
hildToView%3D10106445%23answer-
2
Please check the report RSTXPDFT4. This converts spool to PDF.
Fquestions%2F10106338%2Fhow-to-download-a-huge-
s_data%3D10106445%26s_csrf%3D1607311451872.954)
hildToView%3D10106445%23answer-
Cheers,
Arindam
Add a Comment (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dcomment%26s_data%3D10106445%26s_csrf%3D1607311451872.954) |
Alert Moderator (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dreport%26s_data%3D10106445%26s_csrf%3D1607311451872.954) |
/
Share
4 Comments
Try following the steps mentioned here might help. Its a combination of use of both the reports mentioned.
http://wiki.sdn.sap.com/wiki/display/ABAP/Creating+or+Converting+Large+PDF+Files (http://wiki.sdn.sap.com/wiki/display/ABAP/Creating+or+Converting+Large+PDF+Files)
Cheers,
Arindam
Like (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-pdf.html%3FchildToView%3D10111856%23comment-
10111856%26s_action%3Dlike_comment%26s_data%3D10111856%26s_csrf%3D1607311451872.954) 0 |
Share
|
Alert Moderator (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3DreportComment%26s_data%3D10111856%26s_csrf%3D1607311451872.954)
Show all
Hi Sunil Kumar,
Fquestions%2F10106338%2Fhow-to-download-a-huge-
childToView%3D10111137%23answer-
data%3D10111137%26s_csrf%3D1607311451872.954)
2
Make use of Standard program RSTXPDFT4 to convert spool to pdf.
Fquestions%2F10106338%2Fhow-to-download-a-huge-
s_data%3D10111137%26s_csrf%3D1607311451872.954)
childToView%3D10111137%23answer-
For instance,
rsp-selname = 'SPOOLNO'.
rsp-kind = 'P'.
rsp-sign = 'I'.
rsp-option = 'EQ'.
rsp-low = spool_no.
append rsp.
Regards.
Add a Comment (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dcomment%26s_data%3D10111137%26s_csrf%3D1607311451872.954) |
Alert Moderator (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dreport%26s_data%3D10111137%26s_csrf%3D1607311451872.954) |
Share
Former Member
ELSE.
DATA: BEGIN OF it_mess_att OCCURS 0,
i_bu er TYPE string,
END OF it_mess_att.
DATA : gd_bu er TYPE string.
DATA: wa_mess_att LIKE gd_bu er.
CLEAR it_mess_att.
REFRESH it_mess_att[].
Ramesh T ( https://people.sap.com/ramesh.t6)
(/users/12107/ramesht6.html)
Hi Sunil,
Fquestions%2F10106338%2Fhow-to-download-a-huge-
childToView%3D10111582%23answer-
data%3D10111582%26s_csrf%3D1607311451872.954)
0
Please try in this programs
Fquestions%2F10106338%2Fhow-to-download-a-huge-
s_data%3D10111582%26s_csrf%3D1607311451872.954)
childToView%3D10111582%23answer-
RSTXPDFT2
RSTXPDFT3
RSTXPDFT4
RSTXPDFT5
Add a Comment (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dcomment%26s_data%3D10111582%26s_csrf%3D1607311451872.954) |
Alert Moderator (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dreport%26s_data%3D10111582%26s_csrf%3D1607311451872.954) |
Share
Venkat B ( https://people.sap.com/venky9.se)
(/users/113164/venky9se.html)
Jul 01, 2013 at 09:12 AM
Hi Sunil,
Fquestions%2F10106338%2Fhow-to-download-a-huge-
childToView%3D10111583%23answer-
data%3D10111583%26s_csrf%3D1607311451872.954)
0
Open the spool which you want to download and execute a Tcode PDF! in the same window and will show you form in print preview mode there you can nd save
Fquestions%2F10106338%2Fhow-to-download-a-huge-
s_data%3D10111583%26s_csrf%3D1607311451872.954)
childToView%3D10111583%23answer-
button. By click on that you can save in your desk top.
Regards,
Venakt.
Add a Comment (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dcomment%26s_data%3D10111583%26s_csrf%3D1607311451872.954) |
Alert Moderator (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dreport%26s_data%3D10111583%26s_csrf%3D1607311451872.954) |
Share
3 Comments
PDF! tcode is there see this link you can understand how to use it.
http://www.saptechnical.com/Tutorials/Smartforms/PDF/Simple.htm (http://www.saptechnical.com/Tutorials/Smartforms/PDF/Simple.htm)
Regards,
Ramesh.T
Like (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-pdf.html%3FchildToView%3D10113525%23comment-
10113525%26s_action%3Dlike_comment%26s_data%3D10113525%26s_csrf%3D1607311451872.954) 0 |
Share
|
Alert Moderator (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3DreportComment%26s_data%3D10113525%26s_csrf%3D1607311451872.954)
Show all
Former Member
hi,
Fquestions%2F10106338%2Fhow-to-download-a-huge-
childToView%3D10111836%23answer-
data%3D10111836%26s_csrf%3D1607311451872.954)
0
install cute pdf which is third pary software. now print your spool and when asking for network print give name cute pdf which is in your printer list.
Fquestions%2F10106338%2Fhow-to-download-a-huge-
s_data%3D10111836%26s_csrf%3D1607311451872.954)
childToView%3D10111836%23answer-
regards,
Rakesh
Former Member
Hi,
Fquestions%2F10106338%2Fhow-to-download-a-huge-
childToView%3D10113681%23answer-
data%3D10113681%26s_csrf%3D1607311451872.954)
0
Issue Resolved or not ?
Fquestions%2F10106338%2Fhow-to-download-a-huge-
s_data%3D10113681%26s_csrf%3D1607311451872.954)
childToView%3D10113681%23answer-
regards,
Rakesh Pampaniya
Add a Comment (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dcomment%26s_data%3D10113681%26s_csrf%3D1607311451872.954) |
Alert Moderator (/users/login.html?redirect_to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-spool-into-
pdf.html%3Fs_action%3Dreport%26s_data%3D10113681%26s_csrf%3D1607311451872.954) |
Share
Before answering
You should only submit an answer when you are proposing a solution to the poster's problem. If you want the poster to clarify the question or provide more information, please
leave a comment instead, requesting additional details. When answering, please include speci cs, such as step-by-step instructions, context for the solution, and links to
useful resources. Also, please make sure that you answer complies with our Rules of Engagement.
/
You must be Logged in (/users/login.html?redirect to=%2Fquestions%2F10106338%2Fhow-to-download-a-huge-
You must be Logged in (/users/login.html?redirect_to %2Fquestions%2F10106338%2Fhow to download a huge
spool-into-pdf.html%3Fs_action%3DanswerQuestion%26s_csrf%3D1607311451872.954) to submit an answer.
Please provide a distinct answer and use the comment option for clarifying purposes.
Find us on