Bundle Renewal Question?

I have a regular Verizon account and I purchased a one month phone card for someone for the prepaid phone.  I am having trouble understanding how everything works with the Prepaid when I look at the account because it is different from my regular account.  The prepaid account card ran out on 9/21.  It looks like on 9/22 it says "account change" and my cell phone number is after it.  Then right after that at the same time it has "Bundle Renewal" and my number shows up.  A text message was sent to that phone from Verizon saying they were not able to renew it.  Did my friend try to charge a month to my cell phone account somehow? 

Thanks Bruce, that is what I'm thinking too, but I don't want to mess something up. To the people out there that have submitted updates. Did you change the Bundle Version number?
Thanks,
-Keith

Similar Messages

  • Contract Renewal Question - Device replacement

    My current 2-year contract ends in one month. I cracked the screen on my phone about a week ago, and was about to file a claim for a replacement. My question is, does getting a replacement phone with my Total Equipment Coverage automatically renew my contract in any way, or will it still end next month as currently scheduled?

    It will not affect you contract date as long as you just get a replacement, I did this a couple of months ago.

  • Contract Renewal Question

    Hey,
    Currently, I'm on a family plan(5 people) and we're able to upgrade our phones and contracts in July.  My family really wants to upgrade, they hate their phones, so it'll happen right around when it's available.  The question arrives here however: I am interested in getting an iPhone and a refresh of it is probably a couple months out.  If we upgrade, would I be able to defer my upgrade until the next one is released?  Or would I need to do it at the time of the contract renewal?
    Thanks.

    Once your upgrade date occurs you can do so whenever you want.  That being said, for whomever is the account owner, you only have 6 months from when you are eligible for a 2 year upgrade to use your last NE2 credit ($35 or $50) After 6 months, you still get two year pricing, but you will not receive the add'l credit.

  • ASR9K bundle-ether question

    hi guys,I have a question need confirm,could some friends help me.
    the topology is like this
    1 .does this portchannel support or not ,I mean ASR9001 side is router subinterface,C4500X side is SW trunk interface
    2.if this portchannel is support,could i use lacp mode active ?(the old cisco router is not support lacp mode active like this case,only can use on mode)
    Thank you very much.

    Yup this is very much supported and I would recommend to use the option of running lacp for member management.
    mode-on means that all members are hard inserted in the bundle with no state control. mode active means that you are running lacp and negotiate with the peer the member state and inclusion in the bundle.
    on the a9k side you need to define EFP's or subinterfaces in order to peel out the different vlan's for either use as a routed interface or for insertion into a bridgedomain or xconnect.
    regards
    xander

  • Bundle Version Question

    Hello,
    I'm in the process of putting together an update for our app on the app store and I have a question about what I need to change in the info.plist file. From what I understand, I basically leave the bundle identifier and the bundle name the same. What about Bundle Version? Does this correspond to the version of my application? Currently it says 1.0. Should I change this to 1.1 since that is the updated I'm submitting to the app store?
    I haven't been able to find any information on exactly what Bundle Version is for. Any help would be greatly appreciated.
    Thank you,
    -Keith

    Thanks Bruce, that is what I'm thinking too, but I don't want to mess something up. To the people out there that have submitted updates. Did you change the Bundle Version number?
    Thanks,
    -Keith

  • Edge and Contract phones on same account - contract renewal question

    Hello.  I have multiple devices on my account and just signed up with EDGE for a new phone (different line, same account owner).  When my contract phone goes up for renewal in a few months, am I still able get a subsidized phone with extending that 2-year contract at that time?
    Thanks!

    sprmankalel wrote:
    Yes but why would you want to do that? Depending on the device and the discount it is usually cheaper than buying the phone with a 2yr contract.
    IF, you're on the More Everything Plan.

  • A bundle of questions from an iPhone newb...

    Ok so me and my wife recently both got the iPhone 4, and so far we love it. We haven't had any issues, except a tricky time getting the phones to hook up to the wifi here at our house but that was resolved pretty quickly. So here we are, two iPhone rookies and we had a few questions that we didn't get around to asking the sales guy because we didn't want to hold up the 50 other people behind us in line... waiting in the rain... at 6a.m. So here's a short list of questions I was hoping to get answered. I tried searching the message boards but couldn't quite find the answers I needed.
    1) What all exactly constitutes data usage? Sounds simple, but we just came from another carrier with an unlimited data plan and we never thought about how much we used, until we got stuck with the 2gig cap imposed by AT&T.
    2) Does the data usage covered by my plan get drained even when I'm on my home wifi connection? In relation to that, is it better to stay connected to wifi or the 3G cell network?
    3) Is the 2gig cap on data usage per phone or shared between us?
    4) Which apps use the most the data? Please don't say Facebook or the news... those are the two apps I use most....
    Thanks for any answers!

    Hi Josh,
    You live in a populated area, so you probably have WiFi most places. Thus, if you are at Starbucks and hop on their WiFi, there is no data usage from ATT's standpoint. If you are in Starbucks and don't hop on their WiFi and surf the net, then you'll get data usage.
    Go to Settings -> General -> Usage and then scroll down to Cellular Network Data and it will tell you how much you used. Keep an eye on it for a few months (you can reset it whenever you like) and you'll have a good idea of how much data you are using.
    Enjoy your phones!

  • A bundle of questions

    Hi,
    I have several questions and hope that someone could help me.
    Q.1
    //in fileA.java
    package p1;
    public class A {
    protected int i = 10;
    public int getI(){return i;}
    //in fileB.java
    package p2;
    import p1.*;
    public class B extends p1.A
    public void process(A a)
    a.i = a.i*2;
    public static void main(String [] args)
    A a = new B();
    B b = new B();
    b.process(a);
    System.out.println(a.getI());
    Why the object b cannot access i ?
    Q.2
    public class Test {     
         public static void main(String [] args)
              int ia[][] = {{1,2}, null};
              int ij[][] = (int[][])ia.clone();
              System.out.println((ia==ij) + " ");
              System.out.println(ia[0]==ij[0] && ia[1]==ij[1]);
    Why is the result: true, false. When should I use the object.clone()?
    Q.3
    public class Test {     
         public Test(){
              s1 = sM1("1");
         static String s1 = sM1("a");
         String s3 = sM1("2");
              s1 = sM1("3");
         static
              s1 = sM1("b");
         static String s2 = sM1("c");
         String s4 = sM1("4");
         public static void main(String [] args)
              Test it = new Test();
         private static String sM1(String s)
              System.out.println(s);
              return s;
    Why the results are a b c 2 3 4 1? Why '1' will be the last one to be displayed?
    Q.4
    public class Test{     
    public static void main(String [] args)
         int x = 4;
         int a [][][] = new int[x][x=3][x];
         System.out.println(a.length + " " + a[0].length + " " + a[0][0].length);
    Why the answer is 4 3 3 ? Why the last 3rd dimension of array is 3?
    Q.5
    public class Test{     
    public static void main(String [] args)
         String str = "111";
         boolean a[] = new boolean[1];
         if (a[0]) str = "222";
         System.out.println(str);
    Why the a[0] represents false?
    Thanks for your kind help.
    gogo

    A1.
    It can!
    A2.
    The result is false, true.
    A3.
    When the class is loaded, all the static blocks and variables are initialized.
    When you create a new Test object, then it first initialize all your non-static variables before it goes on with your constructor.
    A4.
    new int[4][3][3].. thats why
    A5.
    When you create e.g. a boolean array and don't initialize it, all elements will be false.

  • ITunes Match renewal question

    When my iTunes match automatically renews, will the payment be taken from my account balance or from my credit card?

    Hi,
    Once match completes its scan of your library on your computer, the icloud status for tracks will be matched, uploaded, purchased, inelligible, waiting or duplicate. The last three will not be in the cloud.
    All tracks will be unchanged on your hard drive unless you opt to delete and replace with a matched version.
    After you turn on match on your devices, all tracks in the cloud will be available to stream. You can download them of course. If you add new tracks to itunes library on your computer, match will automally scan and update that library. Those new tracks will eventually appear on your ios devices and you can download them. There is not automatic downloads for matched content.
    Jim

  • Subscription Renewal question

    I currently have an unlimited US & Canada subscription that expires 9/25-- when I try to renew I get a message that says I already have a subscription so continuing will overlap my current subscription.  Also, I can't tell for sure how much the charge will be so I can load enough money in Skype credit to cover it. I use to have it set up for auto pay but the charge was duplicated 2 years ago which created a skype credit that we used last year to renew.  I just want to add enough to the skype credit to cover the subscription and the cost for renewing the on-line number that also expires on 9/29. Thank you in advance for your help.

    Hi,
    Unlimited US&Canada for you is $30.05 per year, since currently you have bit over 11USD you can add 20USD more to cover your subscription recurring payment.
    Online Number is separate payment and this is 30USD for 12months. This you can also pay directly with credit card: https://support.skype.com/en/faq/FA10365/How-do-I-extend-or-reactivate-an-Online-Number
    Andre
    If answer was helpful please mark it with Kudos and if issue is resolved mark it with solution. This will help other users find this answer more easily. Thanks in advance!

  • SA Renewal question

    Hi Experts,
    Given a hub to spoke connection, if i clear the crypto sessions on the spoke and the spoke thereafter sends an SA initialization request to the hub, would the hub remove its existing SA with the spoke and renew its SA?

    Thanks for the reply Marcin.
    We have an issue with a bug on the hub where it is prematurely clearing the SAs given its DPD setting.  We will be disabling DPD on the hub temporarily till the IOS is upgraded.  My concern is, should the spoke site loses its connection to the hub, since the spoke site has DPD, it will clear its AS.  But once the link between the spoke and hub comes back up and the spoke sends an initialization request to the hub, will the hub clear its SA and renew its SA with the spoke. 
    I recall losing internet connection and clearing the cryp session on another setup (no DPD between spokes), and when the internet connection came back up, both spokes renewed its SA but I just wanted to get a second opinion.

  • SOA Bundle deployment question

    One creates a SOA bundle consisting of three projects. If one of the projects fails deployment - do the others get deployed or does the entire SOA Bundle fail deployment?
    Thanks - Casey

    Enterprise manager currently is looking for composite in zip file, ideally this should not be the case.
    Use JDEV or WLST sca_deployComposite command(for production env) to deploy soabundle.

  • GCU renewal question. Hopefully this is the right place

    I didn't realize mine expired and checked my email and I never got a renew option. Is there any way to get one or do I have to wait for a deal? Last time I used it was when mario kart 8 was out.

    Hi xfactor831,
    To my knowledge, renewal notices are not provided for Gamers' Club Unlocked memberships -- it's the customer's responsibility to keep track of their membership's expiration date. If your membership has expired and you're interested in renewing, then I'd encourage you to keep an eye on BestBuy.com, our weekly ad, and your inbox for future offers.
    Thanks for your continued interest in the Gamers' Club Unlocked program!
    Aaron|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Adobe Acrobat (OEM/Bundled?) questions

    We have several older Dell PCs that had Adobe Acrobat 6-8 installed on them from Dell (I assume it's an OEM type license.)  But reading through the EULAs, I can't find any mention of OEM or anything.  Are these truly OEM copies?  We received the actual Acrobat CDs with the computers.  As we are beginning to decomission these older machines, we have two questions -
    1. Can we install these copies of Acrobat on newer PCs, or are they truly OEM and stick with the machine that is now aging out and useless, and
    2. Can we use these licenses as the basis for upgrade licenses to Acrobat X on new machines?
    Thanks.

    AFAIK there wouldn't be a difference in the number of computers you could install it on, or the ability to move from one system to another...
    As for the second question, you're probably okay but only Adobe Customer Support could answer for sure.
    Worst case, you could order the upgrades and then if they don't work out for some reason you could just return them under Adobe's 30-day refund policy.

  • Gamers Club Unlocked Renewal Question

    Hi Matt, I've been a Gamers Club Unlocked Member since the program started in September of 2011, as well as a pretty consistent Premier Silver( which has now become Elite P'us) member. My Gamer's Club Unlocked membership expires on the 14th of next month, & I was wondering how should I proceed in keeping my membership? Your advise is greatly appreciated. Thanks, Mark

    Good afternoon MTSongy,
    The Gamers Club Unlocked membership went through some enhancements back in November and is no longer $14.99 per year.  As enuf mentioned, it currently cost $119.99 for a two year Unlocked membership.  We have had a couple promotional offers the past couple weeks that were offering a discount of the membership price, but those offers have expired.  There is always the possibility we could have a similar offer in the future; however, at this moment, the price to be Unlocked is $119.99.
    My Best Buy™ Gamers Club Unlocked Enhancements
    Thank you for posting to the forum.
    Derek|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • Return file data

    ok, I want to create a sub-routine in a spearate class that when I call it opens up a file and returns the file data result in a string. so: string = file.GetFile("filename.txt"); And that gives me the data contained in a file in one string varaible.

  • Printer Stalls

    I am on the second HP Officejet Pro 8500A Plus in the last three months.  The same issue is occuring with this one that occured with the first one.  When printing, it may print 2 pages and it may print a half page.  I can not clear my job queue witho

  • Kit for installing SSD in place of DVD Drive on DV6-6011TX

    Can anyone please let me that whether it is possible to replace DVD drive on my DV6-6011TX with an SSD Drive (+kit to install it)? Any help will be greatly appreciated. Thank you and regards, Babur This question was solved. View Solution.

  • Can't open apps on my iPad

    I can't open any apps on my iPad.  I just downloaded a bunch of photos from my iMac and now I can't open any games, google earth etc. I touch the icon, it blinks but doesn't opn.

  • TACACS+ configuration for Cisco ASA

    I tired configuring TACACS+ configuration for ASA but unable to complete it. I have ACS 3.3 for all other Cisco Routers and Switches