Voice mail fax option?

I have the visual vm that allows someone to send a fax but now that I have it how do you read it?

BrokerT wrote:
This was an option that they wanted to offer on their business accounts but could never get it to work so they just dropped it!!
Now the question is WHY does it give my callers the option to SEND ME A FAX THAT I CAN'T READ??????? And Verizon doesn't SUPPORT???
Wow - even without the visual voicemail, your "automatic" greeting  from Verizon says - "to send a fax, press 4", which you can remove from your greeting options (but most people don't) and the capability is not there at all?  This really needs to be fixed... !

Similar Messages

  • Voice mail indicator not working I've tried the steps in voice mail - personal options, 1 to set the indicator to on but 1 is an invalid option:

    Documentation says to go into voice mail, select to change the personal options, then 1 to set the indicator on but 1 is not an option on my phone.

    Okay so I did all that and I noticed that when someone calls me and my celullar data is on the voicemail registers..... when my cellular data is off and a call comes in and goes to voicemail.... it does not register until I go to call someone else then the notice comes on for as long as I am on the phone.... if I do not make a call for a few days I never know that I have a phone call. I turn off my cellular data since I only have 250MB for the month... and most of the time I am in a wifi zone....which make me wonder if my cellular data is turned on and I am in a wifi zone and should miss a call since the wifi takes over would I get the notice... I should not have this turned on all the time for the sole purpose of knowing if at some time I am in a dead zone and miss a call or not sitting right next to it.... my office is a dead zone as it is in an industrial building..... this is very disappointing especially since it was working for me at some point..... in conclusion still not working

  • Mail & fax option in Smartforms

    Hi,
    Is there an option of sending mails & fax through Smartforms.Pleas guide me through this query.
    Thanks.

    Go to SPAD and check if u have configured Fax machine in SAP or not..
    Then u select the Medium as 5 and then go to NACE..select the application ...
    then press condition type...
    there u will get a list of output types..just select the one for your object and double click on it..
    Enter the necessary values and then u will be taken to a screen..
    There on Top left u can see communication method...
    Enter the Fax dest that u  have seen in SPAD tcode..
    Reward the points if u find the answer helpful.
    Thanks.

  • Smart form-Mail & fax

    Hai ,
    I have a requirement where I need to generate smart form.
    And there should be an option for mailing & faxing for that smartform.
    So far I ceated smart form & the smart form is getting displayed properly.
    Now could any one please tell me how to provide the mailing & fax options for this smart form?
    How it actually works?means how it will give option for both mailing & for Faxing at a time?
    Thanks & Best Regards,
    Bhaskar.

    Hi,
    Here is the code to send the Smartform to mail as PDF attachment.
    place the receivers mailid  in the below program
    *& Report ZTEST_PDF_MAIL
    REPORT ZTEST_PDF_MAIL.
    Internal Table declarations
    DATA: I_OTF TYPE ITCOO OCCURS 0 WITH HEADER LINE,
    I_TLINE TYPE TABLE OF TLINE WITH HEADER LINE,
    I_RECEIVERS TYPE TABLE OF SOMLRECI1 WITH HEADER LINE,
    I_RECORD LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    Objects to send mail.
    I_OBJPACK LIKE SOPCKLSTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJTXT LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_OBJBIN LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE,
    I_RECLIST LIKE SOMLRECI1 OCCURS 0 WITH HEADER LINE,
    Work Area declarations
    WA_OBJHEAD TYPE SOLI_TAB,
    W_CTRLOP TYPE SSFCTRLOP,
    W_COMPOP TYPE SSFCOMPOP,
    W_RETURN TYPE SSFCRESCL,
    WA_DOC_CHNG TYPE SODOCCHGI1,
    W_DATA TYPE SODOCCHGI1,
    WA_BUFFER TYPE STRING, "To convert from 132 to 255
    Variables declarations
    V_FORM_NAME TYPE RS38L_FNAM,
    V_LEN_IN LIKE SOOD-OBJLEN,
    V_LEN_OUT LIKE SOOD-OBJLEN,
    V_LEN_OUTN TYPE I,
    V_LINES_TXT TYPE I,
    V_LINES_BIN TYPE I.
    CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
    EXPORTING
    FORMNAME = 'ZTEST'
    IMPORTING
    FM_NAME = V_FORM_NAME
    EXCEPTIONS
    NO_FORM = 1
    NO_FUNCTION_MODULE = 2
    OTHERS = 3.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    W_CTRLOP-GETOTF = 'X'.
    W_CTRLOP-NO_DIALOG = 'X'.
    W_COMPOP-TDNOPREV = 'X'.
    CALL FUNCTION V_FORM_NAME
    EXPORTING
    CONTROL_PARAMETERS = W_CTRLOP
    OUTPUT_OPTIONS = W_COMPOP
    USER_SETTINGS = 'X'
    IMPORTING
    JOB_OUTPUT_INFO = W_RETURN
    EXCEPTIONS
    FORMATTING_ERROR = 1
    INTERNAL_ERROR = 2
    SEND_ERROR = 3
    USER_CANCELED = 4
    OTHERS = 5.
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    I_OTF[] = W_RETURN-OTFDATA[].
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT = 'PDF'
    MAX_LINEWIDTH = 132
    IMPORTING
    BIN_FILESIZE = V_LEN_IN
    TABLES
    OTF = I_OTF
    LINES = I_TLINE
    EXCEPTIONS
    ERR_MAX_LINEWIDTH = 1
    ERR_FORMAT = 2
    ERR_CONV_NOT_POSSIBLE = 3
    OTHERS = 4.
    IF SY-SUBRC <> 0.
    ENDIF.
    LOOP AT I_TLINE.
    TRANSLATE I_TLINE USING '~'.
    CONCATENATE WA_BUFFER I_TLINE INTO WA_BUFFER.
    ENDLOOP.
    TRANSLATE WA_BUFFER USING '~'.
    DO.
    I_RECORD = WA_BUFFER.
    APPEND I_RECORD.
    SHIFT WA_BUFFER LEFT BY 255 PLACES.
    IF WA_BUFFER IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Attachment
    REFRESH: I_RECLIST,
    I_OBJTXT,
    I_OBJBIN,
    I_OBJPACK.
    CLEAR WA_OBJHEAD.
    I_OBJBIN[] = I_RECORD[].
    Create Message Body Title and Description
    I_OBJTXT = 'test with pdf-Attachment!'.
    APPEND I_OBJTXT.
    DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
    READ TABLE I_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = SY-DATUM + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    Main Text
    CLEAR I_OBJPACK-TRANSF_BIN.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    I_OBJPACK-BODY_NUM = V_LINES_TXT.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    APPEND I_OBJPACK.
    Attachment (pdf-Attachment)
    I_OBJPACK-TRANSF_BIN = 'X'.
    I_OBJPACK-HEAD_START = 1.
    I_OBJPACK-HEAD_NUM = 0.
    I_OBJPACK-BODY_START = 1.
    DESCRIBE TABLE I_OBJBIN LINES V_LINES_BIN.
    READ TABLE I_OBJBIN INDEX V_LINES_BIN.
    I_OBJPACK-DOC_SIZE = V_LINES_BIN * 255 .
    I_OBJPACK-BODY_NUM = V_LINES_BIN.
    I_OBJPACK-DOC_TYPE = 'PDF'.
    I_OBJPACK-OBJ_NAME = 'smart'.
    I_OBJPACK-OBJ_DESCR = 'test'.
    APPEND I_OBJPACK.
    CLEAR I_RECLIST.
    I_RECLIST-RECEIVER = 'receiver mail id'.
    I_RECLIST-REC_TYPE = 'U'.
    APPEND I_RECLIST.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    COMMIT_WORK = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    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.
    WRITE:/ 'Error When Sending the File', SY-SUBRC.
    ELSE.
    WRITE:/ 'Mail sent'.
    ENDIF.
    If you want to send some text as Body of the Mail then follow this once
    when u r callin the FM'SO_NEW_DOCUMENT_ATT_SEND_API1'.. points to remember
    1.u have to pass the body of content in table CONTENTS_TXT(ia m using I_OBJBIN) (each line a record) then. suppose i have appended 11 records to the table CONTENTS_TXT .
    2.PACKING_LIST(iam usign I_OBJPACK) table u ahve to append a redord as follows
    I_OBJPACK-TRANSF_BIN = ' '.
    I_OBJPACK-HEAD_START = 000000000000001.
    I_OBJPACK-HEAD_NUM = 000000000000001.
    I_OBJPACK-BODY_START = 000000000000002
    I_OBJPACK-BODY_NUM = 000000000000010.
    I_OBJPACK-DOC_TYPE = 'RAW'.
    append I_OBJPACK-.
    by the above code system treat the first line in table I_OBJBIN as header and the 2nd line to 10 lines tread as body.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    DOCUMENT_DATA = WA_DOC_CHNG
    PUT_IN_OUTBOX = 'X'
    TABLES
    PACKING_LIST = I_OBJPACK
    OBJECT_HEADER = WA_OBJHEAD
    CONTENTS_BIN = I_OBJBIN
    CONTENTS_TXT = I_OBJTXT
    RECEIVERS = I_RECLIST
    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.
    Regards,
    vijetha.

  • I accidentally hit the REMOVE FROM LINE button on my Premium Voice Mail. How can I get it back? The only options I found was visual voice mails.

    I accidentally hit the REMOVE FROM LINE button on my Premium Voice Mail. How can I get it back? The only options I found was visual voice mails.

    TheAshburns,
    No worries, we can get you back on the road with the correct voicemail service. Just to be clear, did you want to readd Premium Visual Voicemail? If so, click the link and select question #7 for steps http://www.verizonwireless.com/support/visual-voice-mail-faqs/?lid=sayt&sayt=visual%20voic*
    SandyS_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Brother fax machine and digital voice mail

    Is it possible to use digital voice mail and a fax machine simultaneously.
    I just bought a Brother fax 2840 machine and it doesn't seem that I can continue to use my digital voice mail with the fax machine without adding another line, can anyone help.
    Thanks

    I have problems when my Brother Multifunction machine is set to phone/fax which enables my answering machine too.
    When soemone calls and they hang up, I get a ring busy. It seems I can't use my messaging center on the Btother. Any suggestions? Is there a way to use the Verizon Voicemail and have it recognize if it is a fax being sent so that it rings through?

  • Voice mail does not give me the option to set it up?

    When I touch the voicemail icon it dials directly to the voice mail.  There is no option to setup greeting or use speaker or delete or replay...

    Yes.  It is active and I am receiving messages.  The thing is that when I touch the phone icon and then the voicemail icon it does not show the Voicemail screen where I can change the greeting  or choose to listen by speaker or call back button option or delete button option..... It just calls the voicemail box directly.

  • I need a multiple message voice mail app for Iphone 4S that also provides an auto-attendant, e.g the caller can dial 1 for one of business's or 2 for the other. Each of these options will need to have a different voice mail greeting. Help please?

    I need a multiple message voice mail app for Iphone 4S that also provides an auto-attendant, e.g the caller can dial 1 for one of business's or 2 for the other. Each of these options will need to have a different voice mail greeting. Help please?

    There are no alternative voicemail apps - the core functionality of the phone can not be replaced.
    You'll have to look for an external service, that can then forward calls for each caller onto the correct phone.
    At our business we use Voipfone.co.uk which allows multiple phone lines to come into one VOIP account.

  • How to set the Mail and Fax options  for the Smartforms ???

    How to set the Mail and Fax options  for the Smartforms ??? Please reply me very soon. Its a life deciding question now for me. Please .

    >
    veera Karthik wrote:
    > How to set the Mail and Fax options  for the Smartforms ??? Please reply me very soon. Its a life deciding question now for me. Please .
    Hi
    Check this Link:
    http://help.sap.com/saphelp_nw04/helpdata/en/a5/28d3b9d26211d4b646006094192fe3/frameset.htm
    P.S: Never say reply me soon....people answer you here voluntarily and as everyone has their own desk to manage...sp replies may late or early..depending upon the availabality of the members.
    Vishwa.

  • How to remove the voice mail option

    How can i remove the voice mail option in my iphone 4s . Whenever i tap that icon the carrier  charges me ? pls help me ...................

    Hi, I'm having the same problem. I need the email icon disabled or removed. It can be done via the UI but I'm running it on a Citrix server and need it to default to disable or best case gone.

  • All my voice mail options do not seem to be working.

    I just got my iPhone and upon a family member telling me, I had a ton of voice mail notifications that were not showing up on the bottom bar over the phone.  The notifications work for missed calls and recent activity but do not show me if I have voicemail.  Upon looking deeper into it, I don't even seem to have all the features in the voicemail tab that the manual says I should.  (Buttons to let me get to changing my greeting and password, etc.)  Anyway, I find it weird, just got the phone a couple of weeks ago and wondering if its a carrier issue (sprint), or an update I need to make to the phone.  Bottom line, I would like to know if I have voicemails or not.  I have an IPhone 4.
    Thanks.
    Chris

    When you open the phone app there should be a voicemail icon at the lower right corner of the screen. If there isnt perhaps trying a restore through iTunes. I have visual voicemail and when I updated to iOS 5 i had to call my carrier and have them reactivate it

  • E-mail Manager Option for UCCE

    am looking at implementing E-mail, Fax & SMS channels to UCCE (ie IPCC Enterprise. I currently have Voice Recognition (Nuance) and IP IVR. I'm not sure if the Cisco E-mail Manager Option is the best solution when I still need to cater for Fax & SMS. Any suggestions?

    If you implement the Cisco E-Mail Manager option, you can easily integrate FAX into it using the T.37 On Ramp feature available in IOS.
    http://www.cisco.com/en/US/tech/tk652/tk777/technologies_tech_note09186a00801fe5d9.shtml
    T.37 On Ramp will convert a FAX into an email, sending it to the mailbox used by E-Mail Manager to process incoming mail.

  • Jabber call to voice mail fails with fast busy over VPN

    I have an issue that I ran into with CIPC phones over a VPN.  If a CIPC phone called over a VPN and started ringing a phone the call would fail with fast busy at the time the call would be forwarded to voicemail.  I found the issue was when remote the CIPC phone would negotiate the g.729 codec, when forwarded to a voicemail pilot over a SIP trunk set to g.711 the call would fail due to codec missmatch when no transcoders are present.
    So now I am running into what I believe to be the same issue with Jabber, when on premise the calls to voice mail work just fine, but when remote they fail.  I can directly call the voicemail pilot without error, but if calling a phone the call gets fast busy at the point we are forwarded to voicemail.  Even though all my regions are set to talk to all other regions on G.711 and the voicemail SIP trunk is set to G.711, I believe with the new features in CUCM9 that a lower speed codec has been negotiated since the we are going over the VPN, or Jabber has done this as it knows it's over VPN (not sure).  WIth CIPC I could go into the settings and turn off the Optimize for Bandwidth check box and the call would negotiate G.711.  With Jabber I can't find anything that would tell my Jabber client to stay on G.711 and I can only imagine this is a codec missmatch as the following are true.
    1. CIPC and Jabber share the same line
    2. VPN established and CIPC optimised for low bandwidth un-checked
    3. Over the same VPN the CIPC phone can leave a voicemail
    4. Over the same VPN the Jabber client gets fast busy once forwarded to voicemail
    5. Voicemail environment is Exchange-UM over SIP trunk
    6. SIP trunk is assigned a Device Pool, that is assigned to a region that all other regions communicate G.711 to
    7. On CIPC if optimised for low bandwidth is checked I get the exact same issue as I get with the Jabber client (fast busy when forwarded to voicemail)
    Would anyone know what I can do in CUCM 9 to fix this issue, as said no issue when all devices are on premise.  Wondering if there is a service parameter or a way to change the codec selection so the Jabber client attempts to always negotiate G.711.  The correct answer would be to get some PVDM DSP resources and kick up a transcoder in my resource group, and that may be what I talk them into doing if I have no other options.                  

    We have been getting the exact same thing for almost a year now... since switching to FiOS Digital Voice in May of last year!  Every time I call in to report it they 'escalate' the issue but it never gets resolved.  The problem seems to be in the initial connection.  Most of the time it works fine but, several times a month, after I call to get messages and it starts to play the new message it goes dead and I get the busy signal.  I get the same message when I call back:  “I’m sorry – that account is in use at this time.  Please try again later!”  I have even called in with my cell phone and get the same message!  I HAVE EVEN used the Internet to see if I could get my messages and, when I hit Play, I get a pop-up saying: “Your Voice Mail box is currently in being accessed; please try again later.  If the problem continues, please contact our Customer Support Center at 1-888-553-1555. We apologize for any inconvenience.”  This is obviously a software bug that Verizon has no clue on how to troubleshoot OR fix!!!  I wonder how many people have the problem and just don’t bother reporting it because of the hassle?  When it first started happening they destroyed my entire mailbox and I had to re-enter the complete mailbox setup again – 3 times!!!  NEVER let them talk you into that!!!  It’s their problem and they need to fix it!!!!!!!  I wish I could go back to the ‘normal’ voicemail we originally had… they want hundred$ to switch back because I’d be breaking my #$@%^&* contract!  Good luck if you have Verizon………

  • Incoming Calls Sent Straight to Voice Mail

    This problem seems to be linked to screen blanking. If I allow the screen to go dark by itself (after the preset number of seconds--30, in my case), all incoming phone calls will be sent direct to voice mail without ringing. I get a notice, then, if they leave a voice mail...but of course they have already hung up and I can't answer the call. People who don't leave a voice mail, I never know that they have called.
    If I shut down the screen manually, phone calls ring as usual and I can anwer them. I have been to two different Verizon stores to have this checked out. They have removed the battery and reinstalled it, and also have reprogrammed a couple of times. They've also checked bunches of settings to be sure I haven't accidentally pressed a wrong button somewhere. Still, this happens. If I do not manually shut down the screen, I lose my incoming calls.
    Any ideas? I love my phone and would hate to return it, but that may be my only option. I shouldn't have to manually shut off my screen after every operation in order to receive calls.

    slolife wrote:
    This problem seems to be linked to screen blanking. If I allow the screen to go dark by itself (after the preset number of seconds--30, in my case), all incoming phone calls will be sent direct to voice mail without ringing. I get a notice, then, if they leave a voice mail...but of course they have already hung up and I can't answer the call. People who don't leave a voice mail, I never know that they have called.
    If I shut down the screen manually, phone calls ring as usual and I can anwer them. I have been to two different Verizon stores to have this checked out. They have removed the battery and reinstalled it, and also have reprogrammed a couple of times. They've also checked bunches of settings to be sure I haven't accidentally pressed a wrong button somewhere. Still, this happens. If I do not manually shut down the screen, I lose my incoming calls.
    Any ideas? I love my phone and would hate to return it, but that may be my only option. I shouldn't have to manually shut off my screen after every operation in order to receive calls.
    If you have been to two different Verizon Wireless stores and your phone's concerns have not been resolved after our representatives did some troubleshooting steps, you may need to consider a phone replacement. Keep in mind that your phone includes a manufacturer’s warranty that will provide a Certified Like New Replacement phone identical to your current device. For more details please visit the link below:
    Certified Like-New Replacement Program

  • Unable to set up voice mail

    When I dial the number provided to me to set up my voice mail, I get a message that I am entering an incorrect phone number.  When I dial my new number directly to attempt to access voice mail that way, I get a rapid busy signal.  I have attempted to call Tech Support but with on-hold waits of 45 minutes one time and over an hour the next, I simply give up (I don't have that much time to carry the phone around waiting to reach a live representative).  Any ideas?  Are these type of waits the norm for Fios Tech Support?
    Solved!
    Go to Solution.

    Huh, so I'm not the only one.  Switched to FIOS (all 3 services) on 4/22 and it took until last night to get someone to turn on voicemail for the account.  Today I went through the steps using the 888 number to set up my greeating and such.... but,.... there was no option to set up how many rings would trigger voicemail.
    Called my home number to test and it just rings with no voicemail pickup.  I do not look forward to calling the support number again and wading through all of the voice prompts and then waiting and waiting to get a real person.
    Oh, and I followed the link on fhe voice page to download the PDF instructions.  After logging on at the 888 number I'm suppsed to press "9"..... but that is an invalid choice.
    I have to give Verizon credit, they've accomplished something that I thought was impossible -- they've made Comcast tech support look good.
    Well done, Verzion... well done.

Maybe you are looking for