Send spool by fax

Hi all,
I would send the spool of several reports via fax using SAP standard. I know there is a standard trx SCOT to check the fax/mail sent.
My question is: what I have to customize to send spool via fax?
Now, I'm sending fax in this way: I prepare a VBS file with the statments to send a fax and I execute this VBS using function module WS_EXECUTE. In this VBS file I indicate also the PDF file (produced by a SAP spool) to use in the fax.
Many thanks.
Luca

check below code...
How can you send a fax from within ABAP/4 programs? 
The following program shows you how to send a fax from within ABAP/4. The report is delivered
in the standard system and is used in Transaction SCOM for the function "Send test fax".
Only the method via the call of SAPscript with DEVICE='TELEFAX', described below, ensures the
generation of a correct transmission request, independent of the R/3 release and of the used
fax server solution and its configuration.
The regular printing (for example, with NEW-PAGE PRINT ON...) on an output device created in
the spool administration of the device class 'Telefax' does generally not work!
REPORT RSKSENDF MESSAGE-ID SK.
Test report to send a test fax
sends a fax to the number <TO_CNTRY>-<TO_NMBER>
containing an automatically generated message text.
TABLES: USR03.
PARAMETERS: TO_CNTRY LIKE T005-LAND1 OBLIGATORY,
TO_NMBER LIKE TSP01-RQTELENUM OBLIGATORY,
FROM_USR(30) TYPE C DEFAULT SY-UNAME,
TO_RECIP(30) TYPE C DEFAULT SY-UNAME.
SAPscript content ITAB
DATA: BEGIN OF TEST_DOC OCCURS 10.
INCLUDE STRUCTURE TLINE.
DATA: END OF TEST_DOC.
SAPscript header struct
DATA BEGIN OF HEADER.
INCLUDE STRUCTURE THEAD.
DATA END OF HEADER.
INITIALIZATION.
get county from user addres in usr03
system->user profile->user address
check if not empty
SELECT SINGLE * FROM USR03 WHERE BNAME = SY-UNAME.
IF SY-SUBRC = 0 AND USR03-LAND1 <> SPACE.
TO_CNTRY = USR03-LAND1.
ENDIF.
START-OF-SELECTION.
PERFORM FILL_UP_TEST_DOC.
PERFORM SHOW_TEST_DOC.
AT PF08.
PERFORM SEND_FAX TABLES TEST_DOC USING TO_CNTRY
TO_NMBER.
AT SELECTION-SCREEN ON TO_NMBER.
PERFORM CHECK_NUMBER USING TO_CNTRY TO_NMBER.
*& Form CHECK_NUMBER
FORM CHECK_NUMBER USING
COUNTRY
NUMBER.
DATA: SERVICE LIKE TSKPA-SERVICE VALUE 'TELEFAX',
LEN LIKE SY-FDPOS.
FIELD-SYMBOLS <P>.
windows GUI push the ? from mandatory input instead
of overwriting it
LEN = STRLEN( TO_NMBER ).
IF LEN > 1.
SUBTRACT 1 FROM LEN.
ASSIGN TO_NMBER+LEN(1) TO <P>.
IF <P> = '?'.
<P> = SPACE.
ENDIF.
ENDIF.
official check FM
CALL FUNCTION 'TELECOMMUNICATION_NUMBER_CHECK'
EXPORTING
COUNTRY = COUNTRY
NUMBER = NUMBER
SERVICE = SERVICE.
on old 21?/22? release you may have to handle the
exception
because the Function uses RAISE instead of
MESSAGE... RAISING....
ENDFORM. " CHECK_NUMBER
*& Form FILL_UP_TEST_DOC
fills test text in itab TEST_DOC *
real life example needs to get real life data *
FORM FILL_UP_TEST_DOC.
DATA: DATUM(12) TYPE C,
UZEIT(10) TYPE C.
SAPscript initialization
of course, you may want to set a few parameter
(FORM,LAYOUT,....)
CALL FUNCTION 'INIT_TEXT'
EXPORTING
ID = 'ST '
LANGUAGE = SY-LANGU
NAME = 'FOO-BAR'
OBJECT = 'TEXT'
IMPORTING
HEADER = HEADER
TABLES
LINES = TEST_DOC
EXCEPTIONS
OTHERS = 1.
IF SY-SUBRC <> 0.
MESSAGE A400 WITH 'INIT_TEXT'.
ENDIF.
PERFORM ADD_EMPTY_LINE.
WRITE: SY-DATUM TO DATUM.
WRITE: SY-UZEIT TO UZEIT.
PERFORM ADD_LINES USING 'This is test Telefax'(001)
DATUM UZEIT.
PERFORM ADD_EMPTY_LINE.
PERFORM ADD_LINES USING 'From: &'(002) FROM_USR SPACE.
PERFORM ADD_LINES USING 'To: &'(003) TO_RECIP SPACE.
PERFORM ADD_LINES USING 'Fax number: & &'(004)
TO_CNTRY TO_NMBER.
PERFORM ADD_EMPTY_LINE.
PERFORM ADD_LINES USING
'This is a test fax send by Report RSKSENDF'(005)
SPACE SPACE.
PERFORM ADD_LINES USING 'on SAP system & '(006)
SY-SYSID SPACE.
PERFORM ADD_EMPTY_LINE.
PERFORM ADD_LINES USING
'the quick brown fox jumps over the lazy dog.'(101)
SPACE SAPCE.
PERFORM ADD_LINES USING
'THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG.'(102)
SPACE SAPCE.
PERFORM ADD_EMPTY_LINE.
PERFORM ADD_LINES USING 'End of test'(007) SPACE
SPACE.
ENDFORM. " FILL_UP_TEST_DOC
*& Form ADD_LINES
printf a line an appends it in test_doc *
--> cformat format.
--> p1 param1
--> p2 param2
FORM ADD_LINES USING CFORMAT P1 P2.
TEST_DOC-TDFORMAT = '/'.
TEST_DOC-TDLINE = CFORMAT.
IF TEST_DOC-TDLINE CA '&'.
REPLACE '&' WITH P1 INTO TEST_DOC-TDLINE.
IF TEST_DOC-TDLINE CA '&'.
REPLACE '&' WITH P2 INTO TEST_DOC-TDLINE.
ENDIF.
ENDIF.
APPEND TEST_DOC.
ENDFORM. " ADD_LINES
*& Form ADD_EMPTY_LINE
appends an empty line to test_doc *
FORM ADD_EMPTY_LINE.
TEST_DOC-TDFORMAT = '/'.
CLEAR TEST_DOC-TDLINE.
APPEND TEST_DOC.
ENDFORM. " ADD_EMPTY_LINE
*& Form SHOW_TEST_DOC
lists the test doc for aproval *
*>>>> this is for fun only because PRINT_TEXT also
offers a preview *
FORM SHOW_TEST_DOC.
FORMAT COLOR COL_BACKGROUND INTENSIFIED OFF.
WRITE: / 'Test fax would look like this:'(020).
ULINE.
SKIP.
LOOP AT TEST_DOC.
IF TEST_DOC-TDLINE <> SPACE.
WRITE:/ TEST_DOC-TDLINE.
ELSE.
SKIP.
ENDIF.
ENDLOOP.
SKIP.
ULINE.
FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
WRITE: 'Press PF8 to send it'(021).
ENDFORM. " SHOW_TEST_DOC
*& Form SEND_FAX
send fax by calling SAPscript *
Note: Instead of using PRINT_TEXT you may also *
call OPEN_FORM / WRITE_FORM_LINES / CLOSE_FORM, *
this allows you to use a similar program structure *
as with NEW-PAGE PRINT ON / WRITE / NEW-PAGE PRINT
OFF *
FORM SEND_FAX
TABLES DOC2FAX STRUCTURE TEST_DOC
USING COUNTRY
NUMBER.
DATA: SID(5) TYPE N.
DATA BEGIN OF POPT.
INCLUDE STRUCTURE ITCPO.
DATA END OF POPT.
DATA BEGIN OF PRES.
INCLUDE STRUCTURE ITCPP.
DATA END OF PRES.
CLEAR POPT.
POPT-TDCOPIES = 1. " one copy
POPT-TDDEST = " done internaly by script,
POPT-TDPRINTER = " do not fill !!!
POPT-TDNEWID = 'X'. " do not reuse old spool request
POPT-TDDATASET = 'TEST'(022). " fill as you want
POPT-TDSUFFIX1 = 'FAX'(023). " fill as you want
POPT-TDSUFFIX2 = SY-UNAME. " fill as you want
POPT-TDIMMED = 'X'. " send now
POPT-TDLIFETIME = 8. " keep 8 days in spool
POPT-TDTELENUM = NUMBER. " number without country code
POPT-TDTELELAND = COUNTRY. " country of recipient
POPT-TDCOVER = 'test fax'(024).
POPT-TDCOVTITLE = 'test fax'(024).
POPT-TDIEXIT = 'X'.
CALL FUNCTION 'PRINT_TEXT'
EXPORTING
APPLICATION = 'TX'
ARCHIVE_INDEX = ' '
ARCHIVE_PARAMS = ' '
DEVICE = 'TELEFAX' "<<< here we say: fax it !
DIALOG = 'X'
HEADER = HEADER
OPTIONS = POPT
IMPORTING
RESULT = PRES
TABLES
LINES = DOC2FAX
EXCEPTIONS
OTHERS = 01.
do not bother with exception in sample code
CANCELED = 01
DEVICE = 02
FORM = 03
OPTIONS = 04
UNCLOSED = 05
UNKNOWN = 06
FORMAT = 07
TEXTFORMAT = 08
EXTERNAL = 09.
IF SY-SUBRC = 0.
arriving here means we could send:
SID = PRES-TDSPOOLID.
IF SID > '00000'.
MESSAGE S433 WITH SID.
ENDIF.
LEAVE .
ELSE.
do not bother with exception in sample code
MESSAGE A400 WITH 'PRIN_TEXT'.
ENDIF.
ENDFORM. " SEND_FAX

Similar Messages

  • Sending Smartforms through Fax

    Hi,
      Can anybody suggest me, how to send the smartform through FAX? The output need not be printed instead it should be sent as FAX.
    Thanks and Regards,
    Lakshmi

    Hi,
    Check this sample code helps your purpose.If so,kindly reward points by clicking the star on the elft of reply,if it helps.
    The following program shows you how to send a fax from within ABAP/4. The report is delivered
    in the standard system and is used in Transaction SCOM for the function "Send test fax".
    Only the method via the call of SAPscript with DEVICE='TELEFAX', described below, ensures the
    generation of a correct transmission request, independent of the R/3 release and of the used
    fax server solution and its configuration.
    The regular printing (for example, with NEW-PAGE PRINT ON...) on an output device created in
    the spool administration of the device class 'Telefax' does generally not work!
    REPORT RSKSENDF MESSAGE-ID SK.
    Test report to send a test fax
    sends a fax to the number <TO_CNTRY>-<TO_NMBER>
    containing an automatically generated message text.
    TABLES: USR03.
    PARAMETERS: TO_CNTRY LIKE T005-LAND1 OBLIGATORY,
    TO_NMBER LIKE TSP01-RQTELENUM OBLIGATORY,
    FROM_USR(30) TYPE C DEFAULT SY-UNAME,
    TO_RECIP(30) TYPE C DEFAULT SY-UNAME.
    SAPscript content ITAB
    DATA: BEGIN OF TEST_DOC OCCURS 10.
    INCLUDE STRUCTURE TLINE.
    DATA: END OF TEST_DOC.
    SAPscript header struct
    DATA BEGIN OF HEADER.
    INCLUDE STRUCTURE THEAD.
    DATA END OF HEADER.
    INITIALIZATION.
    get county from user addres in usr03
    system->user profile->user address
    check if not empty
    SELECT SINGLE * FROM USR03 WHERE BNAME = SY-UNAME.
    IF SY-SUBRC = 0 AND USR03-LAND1 <> SPACE.
    TO_CNTRY = USR03-LAND1.
    ENDIF.
    START-OF-SELECTION.
    PERFORM FILL_UP_TEST_DOC.
    PERFORM SHOW_TEST_DOC.
    AT PF08.
    PERFORM SEND_FAX TABLES TEST_DOC USING TO_CNTRY
    TO_NMBER.
    AT SELECTION-SCREEN ON TO_NMBER.
    PERFORM CHECK_NUMBER USING TO_CNTRY TO_NMBER.
    *& Form CHECK_NUMBER
    FORM CHECK_NUMBER USING
    COUNTRY
    NUMBER.
    DATA: SERVICE LIKE TSKPA-SERVICE VALUE 'TELEFAX',
    LEN LIKE SY-FDPOS.
    FIELD-SYMBOLS <P>.
    windows GUI push the ? from mandatory input instead
    of overwriting it
    LEN = STRLEN( TO_NMBER ).
    IF LEN > 1.
    SUBTRACT 1 FROM LEN.
    ASSIGN TO_NMBER+LEN(1) TO <P>.
    IF <P> = '?'.
    <P> = SPACE.
    ENDIF.
    ENDIF.
    official check FM
    CALL FUNCTION 'TELECOMMUNICATION_NUMBER_CHECK'
    EXPORTING
    COUNTRY = COUNTRY
    NUMBER = NUMBER
    SERVICE = SERVICE.
    on old 21?/22? release you may have to handle the
    exception
    because the Function uses RAISE instead of
    MESSAGE... RAISING....
    ENDFORM. " CHECK_NUMBER
    *& Form FILL_UP_TEST_DOC
    fills test text in itab TEST_DOC *
    real life example needs to get real life data *
    FORM FILL_UP_TEST_DOC.
    DATA: DATUM(12) TYPE C,
    UZEIT(10) TYPE C.
    SAPscript initialization
    of course, you may want to set a few parameter
    (FORM,LAYOUT,....)
    CALL FUNCTION 'INIT_TEXT'
    EXPORTING
    ID = 'ST '
    LANGUAGE = SY-LANGU
    NAME = 'FOO-BAR'
    OBJECT = 'TEXT'
    IMPORTING
    HEADER = HEADER
    TABLES
    LINES = TEST_DOC
    EXCEPTIONS
    OTHERS = 1.
    IF SY-SUBRC <> 0.
    MESSAGE A400 WITH 'INIT_TEXT'.
    ENDIF.
    PERFORM ADD_EMPTY_LINE.
    WRITE: SY-DATUM TO DATUM.
    WRITE: SY-UZEIT TO UZEIT.
    PERFORM ADD_LINES USING 'This is test Telefax'(001)
    DATUM UZEIT.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING 'From: &'(002) FROM_USR SPACE.
    PERFORM ADD_LINES USING 'To: &'(003) TO_RECIP SPACE.
    PERFORM ADD_LINES USING 'Fax number: & &'(004)
    TO_CNTRY TO_NMBER.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING
    'This is a test fax send by Report RSKSENDF'(005)
    SPACE SPACE.
    PERFORM ADD_LINES USING 'on SAP system & '(006)
    SY-SYSID SPACE.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING
    'the quick brown fox jumps over the lazy dog.'(101)
    SPACE SAPCE.
    PERFORM ADD_LINES USING
    'THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG.'(102)
    SPACE SAPCE.
    PERFORM ADD_EMPTY_LINE.
    PERFORM ADD_LINES USING 'End of test'(007) SPACE
    SPACE.
    ENDFORM. " FILL_UP_TEST_DOC
    *& Form ADD_LINES
    printf a line an appends it in test_doc *
    --> cformat format.
    --> p1 param1
    --> p2 param2
    FORM ADD_LINES USING CFORMAT P1 P2.
    TEST_DOC-TDFORMAT = '/'.
    TEST_DOC-TDLINE = CFORMAT.
    IF TEST_DOC-TDLINE CA '&'.
    REPLACE '&' WITH P1 INTO TEST_DOC-TDLINE.
    IF TEST_DOC-TDLINE CA '&'.
    REPLACE '&' WITH P2 INTO TEST_DOC-TDLINE.
    ENDIF.
    ENDIF.
    APPEND TEST_DOC.
    ENDFORM. " ADD_LINES
    *& Form ADD_EMPTY_LINE
    appends an empty line to test_doc *
    FORM ADD_EMPTY_LINE.
    TEST_DOC-TDFORMAT = '/'.
    CLEAR TEST_DOC-TDLINE.
    APPEND TEST_DOC.
    ENDFORM. " ADD_EMPTY_LINE
    *& Form SHOW_TEST_DOC
    lists the test doc for aproval *
    *>>>> this is for fun only because PRINT_TEXT also
    offers a preview *
    FORM SHOW_TEST_DOC.
    FORMAT COLOR COL_BACKGROUND INTENSIFIED OFF.
    WRITE: / 'Test fax would look like this:'(020).
    ULINE.
    SKIP.
    LOOP AT TEST_DOC.
    IF TEST_DOC-TDLINE <> SPACE.
    WRITE:/ TEST_DOC-TDLINE.
    ELSE.
    SKIP.
    ENDIF.
    ENDLOOP.
    SKIP.
    ULINE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE: 'Press PF8 to send it'(021).
    ENDFORM. " SHOW_TEST_DOC
    *& Form SEND_FAX
    send fax by calling SAPscript *
    Note: Instead of using PRINT_TEXT you may also *
    call OPEN_FORM / WRITE_FORM_LINES / CLOSE_FORM, *
    this allows you to use a similar program structure *
    as with NEW-PAGE PRINT ON / WRITE / NEW-PAGE PRINT
    OFF *
    FORM SEND_FAX
    TABLES DOC2FAX STRUCTURE TEST_DOC
    USING COUNTRY
    NUMBER.
    DATA: SID(5) TYPE N.
    DATA BEGIN OF POPT.
    INCLUDE STRUCTURE ITCPO.
    DATA END OF POPT.
    DATA BEGIN OF PRES.
    INCLUDE STRUCTURE ITCPP.
    DATA END OF PRES.
    CLEAR POPT.
    POPT-TDCOPIES = 1. " one copy
    POPT-TDDEST = " done internaly by script,
    POPT-TDPRINTER = " do not fill !!!
    POPT-TDNEWID = 'X'. " do not reuse old spool request
    POPT-TDDATASET = 'TEST'(022). " fill as you want
    POPT-TDSUFFIX1 = 'FAX'(023). " fill as you want
    POPT-TDSUFFIX2 = SY-UNAME. " fill as you want
    POPT-TDIMMED = 'X'. " send now
    POPT-TDLIFETIME = 8. " keep 8 days in spool
    POPT-TDTELENUM = NUMBER. " number without country code
    POPT-TDTELELAND = COUNTRY. " country of recipient
    POPT-TDCOVER = 'test fax'(024).
    POPT-TDCOVTITLE = 'test fax'(024).
    POPT-TDIEXIT = 'X'.
    CALL FUNCTION 'PRINT_TEXT'
    EXPORTING
    APPLICATION = 'TX'
    ARCHIVE_INDEX = ' '
    ARCHIVE_PARAMS = ' '
    DEVICE = 'TELEFAX' "<<< here we say: fax it !
    DIALOG = 'X'
    HEADER = HEADER
    OPTIONS = POPT
    IMPORTING
    RESULT = PRES
    TABLES
    LINES = DOC2FAX
    EXCEPTIONS
    OTHERS = 01.
    do not bother with exception in sample code
    CANCELED = 01
    DEVICE = 02
    FORM = 03
    OPTIONS = 04
    UNCLOSED = 05
    UNKNOWN = 06
    FORMAT = 07
    TEXTFORMAT = 08
    EXTERNAL = 09.
    IF SY-SUBRC = 0.
    arriving here means we could send:
    SID = PRES-TDSPOOLID.
    IF SID > '00000'.
    MESSAGE S433 WITH SID.
    ENDIF.
    LEAVE .
    ELSE.
    do not bother with exception in sample code
    MESSAGE A400 WITH 'PRIN_TEXT'.
    ENDIF.
    ENDFORM. " SEND_FAX

  • How to send "SPOOL" on SAP MAil or external mail in background???

    I tried using 'SO_DOCUMENT_REPOSITORY_MANAGER' function but it failed when I run it in background. I learned that it calls a screen at the middle of the process which needs user input to go on with the process.
    Is there other way that I could send spool on SAPMail or external Mail in background??? Any suggesstions will be greatly appreciated.. thanx...

    see below sample function module, you can use in backgroud also
    FUNCTION Z_SEND_MAIL_FOR_SPOOLLIST.
    ""Local interface:
    *"       IMPORTING
    *"             VALUE(SPOOLNUMBER) LIKE  SY-SPONO DEFAULT SY-SPONO
    *"             VALUE(MAILNAME) LIKE  SOOD1-OBJNAM DEFAULT 'NOTE'
    *"             VALUE(SUBJECT) LIKE  SOOD1-OBJDES
    *"             VALUE(RECEPIENT) LIKE  SY-UNAME OPTIONAL
    *"             VALUE(DLI) LIKE  SOOS1-DLINAM OPTIONAL
    *"       TABLES
    *"              TEXT STRUCTURE  SOLI OPTIONAL
    *"       EXCEPTIONS
    *"              ERROR
    DATA: OBJECT_HD_CHANGE LIKE SOOD1 OCCURS 0 WITH HEADER LINE,
          OBJPARA          LIKE SELC  OCCURS 0 WITH HEADER LINE,
          RECEIVERS        LIKE SOOS1 OCCURS 0 WITH HEADER LINE.
    OBJECT_HD_CHANGE-OBJLA  = SY-LANGU.
    OBJECT_HD_CHANGE-OBJNAM = MAILNAME.
    OBJECT_HD_CHANGE-OBJDES = SUBJECT.
    OBJECT_HD_CHANGE-OBJSNS = 'F'.
    OBJECT_HD_CHANGE-VMTYP  = 'T'.
    OBJECT_HD_CHANGE-SKIPS  = 'X'.
    OBJECT_HD_CHANGE-ACNAM  = 'SP01'.
    OBJECT_HD_CHANGE-OBJCP  = 'X'.
    RECEIVERS-RCDAT  = SY-DATUM.
    RECEIVERS-RCTIM  = SY-UZEIT.
    IF DLI IS INITIAL.
        RECEIVERS-RECNAM = RECEPIENT.
        RECEIVERS-RTUNAM = RECEPIENT.
    ELSE.
        RECEIVERS-RECNAM = DLI.
        RECEIVERS-ADR_NAME = DLI.
        RECEIVERS-RECESC = 'C'.
    ENDIF.
    RECEIVERS-SNDEX  = 'X'.     " Express-Mail
    APPEND RECEIVERS.
    OBJPARA-NAME = 'SPI'.
    OBJPARA-LOW  = SPOOLNUMBER.
    APPEND OBJPARA.
    CALL FUNCTION 'SO_OBJECT_SEND'
          EXPORTING
               OBJECT_HD_CHANGE           = OBJECT_HD_CHANGE
               OBJECT_TYPE                = 'RAW'
               OWNER                      = SY-UNAME
          TABLES
               OBJCONT                    = TEXT
               OBJPARA                    = OBJPARA
               RECEIVERS                  = RECEIVERS
          EXCEPTIONS
               OTHERS                     = 01.
    IF SY-SUBRC NE 0.
       RAISE ERROR.
    ENDIF.
    ENDFUNCTION.

  • How can I send an e-fax from my iMac

    How can I send an e-fax from my iMac to another iMac or a windown machine?

    Read the suggestions in the following threads: 
    https://discussions.apple.com/thread/3416189 
    https://discussions.apple.com/message/23679130#23679130 

  • HP OFFICEJET PRO 8600 PLUS UNABLE TO SEND OR RECEIVE FAXES

    I've had this Officejet 8600 about a year with no problems whatsoever. I scanned a document to computer earlier this week and when the scan finished, I received the message "unable to send or receive faxes."  I've been all over the forum, tried everything on the "Cannot send and receive faxes" page.  My connections are all good, I'm using a two-wire phone cord.  Just out of the blue, it quit.  Any suggestions would be very much appreciated.  Thanks.

    Hello aimtheflame,
    Welcome to the HP Forums!
    I understand you're receiving a message stating "Unable to send and receive faxes" using the Officejet 8600 Plus. I will do my best to assist you! Just to clarify, are you able to scan or copy a document successfully?
    If so, then I need to find out what type of added features do you have on this fax phone line? Did you change anything recently on this line? I would suggest following this entire HP document on Cannot Send or Receive Faxes. Try running a fax test report to verify if anything fails.
    Also, try turning off error correction mode on your printer:
    1. Press the Right arrow, then press setup (Wrench)
    2. Press Fax menu, press advanced fax setup
    3. Press error correction mode to off
    Please post your results, as I will be looking forward to hearing from you. Have a great night!
    I worked on behalf of HP.

  • Officejet Pro 8600 Plus will not send or receive fax

      I have connected the fax machine to the phone outlet, the fax machine dials to another fax machine, the connection sounds like it is being made (the receiving fax machine sends out a noise signalling that it has received a phone call) and then the HP Officejet Pro 8600 Plus says that is is "Connecting" but no fax is sent. Nor can I receive a fax, even though the phone rings on the Officejet Pro 8600 Plus.   The error code I get is Error 388 which is that a communication error occurred during fax transmission.  However, this message occurs regardless of the fax number that I send to, and I had the recipient check that the receiving fax machine was working fine for transmittals from others.
    Is it possible that the proble is that  I cannot send or receive faxes through a digital phone line?  That seems odd to me given that almost all phone lines in the modern era are digital.  How do I send and receive faxes with the Officejet Pro 8600 Plus if the only phone lines available are digital?  Also, 4 months ago, I used the same phone line for the same machine, and the fax function worked, but my phone provider assures me that the only phone lines that they have ever provided are digital.
    Thank you.

    Hello,
    I am sorry to hear you are having issues with the fax functionality on your Officejet 8600 plus. I have found a document that has several troubleshooting steps you can try to narrow down the issue. I know some of these steps you have already done, but there might be a few that you haven't, like there is a HP test fax service you can use to test functionality.
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02891758&cc=us&dlc=en&lc=en#N226
    Good luck!
    I work for HP, However, I am speaking for myself and not for HP

  • HP Office Jet Pro 8600 N911g Unable to send or receive faxes

    Product purchased on April 14, 2014 -  worked fine until July 03, 2014.  When I turned it on, I received the message "Unable to send or receive faxes"  All I can do is click OK.  I also lost the icon on the computer desktop a the same time.  The phone line is working.  I have a dial tone and can receive and make phone calls.  I uninstalled and reinstalled the software.  The icon is back on the computer desktop but still receive the same message "unable to send or receive faxes".  I don't use this feature much, but I will need it eventually......
    Also, had HP look up the warranty status so I could find someone local to troubleshoot the issue.  HP said it was out of warranty - purchased in 2012!!??  I've sent in a copy of my receipt for proof of purchase, waiting for a reply from them. 
    Any help would be greatly appreciated.
    Thank you! 

    Hello,
    I apollogize for taking so long to reply.  Life got in the way....school, health, holidays....
    HP was NOT able to resolve this issue.  They sent me a replacement.  I was happy that they shipped it quickly (within days).  However, I was very unhappy with the replacement unit.  Although it looked new, the lid didn't feel tight and solid.  I thought it would break every time I lifted it.  I reinstalled everything, and it worked for a few days.  Then I started having different issues.  The scanner would not work properly.  It kept going into a "loop" and could not recover.  At first I thought it was because I was scanning multiple pages, but it also happened on single pages.  I do a LOT of scanning, more so than faxing.  I would have to shut the unit off - as in unplug it from the wall outlet - AND reboot my computer.  Then it would work for awhile.  The machine was also noisy when going into a print cycle.  I kept waiting for a paper jam.  I ended up calling HP Support and asking to speak to someone higher up the ranks.  No can do, until they go through the whole process of troubleshooting, an hour on the phone....all I wanted was another replacement - NEW.  Corporate was nice enough to replace the unit again.  However, they explained that there are NO NEW units upon replacement.  They are considered refurbished even if they are new, due to some "law".  Whatever.  Send me a unit that has a tight lid and works properly.  This unit took longer to arrive than the first replacement.  Long story short, worked fine for a short amount of time and then the same problems.  Now it gets hung up during printing AND scanning. (I have not bothered with the fax.)  In my opinion, it has to be a software problem within the unit.  It's a shame.  I really like the software program when scanning; through the years, I've tried Canon and Epson before returning to HP.
    In my opinion, I think it is a KNOWN issue to HP and they are unable or unwilling to fix it. 
    My solution - I wasn't going to call HP and waste more time.  I went out and purchased something else for Christmas.
    I will say that I had to visit my insurance agent when all this started, and I noticed that she has these units in her office - about four of them.  They work great, she has never had a problem.  However, she doesn't use them for faxing as she has a separate machine for that.  In a way, I wish I had kept my original unit and just given up my fax capabilities.  Hindsight is 20-20.  Hope my experience will help you make a decision.

  • Sending Multiple Page Faxes

    I am VERY annoyed with my IMAC G5. This was supposed to be the more User Friendly machine and I am finding it INFINITELY more difficult to use than the PC....
    FAXING happens to be one of the MOST IMPORTANT functions for business use of Computers. With a PC there is a SEPARATE FAX program and all you have to do is put your Hard Copy on a Scanner or Printer/Scanner, Send it to the Fax Modem, insert your Cover Page and Phone Numer it's being Sent to...
    And that's IT. Takes NO TIME at all to do.
    The Mac on the other hand does NOT have a separate Fax Program and this requires you to Fax from your Printer/Scanner to another Application such as Preview. While I can send a Single Hard Copy Fax in that way, I do not seem to be able to Fax Multiple Pages. My Printer does indeed allow me to Scan the Multiple Pages which it specifically refers to as Pages (of the same Doc) BUT while Preview does receive the Scans (as JPEGS) and inserts them all in the Drawer next to whichever Page is Highlighted, so far I have not found a way to get Preview to recognize them as Pages of the SAME Fax, thus requiring that I Send numerous Faxes (that's numerous Phone Calls)
    This is ABSURD. The Third Worlder on Apple Support just informed me that he can't find any Info on Sending Multiple Page Faxes via the MAC...
    I CAN'T BELIEVE that could be so because if it is, MAC is being run by a bunch of IDIOTS if they don't know how important this function is.
    PLEASE, if there's anyone out there who has the answer, Let Me Know, I'm about to throw this here so called 'state of the Art' IMAC G5 into the TRASH and bring back my trusty high powered Dell Desktop.
    Westbroadway, NYC

    Thanks for the efforts to be of help.
    I'm using a simply Lexmark 1100 All In One Printer/Scanner and that machine
    DOES indeed allow one to Scan 'additional' Pages to FAX. The problem as I
    understand it is that Mac does NOT provide a FAX 'Program' as such but simply FAX capability via the built in Modem.
    What this means is that you cannot Send the Scan to FAX specifically but must instead Send to another Mac Application, namely Preview, that appllication not having the capability of dealing with Multiple Page Faxes obviously.
    You can also Fax from the Mac Apple Works Word Processor but that works for Documents created (or I presume 'copied' or 'pasted') in such Document form.
    There may be a 'method' there whereby after scanning the pages you could then get them into Apple Works docs BUT this is a lot of fuss and bother just to do what should be and IS the EASIEST thing to do in Windows PCs that do
    have actual FAX programs.
    My guess is that there must be a Program that can be added to one's IMac to enable such Multi Page FAXING, either an Apple or Third Party Fax program. If anyone has more info on that it's appreciated. This is complicated by the fact that the use of FAX seems to have become somewhat outmoded by EMail BUT there are a lot of Businesses still using FAX and so you there's a need to continue to have that communication process available.
    I now have ANOTHER question to add to this which I'll also post as a separate topic altogether even though it is tangential:
    I have converted to a One Line does All set up from Manhattan Cable that provides in addition to the TV service, High Speed Road Runner Net, AND a
    Digital Phone which rate is supposedly much better than the competitors.
    The Road Runner is INCREDIBLE, BLAZING Speed, how bout a 56MB File in less than 2 minutes. In addition, this set up has allowed me to eliminate a Second Phone Line dedicated to the Computer and FAX, which saves me bucks.
    The PROBLEM is that my Answering Machine is defeated when I have the Mac set to Receive Faxes. For sure I can deal with this by informing Clients that they can only Fax the Specs for jobs and the like when I'm at my Desk and can activate the Receive BUT I would prefer to have it the old way where they could FAX me AT ANY TIME whether I was at my desk or not and it would go through and otherwise if it was Voice, the Answering Machine would pick up.
    I'm told by the company that they do not have a cure for this problem as yet because both the Answering Machine and Fax are on the same Line and the
    Mac accords priority to the Fax when in Receive Fax mode. SO what I have to do is leave the Receive Fax OFF when I leave my office so the Answering Machine can take the messages.
    Two 'possible' solutions have been suggeste, One is that I might be able to get an Answering Machine that has some sophisticated 'switching' system that could determine where the call should go. A Second idea is that I might be able to get a 'Switching Device' that can be introduced in the Line.
    But again, it seems to me that at this late date for the Technology, there must be some 'intelligence' available to install in the Mac itself that could instantly determine if the incoming call is Fax or Voice and send it appropriately on its way...
    GOT to be some relatively simple Program or Technology to deal with this I would assume...
    SR
    (The latter is not an insurmountable problem needless to say, I CAN simply ask my clients to call ahead and make sure I'm here before they Fax me. But it would be much nicer if it could be hooked up the other way... )

  • Send spool id output (sap script) via email in PDF format

    Dear friends,
    Looking for sample program to send spool id output of sapscript via email in PDF format.
    Regards,
    Praveen Lobo

    Hi,
    Try this code..
    * Parameters.
    PARAMETERS: p_email(50) LOWER CASE.
    PARAMETERS: p_spool LIKE tsp01-rqident.
    * Data declarations.
    DATA: plist LIKE sopcklsti1 OCCURS 2 WITH HEADER LINE.
    DATA: document_data LIKE sodocchgi1.
    DATA: so_ali LIKE soli OCCURS 100 WITH HEADER LINE.
    DATA: real_type LIKE soodk-objtp.
    DATA: sp_lang LIKE tst01-dlang.
    DATA: line_size TYPE i VALUE 255.
    DATA: v_name LIKE soextreci1-receiver.
    DATA rec_tab LIKE somlreci1 OCCURS 1 WITH HEADER LINE.
    * Get the spool data.
    CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'
    EXPORTING
    rqident = p_spool
    first_line = 1
    last_line = 0
    desired_type = ' '
    IMPORTING
    real_type = real_type
    sp_lang = sp_lang
    TABLES
    buffer = so_ali
    EXCEPTIONS
    no_such_job = 1
    job_contains_no_data = 2
    selection_empty = 3
    no_permission = 4
    can_not_access = 5
    read_error = 6
    type_no_match = 7
    OTHERS = 8.
    * Check the return code.
    IF sy-subrc <> 0.
    MESSAGE s208(00) WITH 'Error'.
    LEAVE LIST-PROCESSING.
    ENDIF.
    * Prepare the data.
    plist-transf_bin = 'X'.
    plist-head_start = 0.
    plist-head_num = 0.
    plist-body_start = 0.
    plist-body_num = 0.
    plist-doc_type = 'RAW'.
    plist-obj_descr = 'Spool data'.
    APPEND plist.
    plist-transf_bin = 'X'.
    plist-head_start = 0.
    plist-head_num = 0.
    plist-body_start = 1.
    DESCRIBE TABLE so_ali LINES plist-body_num.
    plist-doc_type = real_type.
    * Get the size.
    READ TABLE so_ali INDEX plist-body_num.
    plist-doc_size = ( plist-body_num - 1 ) * line_size
    + STRLEN( so_ali ).
    APPEND plist.
    * Move the receiver address.
    MOVE: p_email TO rec_tab-receiver,
    'U' TO rec_tab-rec_type.
    APPEND rec_tab.
    IF NOT sp_lang IS INITIAL.
    document_data-obj_langu = sp_lang.
    ELSE.
    document_data-obj_langu = sy-langu.
    ENDIF.
    v_name = sy-uname.
    * Subject.
    document_data-obj_descr = 'Spool attached'.
    * Send the email.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
    EXPORTING
    document_data = document_data
    sender_address = v_name
    sender_address_type = 'B'
    TABLES
    packing_list = plist
    contents_bin = so_ali
    receivers = rec_tab
    EXCEPTIONS
    too_many_receivers = 1
    document_not_sent = 2
    document_type_not_exist = 3
    operation_no_authorization = 4
    parameter_error = 5
    x_error = 6
    enqueue_error = 7
    OTHERS = 8.
    IF sy-subrc <> 0.
    MESSAGE e208(00) WITH 'Error in sending email'.
    ENDIF.
    COMMIT WORK.
    * Send the email immediately.
    SUBMIT rsconn01
    WITH mode = 'INT'
    AND RETURN.
    * Success message.
    MESSAGE s208(00) WITH 'Email sent'.
    Thanks
    Naren

  • Sending and receiving fax documents

    I am wondering if there is a way to send and receive fax documents through my iMac. My internet connection is through a cable modem and have only found a way to fax using a modem. Any ideas would be great. Thanks

    Unless your iMac has a built-in modem port, you will have to use an external fax modem for direct faxing. Otherwise, you can use an internet fax service such as eFax or FaxZero (US/Can only.)
    Matt

  • Sending and receiving faxes from HP3150

    I have an HP3150 connected to my home WiFi network. How can I use it to send and receive faxes?
    Thank you,
    Pete

    Hello @abinrml4,
    Welcome to the HP Forums!
    I understand you would like to know how to send and receive faxes. I will do my best to assist you! What type of printer do you have? Click here to find out: Model Number.
    What type of added features do you have on your fax phone line? Please list this information on this post. I will be looking forward to hearing from you. Have a great day!
    I worked on behalf of HP.

  • Sending and receiving fax

    I have hp officeject pro 8600 all in one. I can send or receiving a fax. I have tested fax test it printed out with
    dial tone detection failed.

    Hi @kimychong,
    Thank you for visiting the HP Support Forums! I see you are having problems sending and receiving faxes with your HP Officejet Pro 8600. You ran a fax test and the dial tone failed. Please continue troubleshooting below:
    Cannot Send or Receive Faxes
    If you are still running into fax problems after the troubleshooting has been done leave me with the following information:
    1. What is the Exact model of HP 8600 you are using as there are a few in the series?
    2. What is your current Operating system, Windows or Mac and which version?
    3. How is the printer connected, USB or Wireless?
    4. Do you get any error messages when sending or receiving faxes?
    5. What kind of phone line do you have, digital, analogue or VoIP?
    I hope to hear from you soon.
    Thanks,
    HevnLgh
    I work on behalf of HP
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to the left of the reply button to say “Thanks” for helping!

  • "unable to send or receive faxes"

    Trying to fax using VoIP.  Have a phone already plugged in.  When i plug into the telephone (fax) port on AIO unit it knocks out my phone.  Whenever i turn on the AIO it tells me "unable to send or receive faxes."   I've tried adjusting settings and restting them.  Nothing.  Is there someway i can test the port on the AIO?  Can i get inside the unit to check it?  Can i check using a multi-meter?
    I'm stuck.

    Hey there @jim17022
    I read about the faxing problem you're having and also saw you on another thread where my colleague had posted the troubleshooting for the faxing concern.
    Please follow the link in @Jamieson's post, here:
    HP Office Jet Pro 8600 N911g Unable to send or receive faxes
    If the troubleshooting does not help at all, please give us a call:
    Please call our technical support at 800-474-6836. If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Happy Monday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Help please:set up mac 10.4.11 with ext dsl modem to send and receive faxes

    Hi and thanks in advance. I have a G4MDD dual processor, and have a dsl modem for internet connection. I want to set up to send and receive faxes. I can make and receive phone calls while connected to the internet. any ideas or help appreciated. Thanks again.
    Message was edited by: R.Andom

    I cannot send/receive faxes via my dsl, I have to use my regular phone line. (My DSL modem only has one phone jack port, and that is to connect it to the outside world. Pretty sure this is true of every DSL modem.)
    When I need fax capability, I unplug the phone line to my telephone at the phone end, and plug that cable into the modem port in the back of the G4. (The modem is built-in.) After sending / receiving, I switch the cable back to the phone.
    You set up fax capability in System Preferences / Print and Fax.

  • Send smartforms as fax and email

    Hi SAP gurus,
    Can you please tell me on how to send smartforms as fax and email?
    I would really appreciate your help.
    Thanks in advance.

    Hi,
    Check the below link.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/a5/28d3b9d26211d4b646006094192fe3/content.htm
    Thanks,
    Sankar M

Maybe you are looking for

  • How to merge albums in i photo

    How do I combine/merge albums in iphoto?  I have numberous albums with the same title but can't combine them

  • Sync issue with Outlook 2010

    Hi, Not sure if this would be the correct place for this, but here is my issue We have a client with Exchange 2010, and Outlook 2010 and they seem to be getting sync issues. the error that comes up is 10:58:52 Synchronizer Version 14.0.6117 10:58:52

  • Mackbook pro to flat screen tv

    I have a 07 macbook pro if i install lion on it will airplay work from the macbook pro to my flat screen tv ?

  • How do i find what device is ordering songs

    how do i find what device is ordering songs

  • Visio and MS Project error

    I am evaluating LiveCycle ES Version 8.01 for document conversion to PDF. I am only interested in the PDF Generator product of the LiveCycle suite. I need to convert MS office documents including Visio diagrams and MS Project files. I have Visio and