Can someone please tell me if I qualify for the subsidized iPhone pricing?

I am a Verizon customer. My two year plan with Verizon ends 1/29/09. I don't know if my Razr was subsidized by Verizon when I first got it. I plan to pay Verizon's early termination fee, and buy a 16GB iPhone asap. Can anyone tell me if I qualify for AT&T's subsidized prices. Does AT&T even care about my Verizon plan or phone, or only the status of AT&T customer's plans and phones when it comes to the subsidized prices? Thanks so much for your help!

You will becoming a new AT&T customer...so you will be able to purchase the iPhone at a subsidized price. The 16GB one is $299.00! Make sure you bring a photo ID (Driver's License) and your Verizon account # and password, so AT&T can port your Verizon # over and take care of cancelling your Verizon contract. Also bring a credit card in your name and your SS#.

Similar Messages

  • Can someone please tell me what's wrong with the Inside of my iPad Charger? *Picture Included

    It won't charge my iPad. So I wanted to take a good look inside and see what's wrong with it. But I don't know anything about these wires. Here's the Pic of it.
    http://oi39.tinypic.com/2ed5yl2.jpg
    http://oi42.tinypic.com/5btptt.jpg
    http://oi39.tinypic.com/ih8rq1.jpg
    PLEASE HELP. It would be a Big Help

    That's unfortunate, because it would appear that the cable is pretty much toast. If it wasn't before, it pretty much is now that you've cracked it open.
    Either borrow one, or bite the bullet and buy one locally. You're not getting anywhere with that one.

  • Can someone please tell me what I missed and the mistakes I made in package

    The following package compiled alright but did not execute because it is hung up with my ref cursor. Please help.
    CREATE OR REPLACE PACKAGE BLU_Providers IS
    NAME: BLU_Providers
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 3/16/2005 1. Created this package.
         TYPE rcRetProviderInfo IS REF CURSOR;
              PROCEDURE GetProviderList
                             (                              pi_maxResults                                                       IN                                                   smallint := 600,
                                                                pi_providerLName                                        IN                                                       varchar2,
                                                                pi_providerCity                                             IN                                                       varchar2,
                                                                pi_providerState                                        IN                                                       varchar2,
                                                                pi_SpecialtyCde                                             IN                                                       varchar2,
                                                                pi_prvNetwork                                                       IN                                                       varchar2,
                                                                pi_prvTaxID                                                                 IN                                                       varchar2,
                                                                po_out_status                                                       OUT                                                  NUMBER,
                                                                po_out_message                                                  OUT                                                  varchar2,
                                                                po_prov_list                                                            OUT                                                  BLU_Providers.rcRetProviderInfo);
    END BLU_Providers;
    CREATE OR REPLACE PACKAGE BODY BLU_Providers AS
    NAME: BLU_Providers
    PURPOSE:
    REVISIONS:
    Ver Date Author Description
    1.0 3/16/2005 1. Created this package body.
                             PROCEDURE GetProviderList
                             (                              pi_maxResults                                                       IN                                                   smallint := 600,
                                                                pi_providerLName                                        IN                                                       varchar2,
                                                                pi_providerCity                                             IN                                                       varchar2,
                                                                pi_providerState                                        IN                                                       varchar2,
                                                                pi_SpecialtyCde                                             IN                                                       varchar2,
                                                                pi_prvNetwork                                                       IN                                                       varchar2,
                                                                pi_prvTaxID                                                                 IN                                                       varchar2,
                                                                po_out_status                                                       OUT                                                  NUMBER,
                                                                po_out_message                                                  OUT                                                  varchar2,
                                                                po_prov_list     OUT BLU_Providers.rcRetProviderInfo)
                             IS
                             vsql VARCHAR2(2000);
                             vYes VARCHAR2(1);
                             NAME: GetProviderList --rcRetProviderInfo.cursorType)
                             PURPOSE:
                             REVISIONS:
                             Ver Date Author Description
                             1.0 3/16/2005 1. Created this procedure.
                             NOTES:
                             Automatically available Auto Replace Keywords:
                             Object Name: GetProviderList
                             Sysdate: 3/16/2005
                             Date and Time: 3/16/2005, 1:27:05 PM, and 3/16/2005 1:27:05 PM
                             Username: (set in TOAD Options, Procedure Editor)
                             Table Name: (set in the "New PL/SQL Object" dialog)
                             BEGIN
                                            vYes := 'Y';
                             vsql := 'SELECT
                                                                               (SELECT count(*)
                                                                                    FROM
                                                                                                                       doris.PROV_MASTER PM,
                                                                                                                       doris.PROV_SPECIALTY PS,
                                                                                                                       doris.PROV_ADDRESS PA
                                                                                    WHERE
                                                                                                                  PS.SEQ_PROV_ID = PM.SEQ_PROV_ID AND
                                                                                                                  PM.SEQ_PROV_ID(+) = PA.SEQ_PROV_ID AND
                                                                                                                  PA.PRIMARY_ADDRESS = vYes) AS numProviders,               
                                                                               PM.PROVIDER_ID,
                                                                               PM.LAST_NAME || '' '' || PM.FIRST_NAME AS ProviderName,
                                                                               PS.SPECIALTY_TYPE AS SpecialtyCde,
                                                                               (                                                                                SELECT
                                                                                                                                                                                                       DESCRIPTION
                                                                                                                                                                    FROM           
                                                                                                                                                                                                       doris.PROV_TYPE_MASTER PTM
                                                                                                                                                                    WHERE
                                                                                                                                                                                                  PS.SPECIALTY_TYPE = PTM.TYPE_OR_SPEC_CODE) AS Specialty,
                                                                               PA.SITE_CODE AS prvLocNum,                                                                                                                   
                                                                               PA.ADDRESS_LINE_1,
                                                                               PA.ADDRESS_LINE_2,
                                                                               PA.CITY,
                                                                               PA.STATE,
                                                                               PA.ZIP_CODE,
                                                                               PA.INACTIVE_IND
                                                 FROM
                                                                          doris.PROV_MASTER PM,
                                                                          doris.PROV_SPECIALTY PS,
                                                                          doris.PROV_ADDRESS PA,
                                                      doris.PROV_CONTRACT PC
                                                 WHERE
                                                                               PS.SEQ_PROV_ID = PM.SEQ_PROV_ID AND
                                                                               PM.SEQ_PROV_ID(+) = PA.SEQ_PROV_ID AND
                                                                               PM.SEQ_PROV_ID = PC.SEQ_PROV_ID AND ';
                                                      -- If there is no null field in the provider last name          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PM.LAST_NAME) like ' || '''' || UPPER(pi_providerLName) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider last name                    
                                                      -- If there is no null field in the provider City     
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PA.CITY) like ' || '''' || UPPER(pi_providerCity) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider City
                                                      -- If there is no null field in the provider state          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PA.STATE) like ' || '''' || UPPER(pi_providerState) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider state
                                                      -- If there is no null field in the provider Specialty Code          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PS.SPECIALTY_TYPE) like ' || '''' || UPPER(pi_SpecialtyCde) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Specialty Code          
                                                      -- If there is no null field in the provider Network or LOB          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PM.LAST_NAME) like ' || '''' || UPPER(pi_providerLName) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Network or LOB     
                                                      -- If there is no null field in the provider Tax ID          
                                                      if (pi_providerLName IS NOT NULL) THEN
                                                                     vsql:=vsql || 'UPPER(PC.TAX_ID) like ' || '''' || UPPER(pi_prvTaxID) || '%' || '''' || ' AND ';
                                            END IF;     -- If there is no null field in the provider Tax ID                         
                                                      --Finish the query
                                                      vsql:=vsql || 'PA.PRIMARY_ADDRESS = ' || '''' || vYes || '''' || ' AND ROWNUM <= ' || pi_maxResults || ' ';
                                                      --Pass all the dynamic sql above to the ref cursor
                                                      OPEN po_prov_list FOR vsql;
                                                 po_out_status := 0;
                                                 po_out_message := 'Got Provider Data';
                             EXCEPTION
                             WHEN OTHERS THEN
                                                      po_out_status := SQLCODE;
                                                                               po_out_message := SUBSTR(SQLERRM,1,100);
                             END GetProviderList;
    END BLU_Providers;

    Did you get a particular error when you ran the stored procedure?
    As an aside, I would generall do this in static SQL via something like
    SELECT *
      FROM <<table name>>
    WHERE (parameter_1 IS NULL OR
            UPPER(column_1) LIKE UPPER(parameter_1))
       AND (parameter_2 IS NULL OR
            UPPER(column_2) LIKE UPPER(parameter_2))If you have not already created function-based indexes on UPPER(column_1), UPPER(column_2), etc. that would probably be a performance benefit.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Can Someone PLEASE Tell Me Why My Muse Site Will Not Work Upon HTML Export?

    Sorry for the long title!
    I've had a few threads going regarding troubles with my Muse site. These issues have been on-going, and once I was no longer able to upload to Fetch—and had to export to html via FileZilla—it just seems the problems continue to snowball.
    I have a web site. I will disclose the URL here now: www.jamescdarling.com
    When this site was html-based (its original form), using my yahoo small business web host and Fetch, it worked like a charm. All Flash files functioned at 100%, embedded videos/players all played great, etc. Then, I switched over to Muse 1.) because I was excited by the potential, and 2.) I wanted to re-design my site, anyway.
    So, I created my site in Muse, and uploaded it all into Fetch. I soon found that some of my Flash files and videos were not working. This was the case for a long time. I finally gave up after trying everything and asking lots of questions here.
    Just recently, I set out to fix these issues as I was afraid this half-assed site would appear to make me look unprofessional and like I had no idea how to use Flash. I had some problems with the new Muse Update (had to ditch Fetch and use "export with html" using FileZlilla). Changes made to my Muse file were not taking... and each time I viewed my updated site, the updates were not there—it still looked like the previous incarnation of the site. However, with some help from some of the good folks here, I was able to make my site not only update, but work nearly perfectly—or so I thought!
    I just clicked on my personal web site URL link in my LinkedIn page, and I see the old-looking site! The bookmark I have of my site is near-perfect—only the videos still will not load. However, it would seem that my site only functions as well as it does on MY computer only—that is, URL's I have been sending out probably are of the old non-functioning site? The changes I make are not being recognized.
    If you will, click on my above URL (in bold)..... If you click on "Resume", you should see light blue rules separating each section. But I bet you will see heavier gray bars with headers inside them. Also, if you view my Flash work, go to the "Epiphone Casino Mini Site".... the "Finshes" and "Features" pages' interactive elements will not function as they should (never mind the video page!)—but they work perfectly when accessing my site from my bookmark on my computer.
    Can someone please tell me how to make my site update web-wide, and how to get my Flash files to function?
    Thanks!!!
    Message was edited by: darling67

    It seams a lot of folks are haveing issues with FTP upload. Try these areas to look at. Maybe the right answer. I dont use Flash on my sites for a long time now. Anyhow, check these out.
    http://tv.adobe.com/watch/muse-feature-tour/adobe-muse-publishing-and-managing-your-site/
    http://www.adobekb.com/using_3rdparty_ftp.html#usingftp-understandinghowftpworks

  • HT1688 Someone changed the settings on my iPhone so that I can no longer update my apps or download new apps. I don't have the icon on my phone anymore. Can someone please tell me how to get it back?

    Someone changed the settings on my iPhone so that I can no longer update or add apps. The icon no longer appears. Can someone please tell me how to add that back?

    I should have added that the iTunes app is not displayed on my phone in order for me to add the apps.

  • Can someone please tell me why when I order an Itunes app. , do I always get charged twice for the same thing.  It has happened on two different occasions.  Does it have anything to do with having 2 different ipods linked to the same account?

    Can someone please tell me why when  i order an app on my sons ipod, do I get charged twice for it?   When I tried do report a problem with the charge, it said that I can not get a refund on that item.   This is the second time this has happened to me.   Does it have anything to do with having more then one ipod linked to the same account?   Thanks for any help you can give me!!!

    It has nothing to do with have more than one device using that account.
    After you purchase it once, you redownload it on other devices by the following, not like purchasing a new app.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    If you really got charged twice for purchases the same app twice with the same account contact iTunes again by:
    Apple - Support - iTunes - Contact Us
    Make sure that they are really the same app first.

  • I have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    i have an iPhone application already developed and it works great ,now i need to make that same application for my iPad .can someone please tell me step by step instructions on how to make it .

    Try the developer's forum:
    https://discussions.apple.com/community/developer_forums

  • Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Hi, can someone please tell me why the spell check in pages doesn't work. I went to preferences and enabled this auto spell checker and have set the language to british english. But still it doesn't work while it works perfectly in TextEdit.

    Inspector > Text > More > Language
    Only applies to selected text, like making it a particular font.
    It is not a setting that sticks. If you continue to paste in text from elsewhere particularly the Internet it will have a different or None language set to it. You need to select it and make it B.E.
    Peter

  • I can not sync my mailboxes with Icloud. I would like to see the same mails in all my apple devices. Can someone please tell me how? My calendar and contacts sync but my mailboxes dont...

    I would like to see the same mails in all my apple devices. Can someone please tell me how? My calendar and contacts sync but my mailboxes dont...

    I would like to see the same mails in all my apple devices.
    On iOS devices tap Settings > iCloud
    Make sure Mail is swtiched ON.
    Apple - iCloud - Learn how to set up iCloud on all your devices.

  • Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Can someone please tell me a simple but effective method for burning a slideshow to DVD? Now that the connection between iPhoto and iDVD no longer exists, I can't figure out a way to get there with an acceptable quality result.

    Export the slideshow out of iPhoto as a QT movie file via the Export button in the lower toolbar.  Select Size = Medium or Large.
    Open iDVD, select a theme and drag the exported QT movie file into the open iDVD window being careful to avoid any drop zones.
    Follow this workflow to help assure the best qualty video DVD:
    Once you have the project as you want it save it as a disk image via the File ➙ Save as Disk Image  menu option. This will separate the encoding process from the burn process. 
    To check the encoding mount the disk image, launch DVD Player and play it.  If it plays OK with DVD Player the encoding is good.
    Then burn to disk with Disk Utility or Toast at the slowest speed available (2x-4x) to assure the best burn quality.  Always use top quality media:  Verbatim, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
    If iDVD was not preinstalled on your Mac you'll have to obtain it by purchasing a copy of the iLife 09 disk from a 3rd party retailier like Amazon.com: ilife 09: Software or eBay.com.  Why, because iDVD (and iWeb) was discontinued by Apple over a year ago. 
    Why iLife 09 instead of 11?
    If you have to purchase an iLife disc in order to obtain the iDVD application remember that the iLife 11 disc only provides  themes from iDVD 5-7.  The Software Update no longer installs the earlier themes when starting from the iLIfe 11 disk nor do any of the iDVD 7 updaters available from the Apple Downloads website contain them. 
    Currently the only sure fire way to get all themes is to start with the iLife 09 disc:
    This shows the iDVD contents in the iLife 09 disc via Pacifist:
    You then can upgrade from iDVD 7.0.3 to iDVD 7.1.2 via the updaters at the Apple Downloads webpage.
    OT

  • In the libary of iPhoto I do have double pictures only in the year 2006. Can someone please tell me how to remove the double pictures. I did rebuilt the libary but that solution did not help me any further.

    In the libary of iPhoto I do have double pictures only in the year 2006. Can someone please tell me how to remove the double pictures. I did rebuilt the libary but that solution did not help me any further.

    I think the warning is very clear.
    What warning? Where do you say that this plan you suggest will lose at least some, and possibly a whole lot of metadata, plus  the original files of edited photos. This is significant dataloss. And you should warn people that this is the case.
    While your metadata and originals may not be important to you, that is not necessarily the case for other users.
    Fourthly, and last, cleaning the iPhoto library should be done at least once per year
    This is nonsense. The iPhoto Library has no need of "cleaning" and certainly not in any way that trashes a whole lot of data.
    I'm very impressed that you assess the application based on the sound of the name. It's not a common way to review applications, but I'm sure it has some merit.
    FWIW it has been recommended on this - and other - sites for many years and has proven safe and effective.
    Regards
    TD

  • TS2446 I just got my Ipad and I can not download apps.  I get a message saying my Apple ID has been disabled.  I have reset my password, I can access itunes and icloud but still can not download apps.  Can someone please tell me how to get my ID activated

    I just got my Ipad and I can not download apps.  I get a message saying my Apple ID has been disabled.  I have reset my password, I can access itunes and icloud but still can not download apps.  Can someone please tell me how to get my ID activated?  TY

    Depending on why it's been disabled you might be able to re-enable it via this page : http://appleid.apple.com, then 'reset your password'
    Or you might need to contact Apple : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page
    If it then works on your computer's iTunes but not your phone/iPad then try logging out of your account on the phone/iPad by tapping on your id in Settings > Store (Settings > iTunes & App Stores on iOS 6) and then log back in and see if that 'refreshes' the account on it

  • When I plug in my iPad 2 to my laptop to sync, it says "the file iTunes library itl" cannot be read because it was created by a newer version of iTunes. Can someone please tell me what this means? How do I correct it? Thanks!

    When I plug in my iPad 2 to my laptop to sync, it says "the file iTunes library itl" cannot be read because it was created by a newer version of iTunes. Can someone please tell me what this means? How do I correct it? Thanks!

    The file "iTunes Library.itl" cannot be read because it was created by a newer version of iTunes".
    Try the following user tip:
    Empty/corrupt iTunes library after upgrade/crash

  • When I try to install itunes I get an error message that says "Canot access internet conection \."  Can someone please tell me what's wrong?  My internet connection is working.

    When I try to install itunes I get an error message that says "Cannot access internet connection \."  Can someone please tell what this means?
    My internet connection is working.

    Okay. We'll try a different utility.
    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install. Does it go through properly this time?

  • I have an iphone 4 and cannot get my mute off when I am using Facetime. I can hear them, but they can't hear me. When I touch the mute button, nothing happens. Can someone please tell me how to fix this?

    I have an iphone 4 and cannot get my mute off when I am using Facetime. I can hear them, but they can't hear me. When I touch the mute button, nothing happens. Can someone please tell me how to fix this?

    the mute button is a switch you need to flip, not touch. if you look at it and see color, its on.

Maybe you are looking for

  • Data Management Services with Cairngorm 2.1

    Hello. I have been using cairngorm 2.0 for a while, and I am now trying to convert the 2.1 stuff over, including using cairngorm to manage my DataServices. However I have some questions about it if you have used it. Using the command, and passing the

  • Kanban Replenishment Strategy with Reporting Points

    I am trying to implement a SAP kanban system with repetitive manufacturing using reporting points.  My problem is that when I change the status from empty to full I get error RM086 - GR with backflush not for reporting point logic with automatic GR o

  • IS it possible to Format the data to CXML format in Java ?

    Hi all, I am new to Java programming. I am an SAP ABAP Developer and in my SAP CRM E-Commerce Web Shop coding, I have to do coding in Java. My current requirement is that I have some set of data and I have to format this data to CXML format in Java.

  • CSV file read

    Is there a standard FM which handles csv file read? I am currently using a 'split at' to separate values but this fails when some strings ( within quotes) have commas. Eg: 333,khdfs, "Company name", 87348, " Name1, Name2" In this scenerio, the last f

  • Xdo Lobs Api

    EBS 12.1.1 We have a number of templates installed in a variety of language setting From XDO_LOBS en     00 en     GB en     US We have implented as custom install tool which uses XDOloader to load this templates we made an assumption that the langua