cancel
Showing results for 
Search instead for 
Did you mean: 

save PO printout on Desktop as PDF

former_member1284402
Participant
0 Kudos

hello all,

in my company we r using Z script and standard report for PO print, but now my requirement is that we want to save a Copy of print out as PDF on desktop when ever new PO is created.

can anyone plz help me that how can i do this?

regards saurabh.

Accepted Solutions (1)

Accepted Solutions (1)

NAeda
Contributor
0 Kudos

Hi Saurabh,

Ask your basis people to create one PDF printer(Output device), which automatically coverts any document to PDF.

In Message's mention this Printer. its working for me.

If you do like this there is no need to write any code.

regards

Aeda

Edited by: Aeda N on Nov 2, 2009 10:34 AM

Edited by: Aeda N on Nov 2, 2009 10:34 AM

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

One more option also available for us. If u does nt wan to change or create any program means...Just install the cute pdf writer software we can find in net free of cost...Assign this one as default printer and give print it will automatically convert to pdf format...

Former Member
0 Kudos

hi

Check whether u have a CONTENT server which u can check with ur Basis team.

Then u can use FM to convert and download to Desktop, as when ever u run PO it is triggered in backgraound and Downloading the PDF to Desktop using GUI_DOWNLOAD uses a POP-up to mention the location which cannot be handled in background. check with basis team b4 u proceed.

surya

Former Member
0 Kudos

Hi Saurabh,

Please find below some helpful links.

You need not call the FM to send mail.

http://wiki.sdn.sap.com/wiki/display/Snippets/SmartformasaPDFtoMailid

http://www.sap-basis-abap.com/smartforms/convert-the-smart-form-into-pdf-and-send.htm

Thanks,

Nisha Vengal.

Former Member
0 Kudos

Hi,

Make a copy of the standard then convert the OTF data into PDF format then download the same to desktop.

You can more info in the SDN. FYI. you can use the below FM to convert

CALL FUNCTION 'CONVERT_OTF'

EXPORTING

format = 'PDF'

max_linewidth = 132

TABLES

otf = i_otf

lines = i_tline .

Regards,

Aditya