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

Former Member
0 Likes
323

Hi,

I want to write a program that faxes a document to a couple of fax numbers. How can I do this?

Thanks in advance

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
292

One way will be using function module


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.

a®

1 REPLY 1
Read only

former_member194669
Active Contributor
0 Likes
293

One way will be using function module


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.

a®