What is the source of the PDF, is it a ABAP list?
Check out the following weblog for PDF conversion
/people/sap.user72/blog/2004/11/10/bsphowto-generate-pdf-output-from-a-bsp
for download use GUI_DOWNLOAD function. (this will work bot in normal sap gui and ITS environment)
Regards
Raja
For ITS use macro 'mime-download' (include AVWRTCXM):
" mime-download g_pdf_tab zlenght 'application/pdf' "
where 'g_pdf_tab' is a internal table; 'zlenght' the lenght of internal table; 'application/pdf' the type of document. you can use 'CONVERT_OTF' to convert sap-otf data into pdf data.
Gianluca
Add a comment