Application Development and Automation 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: 
Read only

PDF conversion

vallamuthu_madheswaran2
Active Contributor
0 Likes
538

Is there any possibilities to upload the image file(like jpeg) to sap and convert it into pDF.

Thanks & Regards,

Vallamuthu.M

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
496

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

3 REPLIES 3
Read only

Former Member
Read only

Former Member
0 Likes
497

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

Read only

vallamuthu_madheswaran2
Active Contributor
0 Likes
496

No one is answer this question