How can I correct huge error by VZW rep at store?

On Feb. 11, the day the iPhone launched for Verizon, I headed to the Apple store to pick mine up. Because my girlfriend has a contract with Verizon, we decided it would be better for us to get a family plan. In any case, while we were at the Apple store, the person who set me up with the phone there said that he would sign me up for a basic plan for the individual line and to just go to the Verizon store to combine the lines and put them into a family plan.
My girlfriend and I headed over to the store and told the rep there what our plans were. We signed up for the Talk and Text family plan as well as the unlimited data package. When we finished, the rep there said we were all set and I could begin using the phone immediately.
When we received the bill for the first month's use, it was for about $800 (that's not a typo). When we called to inquire about the charges, they said that the plan didn't take effect until Feb. 21 and that the difference in the bill were all due to text messages. I'm unable to wrap my head around that because I had the minutes, had the data but didn't have any text messaging? It doesn't make sense. We called up customer service and they said that they could only give us a 50% refund and that if we went back to the store in which we signed up for this contract, they'd be able to refund us.
So, we went straight back to the Verizon retailer that signed us up and the manager there couldn't understand what happened and explained that he would forward it to his District Manager. He said that we currently had the plan that we originally wanted (which was the talk and text). In the meantime, he explained, we would just have to pay what we would have owed on a regular bill plus any applicable taxes and leave the difference until he gets it credited.
I have been in touch with the manager for the last three weeks regarding this issue and he has not yet had it resolved. He said that his manager could only get 50% because that's the max refund and he is still trying to get the other 50%. The balance on our bill still has the discrepancy as part of the past due balance. I already covered an additional $100 in taxes because of the issue. I'm not planning on paying them the absurd balance, or even half of that but at the same time, don't want my service cut off.
Has anybody ever been in a similar situation? Or does anyone have any experience in resolving a similar issue? Any help would be much appreciated.

Why don't you have the manager remark your account that it was a store error. That way when you call up to customer service, they have proof that a rep had made a mistake and will then have to honor 100% credit. Just explain that your having difficulties getting the store to honor the full credit.

Similar Messages

  • How can I correct the error Write Permission Open so that I can finalize a project in I Movie?

    How can I correct the error Write Permission Open so that I can finalize a project in I Movie?

    Post in the iMovie forum.

  • When attempting to sync my ipod I get an error OxE8004002 how can I correct this error

    When attempting to sync my ipod to my pc, I get an error OxE8004002; how can I correct this error?
    It is just since I uploaded the 6.1.5.

    iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting

  • How can I correct the error 1004 ?

    How can I correct error 1004?

    Sometimes this works for that error 1004.
    Go to Settings>Safari>Clear History, Cookies and Cache or Data. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • How can I correct this error: no matching code signing identity found

    I signed up as an apple developer so I could download the tools to learn to build apps. I just installed Xcode 5.1.1, when i opened the program and created my first test project I got an error message: "no matching code signing identity found". how can i get rid of (correct) this error? I am just learning and I am not ready to join the $99 developer program yet.

    Try setting Signing to None in the Target General pane.

  • How can I correct this error:  Error(24,7): PLS-00103:

    I have the following Trigger
    create or replace
    TRIGGER "CODE_BARRAS"
    before insert or update of CODIGO_BARRAS on PAGOS FOR EACH ROW
    begin
    IF INSERTING THEN
    IF LENGTH(:NEW.CODIGO_BARRAS) = 66 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,22);
    :NEW.NRO_DOCUMENTO := 0;
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 47,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    ELSIF LENGTH(:NEW.CODIGO_BARRAS) = 62 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,9);
    :NEW.NRO_DOCUMENTO := SUBSTR(:NEW.CODIGO_BARRAS, 30,9);
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 43,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    END IF;
    END IF;
    END IF;
    EXCEPTION
    when no_data_found then
    DBMS_OUTPUT.PUT_LINE(' NO HAY INFORMACION, CODIGO ERRADO');
    end;
    Which generates the following error me
    Error(24,7): PLS-00103: Se ha encontrado el símbolo "IF" cuando se esperaba uno de los siguientes: ; <an identifier> <a double-quoted delimited-identifier>
    how do I correct the tigger?_
    I am grateful for your help..._

    Hi Rey-user6318244!
    You may delete the last END IF; to correct your trigger
    create or replace
    TRIGGER "CODE_BARRAS"
    before insert or update of CODIGO_BARRAS on PAGOS FOR EACH ROW
    begin
    IF INSERTING THEN
    IF LENGTH(:NEW.CODIGO_BARRAS) = 66 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,22);
    :NEW.NRO_DOCUMENTO := 0;
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 47,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    ELSIF LENGTH(:NEW.CODIGO_BARRAS) = 62 THEN
    :NEW.EAN := SUBSTR(:NEW.CODIGO_BARRAS, 4,13);
    :NEW.CODIGO_CUENTA := SUBSTR(:NEW.CODIGO_BARRAS, 21,9);
    :NEW.NRO_DOCUMENTO := SUBSTR(:NEW.CODIGO_BARRAS, 30,9);
    :NEW.VALOR_PAGO := SUBSTR(:NEW.CODIGO_BARRAS, 43,10);
    :NEW.FECHA_PAGO := TO_CHAR(SYSDATE,'YYYYMMDD');
    :NEW.NUM_LOTE := NUM_LOTE();
    END IF;
    END IF;
    EXCEPTION
    when no_data_found then
    DBMS_OUTPUT.PUT_LINE(' NO HAY INFORMACION, CODIGO ERRADO');
    end;yours sincerely
    Florian W.
    P.S. Please enclose your code into to get formated output. Thanks a lot!
    Edited by: Florian W. on 23.02.2009 16:02                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Current update failed to install properly. Downloaded current version and now I have the error message regarding MSVCR80.dll Itunes worked well to before the update. How can I correct this error?

    An update was downloaded and failed to install properly. When I tried to use the old Itunes, I get the message "The program can't start because MSVCR80.dll is missing from your computer". I then received the message "iTunes was not installed correctly. Please reinstall iTunes"I tried reinstalling with the same error message. I then uninstalled the old version, downloaded the new version and still received the same message. How do I solve this problem?

    Followed mspanner's instructions and was able to correct the problem. Thanks for the help.

  • When opening Firefox 6 I receive 2 JavaScript Application errors; the 1st is "TypeError: Component.classes[TvtPwmComponent_CID] is undefined". The 2nd error is; "TypeError:Components.classes[componentid] is undefined." How can I correct these errors?

    When opening Firefox 6 I receive 2 JavaScript Application errors; the 1st is "TypeError: Component.classes['''TvtPwmComponent_CID'''] is undefined". The 2nd error is; "TypeError:Components.classes['''componentid'''] is undefined." and upon closing Firefox 6 I receive the following JavaScript error; "ReferenceError:'''M_caFxTBobj''' is not defined."

    This issue can be caused by an extension that isn't working properly.
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • HT1689 error 42408 how can i correct it

    How can I correct the error code 42408

    314214
    Why are you posting this question several times? You got a perfectly good answer from V Garcia in how can I correct it?. You are cluttering up the forum and wasting my time.
    Please learn to use this forum properly.
    Regards, APC

  • HT1539 I entered the download code for"THE HOST"but instead I got a copy of"Spring Breakers".How can I correct this?  I called a friend that has"Spring Breakers"and the codes are not even remotely alike!!! I did not want to download what I received!!What'

    I entered the correct download code for "THE HOST" but instead got a copy of "SPRING BREAKERS"! All of the prompts identified it as "The Host" but the final product was "Spring Breakers"! I called a friend who has a copy of that movie and the download codes are not even remotely alike!! How can I correct this error? I 'd rather have SyFy that a bubblegum teenager flick!! HELP ME, PLEASE?!

    Hello Old Dogg new tricks,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at this article:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Best of luck,
    Mario

  • HT201302 error message when I try to update to IOS 6 how can i correct?

    Error message when I try to update to IOS6 how can i correct?

    Jenn4836 wrote:
      Can anyone help me out? 
    Not unless you start by telling us what the error messages say...

  • How do I correct the error: adobe acrobat 9 distiller can not find its standard icc profiles.

    How do I correct the error: Adobe Acrobat 9 distiller can not find its standard ICC profiles. Please reinstall adobe acrobat to correct this problem?
    I have tried all the suggestion in the forums. But I keep getting the error. I reinstalled AA9 Pro and downloaded the updates. But I keep getting the error.
    I recently upgraded to Windows 7.

    You have permissions issues on the respective folders, e.g. Windows\System32\Color and so on. Fix them and allow all apps to access the contents.
    Mylenium

  • I just applied for an Account but they did not request my ISBN. I may have made an error in completing the information. How can I correct it?

    I just applied for an Account but they did not request my ISBN. I may have made an error in completing the information. How can I correct it?

    Did you just apply for an account or did you try to upload a book? If you are simply setting up an account, they won't ask you for an ISBN number. They will, however, ask for your tax ID number. After your account is activated, then any time you upload a new book, you will need to supply an ISBN number. Since each book has a unique ISBN, they don't need those numbers to initially set up your account. I hope that helps.
    Good luck!
    Kara

  • I am running Windows 7 64Bit system and everything was working normal.  However, I am now getting an error message stating objc.dll is missing.  I've re-installed Itunes but to no avail.  How can I get this error message corrected?

    I am running Windows 7 64Bit system and everything was working normal.  However, I am now getting an error message stating objc.dll is missing.  I've re-installed Itunes but to no avail.  How can I get this error message corrected?

    See this User Tip by turingtest2
      https://discussions.apple.com/docs/DOC-6562

  • When attempting a restore from Time Machine I get error code -8004. What is this and how can I correct it?  Thanks

    when attempting a restore from Time Machine I get error code -8004. What is this and how can I correct it?  I use OX 10.9.3
    Thanks

    Run it in compatibility mode and input the credentials.
    Mylenium

Maybe you are looking for

  • Content Administration Tab is missing for administrator user in  NW CE 7.1

    we have a issue after upgrading the portal to NW CE 7.1 SP00 RTC. "Content Administration" Tab is missing for administrator users

  • Query Performance Issue (First_rows hint)

    Dear friends, I am running a query on default optimizer mode (all_rows) but its not picking the right execution plan nor the right index but if changing optimizer mode into first_rows, its running insteadly. Tables statistics for concern tables are u

  • HT5621 How to create new Apple ID

    How do I put second Apple ID in App Store

  • Oracle Streams - ORA-01403

    Hi people. Me again. I need your help. I found the "print_lcr" (to see the contents of the lcr that aborted my apply process) and implement it. The result is: Object: MY_TABLE TAG is NULL: Y Command type: UPDATE OLD( 1 ): USERCODE Print ANY: NUMBER -

  • CJ20N Restriction

    Hi All, I am currently working on a project that use CJ20N to create WBS elements.  I am aware that restrictions can be done based on the following fields: Maintenance planning plant Controlling area Profit Center Maintenance plant I wanted to know i