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

A program that faxes PDF files

Former Member
0 Likes
654

Hi,

Can anyone assist me with a program that I can use to fax a PDF file.

Regards,

1 ACCEPTED SOLUTION
Read only

OttoGold
Active Contributor
0 Likes
623

Hello,

have you read through the previous form question like:

Have a nice day, Otto

Hi,

Can anyone assist me with a program that I can use to fax a PDF file.

Regards,

3 REPLIES 3
Read only

Former Member
0 Likes
623

Hi ,

You can use Function Module PRINT_TEXT .

A sample code snippet :-

I_OPT-TDTELENUM = V_NUMBER. " Fax Number
 
I_OPT-TDTELELAND = V_COUNTRY. " Specify Country of recipient 
CALL FUNCTION 'PRINT_TEXT' 
EXPORTING 
APPLICATION = 'TX' 
DEVICE = 'TELEFAX'          "For fax 
DIALOG = 'X' 
HEADER = HEADER 
OPTIONS = I_OPT 
IMPORTING 
RESULT = RESULT 
TABLES 
LINES = I_CONTENT.

Regards

Abhii

Read only

0 Likes
623

Thank you for your help, but where to I add the PDF file that I want to Fax

Read only

OttoGold
Active Contributor
0 Likes
624

Hello,

have you read through the previous form question like:

Have a nice day, Otto