‎2009 Jul 29 11:20 AM
Is there any possibilities to upload the image file(like jpeg) to sap and convert it into pDF.
Thanks & Regards,
Vallamuthu.M
‎2009 Jul 29 11:42 AM
Hi,
Use the given FM to download as PDF.
Hi,
Refer to the following program.
TABLES: likp, lips,itcpo.
DATA: pdftab type standard TABLE OF tline,
datab TYPE standard TABLE OF itcoo.
itcpo-tdgetotf = 'X'.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
BIN_FILESIZE = binfile
filename = 'D:\MYFILE.PDF' //give the address where u want output.
FILETYPE = 'BIN'
tables
data_tab = pdftab
Regards
Rajesh Kumar
‎2009 Jul 29 11:24 AM
‎2009 Jul 29 11:42 AM
Hi,
Use the given FM to download as PDF.
Hi,
Refer to the following program.
TABLES: likp, lips,itcpo.
DATA: pdftab type standard TABLE OF tline,
datab TYPE standard TABLE OF itcoo.
itcpo-tdgetotf = 'X'.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
BIN_FILESIZE = binfile
filename = 'D:\MYFILE.PDF' //give the address where u want output.
FILETYPE = 'BIN'
tables
data_tab = pdftab
Regards
Rajesh Kumar
‎2009 Jul 30 5:53 AM