Why won't my Razr Maxx ring when called from my home phone or the other cell phone (I-phone) on my Verizon account?

Why won't my Razr Maxx ring when called from my home phone or the other cell phone (I-phone) on my Verizon account?

Hi Ruth:
Thanks for reaching out to me about this issue.
This has been happening since I got the phone a couple of years ago.
I did not realize that my home land line and my wife's cell phone
always go straight to voice mail until my wife pointed it out to me
several months ago.  Is there a setting I can adjust?
Yes, I can make calls to our home land line and to her cell phone
without being diverted to voice mail.
Any advice you might have would be most welcome.
Thanks.
Greg Bostwick
On 12/22/14, Verizon Wireless Customer Support

Similar Messages

  • Refcursor not returning rows when called from non SQL*Plus IDE or other

    Hi all,
    I have a very weird problem.
    We have recently performed a minor upgrade to our oracle database and are now using:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
    PL/SQL Release 10.2.0.5.0 - Production
    CORE    10.2.0.5.0      Production
    TNS for Linux: Version 10.2.0.5.0 - Production
    NLSRTL Version 10.2.0.5.0 - Production
    5 rows selected.We have a crystal report selecting data from a refcursor returned by a stored procedure.
    The stored procedure updates data when called as well as returning the refcursor in question.
    Observe the following test scenario executed in SQL*Plus:
    SQL> create table testtab (teststr varchar2(100));
    Table created.
    Elapsed: 00:00:00.00
    SQL> insert into testtab values ('X');
    1 row created.
    Elapsed: 00:00:00.00
    SQL> create or replace procedure testtabproc (p_listcur in out sys_refcursor)
      2  as
      3  begin
      4 
      5     open p_listcur for
      6        select *
      7          from testtab
      8         where teststr = 'X';
      9 
    10 
    11     update testtab
    12        set teststr = 'Y';
    13 
    14        commit;
    15 
    16  end;
    17  /
    Procedure created.
    Elapsed: 00:00:00.00
    SQL> declare
      2 
      3  v_list_cur sys_refcursor;
      4 
      5  type t_out_rec is record (teststr varchar2(100) );
      6 
      7 
      8 
      9  v_out_rec t_out_rec;
    10 
    11  v_rec_count   number := 0;
    12  v_count_limit number := 10000;
    13 
    14  begin
    15 
    16  dbms_output.put_line('about to call proc');
    17
    18  testtabproc(v_list_cur);
    19 
    20  dbms_output.put_line('about to fetch records');
    21 
    22  fetch v_list_cur into v_out_rec;
    23  while v_list_cur%found loop
    24     v_rec_count := v_rec_count + 1;
    25     if v_rec_count <= v_count_limit then
    26       dbms_output.put_line(v_out_rec.teststr);
    27     end if;
    28  fetch v_list_cur into v_out_rec;
    29  end loop;
    30  dbms_output.put_line('complete. selected '||v_rec_count||' records.');
    31 
    32 
    33  end;
    34  /
    about to call proc                                                                                                                 
    about to fetch records                                                                                                             
    X                                                                                                                                  
    complete. selected 1 records.                                                                                                      
    PL/SQL procedure successfully completed.
    Elapsed: 00:00:00.00
    SQL> select * from testtab;
    TESTSTR
    Y
    1 row selected.
    Elapsed: 00:00:00.00
    SQL> as you can see, the cursor returns data and the table is updated.
    now, our problem is with crystal and also when I use the same test case via another IDE like TOAD.
    No data is returned from the list but the table is still updated.
    We suspect that something is happening that is causing the table to be updated before the refcursor is opened, or at least before the predicates are applied.
    has anyone else encountered this problem before?

    Tubby wrote:
    WhiteHat wrote:
    nope - it works from sqlplus itermitantly (i.e. we always get the debug output but the cursor only sometimes fetches the rows).
    it is almost as if the commit is being executed before the cursor is opened.
    I still havn't been able to reproduce it except with the actual scenario that I am working with...Is the code you are dealing with exactly the same as the skeleton you've posted in your original post? Do you perhaps have a generic exception catcher in there somewhere (perhaps catching and hiding an ORA-01555) when the cursor is being fetched?
    Not that i expect it to make any difference, but i'm curious as to why you've declared your cursor as IN / OUT ?
    p_listcur in out sys_refcursor
    the code structure in the real example is almost identical to that test case I produced - the exception handler is only catering for no_data_found, all other errors should be raised as normal.
    edit: sorry I forgot to add - it's in/out because apparently that's what crystal reports needs in order to use the refcursor..... I'm not a crystal guy so I can't be any more specific than that sorry......
    Edited by: WhiteHat on Oct 11, 2010 9:34 AM

  • HT4979 why can I not send email when away from my home wifi? Am able to receive messages OK, and outgoing mailserver is correct?

    Why am I unable to send email when away from my home wifi ? I am able to receive mail OK, and have double- checked the outgoing server which is correct. This problem is consistent with my Macbook Pro, iPhone, and iPad2.
    Attempts to send messages results in them sitting in the Outbox and never- ending 'sending message' displayed.
    I am able to send using my   me.com  server.
    Home service provider is Cogeco.
    Any help would be appreciated.

    iOS: Unable to send or receive email
    http://support.apple.com/kb/TS3899
    Can’t Send Emails on iPad – Troubleshooting Steps
    http://ipadhelp.com/ipad-help/ipad-cant-send-emails-troubleshooting-steps/
    iPad Mail
    http://www.apple.com/support/ipad/mail/
    Try a Reset - iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    Or this - Delete the account in Mail and then set it up again.
     Cheers, Tom

  • Phone does not ring when called any suggestions

    Iphone4 does not ring when called. Any suggestions?

    Is the silent switch on?
    Does the ringer not sound or does the call not come through at all?
    Can you make outgoing calls?

  • Advanced table:not able to view more than 10 rows when called from workflow

    Hi everyone,
    I'm calling a page that contains advanced table and its controller class from two places.
    First one is from a inquiry form, when this page is called it works fine. when there are more than 10 rows, first 10 are shown on page render and when we click on Next link, other rows are shown. This is becuase I have given the records displayed property on adavanced table = 10. I'm fine till here.
    Second one is I'm calling this page again from a workflow notificaiton. There is a link called view more details on the workflow notification , click of this link will open the page with 10 records displayed. But when user tries to click on Next it doesn't work. It just doesn't refresh.
    Its very wierd,. not able to understand what could be wrong when calling from wf notificiton. Its the same page and conroller code used in both the places.
    Please help me!!
    Thanks
    Sunny

    Thanks for your response Kristofer. You are correct, there was a difference in the parameters and the issue is resolved now.

  • Why won't Aperture 2 support RAW files imported from Canon 60D when it does from my Olympus DSLR?

    Why won't Aperture 2 support RAW files imported from Canon 60D when it does from my Olympus DSLR?

    I'm afriad the fact that your Olympus dSLR is supported is no relevance.
    The Raw from every model of camera is different. Note: that's every model not every brand. So, the NEF produced by a Nikon D40 is not the same as the NEF produced by a D60, the CR2 produced by a Canon 350 is not the same as the CR2 produced by a Canon 400.
    Support for individual camera models has to be added one by one, and Apple will update the OS to work with the most recent version of the software. That's an incentive for you to keep up-to-date. So, for support for your 60D you'll need 10.6.5 plus Aperture 3 and/or iPhoto 11.
    Regards
    TD

  • Why won't all of my smart playlists sync from itunes to my ipad?

    Why won't all of my smart playlists sync? They show up in the playlist screen of my ipad music app. When I click on the playlist, there are no songs listed. I sync it again, and the playlist now shows zero songs in the list. I keep trying to sync it, and it goes back and forth from showing there are 60 songs in the playlist, which I can't play, to showing zero songs. Please help.

    Yes, sorry, you are correct, it was iTunes Match. I purchased storage on iTunes Match (probably a bad idea), because I had over 1000 songs on my i-phone 4S -which is eating up my storage space. Well, anyway...After I purchased it, I followed the instructions: go to: Settings, "open" music, "Turn on" iTunes Match. After I did that, I opened up the Music App -on my phone -ALL of my playlists were gone and only 208 songs showed... I messed up my phone once before and I had to log into my i-Tunes account (on my computer) and "reset" to another date. I would like to do that again -if possible...
    Please help!

  • Why won't my iMessage work with only one contact in my phone all my other iMessages send and they just got an iphone but all their iMessages are sending also. I've tried restarting my phone, deleting messages, contact, restarting network

    Why won't my iMessage work with only one contact in my phone all my other iMessages send and they just got an iphone but all their iMessages are sending also. I've tried restarting my phone, deleting messages, contact, restarting network

    Hello Jesslb23,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    To resolve issues with sending and receiving iMessages, follow these steps first
    Check iMessage system status for current service issues.
    Go to Settings > Messages > Send & Receive and make sure that you have registered iMessage with your phone number or Apple ID and that you have selected iMessage for use. Learn more about troubleshooting iMessage registration if the phone number or Apple ID isn't available for use.
    Open Safari and navigate to www.apple.com to verify data connectivity. Learn more about troubleshootingcellular data or a Wi-Fi connection if a data connection isn't available.
    iMessage over cellular data might not be available while on a call. Only 3G and faster GSM networks support simultaneous data and voice calls. Learn more about which network your phone supports. Go to Settings > Wi-Fi and turn Wi-Fi on to use iMessage while on a call if your network doesn't support simultaneous data and voice calls.
    Restart your device.
    Tap Settings > General > Reset > Reset Network Settings on your iPhone.
    If you are still unable to send or receive an iMessage, follow these steps
    Make sure that the contact trying to message you isn't blocked in Settings > Messages > Blocked.
    Verify that the contact you are attempting to send a message to is registered with iMessage.
    If the issue occurs with a specific contact or contacts, back up or forward important messages and delete your current messaging threads with the contact. Create a new message to the contact and try again.
    If the issue occurs with a specific contact or contacts, delete and re-create the contact in the Contacts application. Create a new message to the newly created contact and try again.
    Back up and restore your device as new.
    Best of luck,
    Mario

  • Phone will not ring when called

    Hello... I just purchased the iPhone from AT&t and the phone will not ring when called.  I have gone  to settings, sounds, ringtones and all looks good.  Phone sometimes shows a caller is calling but not always and it is not ringing.  Please help>>>

    If the issue is still occuring try a restore just in case.
    If that does not solve the issue..... Take it back to where you purchased it from
    AT&T's DOA (dead on arrival policy) is 30 days from the day of purchase.
    They should be able to replace the iPhone for you as long as you ask them to within 30 days of it being purchased.

  • HT4095 Why won't a movie download that I rented from iTunes Store

    Why won't a movie download that I rented from iTunes Store

    Click here and ask the iTunes Store staff for assistance.
    (114449)

  • Standalone Projector won't work on a Mac when output from Mac Flash 8 Pro

    Standalone Projector won't work on a Mac when output from Mac Flash 8 Pro
    I'm outputting a Mac projector file that will work on my mac computer. However, when I upload it to FTP and download it my mac or another mac, it won't work! What's going on? I've tried adding ".app" to my file and it still won't work. Help!
    Here's my set up: Flash 8 Pro on Mac Intel with Mac OS 10.4.11

    Hi,
    Does it work if you .zip up the projector and FTP the .zip and then unzip the projector on the other Mac's?  A projector is basically an application.  Applications in Mac's have package contents and resource bundles.  When copying files over the network on Mac's, symbolic links inside the package contents and bundles can get messed up.
    Thanks,
    Nivesh

  • Why won't my ipad send a simple txt message to a phone number that is not listed with imessage. It workls fine from my iphone. Same carrier.

    Why won't my ipad send a simple txt message to a phone number that is not listed with imessage. It works fine from my iphone. Same carrier.

    You can read why here:
    about messages
    http://support.apple.com/kb/HT3529
    Troubleshooting messages
    http://support.apple.com/kb/TS2755

  • Does anyone know why when printing from light room to pdf the program just closes on me? I've talked to tech support and they are going to get back to me tomorrow but I am desperate I have tuns of homework to finish !!

    Does anyone know why when printing from light room to pdf the program just closes on me? I've talked to tech support and they are going to get back to me tomorrow but I am desperate I have tuns of homework to finish !!

    No, but if you really mean that the way you said it, I don't know that Print is the best way to this. If you haven't already, after selecting the images you want to get printed, try clicking the Export button in Book or Library module and then selecting format .PDF. Once you export the file to .PDF, try opening it where you saved it and printing from there, not in Lightroom but in Adobe Reader. If that doesn't help, here are a couple of videos that might--follow their instructions carefully with no shortcuts:
    Adobe Photoshop Lightroom 4's Export to PDF Using the New Book Module - YouTube
    Lightroom 5 - Exporting Images | Getting Started with Adobe Photoshop Lightroom 5 | Adobe TV
    If Lightroom keeps closing even when you try all this, you may need to reinstall Lightroom because your copy may be screwed up.

  • Why won't my Intel iMac boot up, either from the internal hard drive or the DVD drive? It just displays a light grey screen, without any other icons, etc. The fact that it won't boot from the original system DVD is what baffles me the most. Any ideas?

    Why won't my Intel iMac boot up, either from the internal hard drive or the DVD drive? It just displays a light grey screen, without any other icons, etc. The fact that it won't boot from the original system DVD is what baffles me the most. Any ideas? It uses the latest version of Mavericks. Thanks!

    If the C key for Install Disc or R Command for OS X Recovery startup commands are not working, try holding the Option key for the Startup Manager.
    see > Startup Manager: How to select a startup volume
    If that does not work and you using a wireless keyboard, it may have become unpaired and you need to dig up a USB keyboard to invoke the startup commands.
    For more on gray screen, see > Mac OS X: Gray screen appears during startup

  • Does IPad 2 have a ring when called?

    Does iPad 2 have a ring when called?

    The iPad has no built-in telephone capability , but will be able to notify you of an incoming call on FaceTime or other Apps.

Maybe you are looking for

  • Disappoint​ing camera of lenovo a6000

    Same picture clicked multiple times and result is a piece of crap, each n everytime same picture most of time blurred .it seems the camera app having some kind of focussing problem. Since i am also using sony Ericsson phone with 5 mp at back is super

  • Creating formulas in Numbers - quick key to reference cells

    Former Excel person, moving over to Numbers -- very simple question on how I can use keystrokes to reference cells when creating a formula, rather than typing in the cell or using the mouse. In Excel would just type "=", then could use the arrows key

  • ZFS tries to mount SAN volume before ISCSI is running

    I am running Solaris 10 x86 U7. It is actually a VMWare guest (ESX4) on a Sun X4170 server- although I do not believe that that is relevant. I have a Sun 2510 iSCSI SAN appliance. I have an iSCSI volume with a ZFS Pool that is mounted on the server.

  • Re: (forte-users) Ok, what's the "secret" for setting serverside envi

    Dear Robinson, It seems to be that you have 2 ways of solving the problem: 1) restart forte after setting the environment variables 2) write a little application which sets the required variables, using the task.part.OperatingSystem.SetEnv(name,value

  • IPS monitoring

    Can an IPS module monitor traffic for (2) 6500s working in load balancing mode?