Having trouble with order

Is anyone but me having trouble getting a new iphone? My daughter and I ordered them on the 9th, had them canceled by apple on the 17th. We reordered them and I can tell that by tomorrow apple is about to cancel them again. My order status went from prepared to ship to not yet shipped today. I spent 4 hrs on the the phone between apple and ATT today about this. Each one blames the other. I have talked to so many people I have a headache, and am ready to throw my iphone at someones head. We both have the original iphone so we are ready to upgrade, but now we are bith so frustrated that I am ready to leave ATT and forget the whole thing.

On your first cancellation email, did it say that it was cancelled because it couldn't get an approval from ATT? if so, try calling ATT to see why it's not approved. I had similar issue where I accidentally placed 2 orders and one number can only buy one phone.

Similar Messages

  • I'm working on CC 2014 on a mobile version of a site, having trouble with order of layers and links not working.

    I'm working on CC 2014 on a mobile version of a site, my links on layers that are below the top layer (call menu) are not working. If I move the layers above the menu layers the links work, but then the menu appears under the graphic and other elements on the site.

    I'm having this issue right now. I would LOVE some help. Did you get it figured out?

  • I have a new MacBook and I'm having trouble with the help section. I would like to rearrange the order of my photos with in an Event, how do I do this? I follow the directions but it will not work. Thanks for some tips.

    I have a new MacBook Pro and I'm having trouble with some of the Help sections. I want to rearrange the order of my photo's within an Event. I have followed the directions but it will not let me do it, what am I missing?  Thanks for any tips.

    Are you talking about iPhoto? If you are please post this in the iPhoto forum, thanks!

  • I'm having trouble with the purchase of currency in the game Castle Clash locks! In order status says "Back" returns so what? Money at stake so I have not returned!

    I'm having trouble with the purchase of currency in the game Casyle Clash locks! In order status says "Back" returns so what? Money at stake so I have not returned!

    You need to contact the developer of the game, or, the iTunes store support.  iTunes store "MIGHT" issue a 1 time refund.  If you want the credits for the game, talk to the game creator.

  • To whom this may concern, I'm having troubles with uploading Flash Files Online throught Adobe Flash Professional and I would to correct the Error Messages I've received as an indication that I need to correct them in order to test a Flash and Shockwave F

    To whom this may concern, I'm having troubles with uploading Flash Files Online throught Adobe Flash Professional and I would to correct the Error Messages I've received as an indication that I need to correct them in order to test a Flash and Shockwave Files I have stored into the Software of Flash!. Could you please help me get this matter resolved? Gerard Hargrove.

    what exactly are you trying to do and attach a screenshot of the error message, if it's in english.

  • HT3529 I'm having trouble with my iPhone 5 iMessage service. The device does not recognize the users who have iMessage when I try to contact them using this feature. Who have the same issue and what did you do in order to solve it?

    I'm having trouble with my iPhone 5 iMessage service. The device does not recognize the users who have iMessage when I try to contact them using this feature. Who have the same issue and what did you do in order to solve it?

    Read here:
    http://support.apple.com/kb/ts2755

  • I'm having trouble with something that redirects Google search results when I use Firefox on my PC. It's called the 'going on earth' virus. Do you have a fix that could rectify the vulnerability in your software?

    I'm having trouble with a virus or something which affects Google search results when I use Firefox on my PC ...
    When I search a topic gives me pages of links as normal, but when I click on a link, the page is hijacked to a site called 'www.goingonearth.com' ...
    I've done a separate search and found that other users are affected, but there doesn't seem to be a clear-cut solution ... (Norton, McAfee and Kaspersky don't seem to be able to detect/fix it).
    I'd like to continue using the Firefox/Google combination (nb: the hijack virus also affects IE but not Safari) - do you have a patch/fix that could rectify the vulnerability in your software?
    thanks

    ''' "... vulnerability in your software?" ''' <br />
    And it affects IE, too? Ya probably picked up some malware and you blame it on Firefox.
    Install, update, and run these programs in this order. They are listed in order of efficacy.<br />'''''(Not all programs detect the same Malware, so you may need to run them all to solve your problem.)''''' <br />These programs are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]<br />
    Also, if you have a search engine re-direct problem, see this:<br />
    http://deletemalware.blogspot.com/2010/02/remove-google-redirect-virus.html
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

  • Having trouble with persist

    I have created a simple application where a user can order items and then i'm saving the order and all the items (details of order) to the dataBase.
    i'm using jdk1.5 with jboss and mySql (also hibernate).
    i'm having troubles with saving the details of the order, the relevant code is-
    order entity -
    @Entity
    public class Orders implements Serializable
        @Id @GeneratedValue
        private long orderId;                    //generated in db
        private String name;
       public Orders(String userName)
            this.userName=userName;
        public long getOrderId() { return orderId; }
        //getters and setters...
    detailsOfOrder entity -
    @Entity
    public class DetailsOfOrders implements Serializable
    @Id
    private long orderId;
    @Id
    private int productId;
    private int quantity;
    public DetailsOfOrders(long orderId,int productId)
         this.productId=productId;
         this.orderId=orderId;
    public long getOrderId() { return orderId; }
    public int getProductId() { return productId; }
    //getters and setters...
    }session bean (order method) -
            List<SCItem> listOfItems;                         //SCItem is a regular class
            Orders order=new Orders(userName);
            manager.persist(order);
            long orderId=order.getOrderId();   //get order id after persisting
            for(SCItem item : listOfItems)    //save details of order
             DetailsOfOrders detail=new DetailsOfOrders(orderId,"1");
             manager.persist(detail);                                                   //exception occures here
           }when i'm trying to make an order i'm getting the exception-
    javax.transaction.RollbackException: [com.arjuna.ats.internal.jta.transaction.arjunacore.commitwhenaborted] [com.arjuna.ats.internal.jta.transaction.arjunacore.commitwhenaborted] Can't commit because the transaction is in aborted state
    what is the problem?
    thanks in advanced.

    yes, the entity classes have no-arg constructors (i just tried to write it shortly here...)
    about the other thing , well i'm sorry , the right code is-
    session bean (order method) -
       List<SCItem> listOfItems;                         //SCItem is a regular class
       Orders order=new Orders(userName);
       manager.persist(order);
       long orderId=order.getOrderId();   //get order id after persisting
       for(SCItem item : listOfItems)    //save details of order
         DetailsOfOrders detail=new DetailsOfOrders(orderId,item.getProductId());
         manager.persist(detail);                                                   //exception occures here
         }what else could it be?

  • I am currently having trouble with an attached PDF fill-able form created in Acrobat being non savable in Reader

    Hello, I was wondering if you would be able to help me out?
    I am having trouble with my attached PDF fill-able form, I am creating a form that has a limit of one page so in order for more room in a certain field I have added a Hyperlink to an additional fill-able(secondary) form within the Parent document (primary fill-able form. The secondary form is inserted as an attachment into the Primary form. My problem is when I open this document up in Adobe Reader, the Primary fill-able form is savable but the attached Secondary form for which the hyperlink leads to is non-savable and is a must print only. Is there a way to make the Secondary form savable as well within the same document? or is there another way I could execute what it is I am trying to achieve?
    Trying to save other as extended reader has not worked, also if I save the attachment file as an extended reader first I am unable to attach a return hyperlink back to the Parent document,
    Help would be greatly appreciated please and thank you!

    I can't say for certain without looking at the actual PDF but it does appear that they created one large text box over multiple lines. For a fillable form it may have been smarter to remove the lines and create a box with smaller text that supports multiple lines.
    At any rate, nothing you can do about it with the free Reader (and depending on the security, maybe nothing with Acrobat either.)

  • I am currently having trouble with an attached PDF fill-able form...Help Please

    Hello, I was wondering if you would be able to help me out?
    I am having trouble with my attached PDF fill-able form, I am creating a form that has a limit of one page so in order for more room in a certain field I have added a Hyperlink to an additional fill-able(secondary) form within the Parent document (primary fill-able form. The secondary form is inserted as an attachment into the Primary form. My problem is when I open this document up in Adobe Reader, the Primary fill-able form is savable but the attached Secondary form for which the hyperlink leads to is non-savable and is a must print only. Is there a way to make the Secondary form savable as well within the same document? or is there another way I could execute what it is I am trying to achieve?
    Help would be greatly appreciated please and thank you!

    Here is the code, thought I had put it in the first time, guess not heh. Anyway, I converted the arrayList(accountList) to a String so that I could see the that element I am trying to index is in there, which it is. I also checked the file that i'm populating the arrayList from and it also has the element in it.
    public static void getAccountNumbers() {
              accountList = LoadStoreAccounts.readCollectionObject();     
              accountInfo = accountList.toString();
              JOptionPane.showMessageDialog(null, accountInfo);
              acctNumIndex = accountList.indexOf(accountNumber);
              acctIndex = String.valueOf(acctNumIndex);
              JOptionPane.showMessageDialog(null, "Index of accountNumber    is: " + acctIndex);

  • Hi, having trouble with my iMac on startup. Background screen appears, but no icons,

    Having trouble with my iMac- on startup, the background screen appears, but no icons. The spinning beach ball appears for quite a long while, then when the icons finally come up, when I open a finder window, the only icons to appear are the Network and Macintosh HD icons. I've tried to repair disk permissions: this came up with heaps of errors, which it then fixed, but the original problem remains.
    Any suggestions on how to fix this?
    thanks

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins and log in as Guest. For instructions, launch the System Preferences application, select Help from the menu bar, and enter “Set up a guest account” (without the quotes) in the search box. Same problem(s)?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    Note: If you’ve activated “Find My Mac” or FileVault in Mac OS X 10.7 or later, then you can’t enable the Guest account. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. The instructions provided by Apple are as follows:
    Be sure your Mac is shut down.
    Press the power button.
    Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
    Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear).
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Same problem(s) in safe mode?
    After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of steps 1 and 2.

  • Anyone else having trouble with Hard Candy Cases?

    I ordered a Hard Candy Case back on 3/22. I subsequently received an e-mail from HCC stating that my case order was changed to the newer 'Kickstand' model. Fine. Just want my case. Now after 60 days of being on the market, I still don't have my case even though HCC debited my Paypal account on 3/22. I can't seem to get a response from them either.
    Anyone else having trouble with HardCandy? I hope I'm an isolated case (sorry!), but I am curious if there is a trend.
    Thanks,
    Chris

    After going away does it come back randomly too? if that is the case, maybe to do with trackpad sensing your gesture correctly?

  • I'm having trouble with iTunes synching and accessing the iTunes store.

    I'm having trouble with iTunes synching and accessing the iTunes store.   When synching, the process tops at the back up stage, freezes and I can't close the iTunes window, need to ctrl alt del.   When trying to access the store, the progress bar stops halfway.   I've googled heaps and tried most of the standard answers - unistall, reinstall, etc, now looking for some help please.
    This has only started a few weeks back, after working smoothly for the 2 years of owning the iPhone 3gs.
    Any suggestions will be appreciated, it's getting realy frustrating.
    Cheers for now,
    Marty

    http://support.apple.com/kb/HT1923?viewlocale=en_US
    this worked perfectly for me, with no loss of library! BUT was warned about uninstalling things in the order listed...FYI.

  • I am having trouble with disk space,

    I am having trouble with disk space, I am always getting the error message that I need to delete files on my start up disk, I am all out of space. I cant even save a file to my desktop without getting the message, Is there a way I can free up space. I am not very computer savvy, being a pensioner I  cannot afford expensive options.  I was familiar with the old apple imac, but I was given a macbook pro for my birthday, and am trying to work it out.  I use it mostly for photos and web.

    Jillian,
    I'm assuming this is a second-hand machine.  If it is brand new, get it to Apple because it's their problem, not yours.
    First thing you should do is go to Programs: Utilities: Disk Utlity and choose "Repair Permissions."  If you don't have the OS X system disk (a DVD) go ahead and verify the Disk. It can't fix itself, so to speak, but can tell you if there is a problem.  iIf you have the OS X system disk then boot off the disk, go to Disk Utility, and run Repair Disk.  Assuming all is OK:
    You don't need to download any programs to get started on figuring out why all your space is gone.  Try this first:
    Oh, when deleting, especially at first, you may have to move only small folders or even files, of 100 MB or so to the trash, then empty the trash.  As the free space increases, you can trash progressively larger files.  To delete files, the computer needs to create even more files to tell it what files it is deleting before it deletes them.  I know, go figure.;)
    It would not be a bad idea, and is in fact a very good idea, to run the disk utility "Repair permissions" after every half-dozen trash/empty trash cycles and then restart the computer.
    The basic plan is to search for unreasonably sized folders. 
    From the Finder:
    Open a window, click in the window and then:
    Go to menu item View. (If you click on the desktop instead of a window, you'll get a different set of view options, none of which is the one you want.)
    Click on it and move the cursor to the bottom choice, Show View Options (alternative Apple (Command)-J).  Make sure the checkbox "Calculate all sizes" is checked. If it isn't, check it and then click on "Use as default" When checked, it will show you the size of a folder.  If it was unchecked, don't be surprised if nothing seems to be happening as it will take awhile for the computer to calculate the size of, literally, thousands of folders.  But some will start to show up right away. If you open a new window and don't see any folder sizes, Repeat the Show View Options routine above and if Calculate all sizes is checked, just wait.
    I've heard you Aussies enjoy a beer or two.  If your Mac has to calculate all the folder sizes, this might well be a good time to have a cold one or two, as it will take some time.
    Go to the root level, which is "Computer" or "_Your Disk Name_," generically Macintosh under Devices in the sidebar.
    Make sure you are in list view and can have the size column visible.  Click on it (turns blue-grey) and it will sort by size, large to small or the reverse.  Click again to reverse the sort order.
    On my 10.6.8 machine, I have
    98 GB under Users.
    22 GB under Applications. If you only have the Apple-supplied applications, you probably have between 4 and 6 GB here.
    Library is 24.5 GB
    System is 4.6 GB
    Other than a few trivially small files or folders, that should be about it for the root level.
    If you have two System files, you shouldn't, and will need to get rid of one.  Ask for advice before deleting one or the other.  If you have a, "Previous System," or "Old System," -- can't remember the language, you can proably safely delete it if you are satisified with how your computer is working. 
    The Library is a candidate for bloat.  Some applications, especially those that manipulate audio or video, store the bulk of their code, generally resources of one type or the other, in the Application Support folder. For instance, I have a 10.5 GB folder of Live Type in my Application Support folder.  Honestly, I don't know what program it is for, but don't care because I upgraded to a 3/4 TB drive.  In contrast, on my 10.7.1 computer, which has little more than the Apple supplied software on it at this point, uses only 1.5 GB for Application Support.  The support folders will remain even if the program itself is deleted.  As a general rule, I wouldn't bother checking out anything under 300 MB or so.  Any folders over that, you should note for possible deletion _but_ be sure to ask someone with more knowledge about this what it is used for before deleting.  If it is used for some program that isn't on your machine, meaning the program has been deleted, you can safely delete it.  If the program is still on the machine, decide if you will use that program and, if not, delete the program and its application support files.
    My next largest folder in the Library is Audio at 2.7 GB.  I have audio editing programs, so that makes sense. You probaby have one also, but shouldn't be over 500 MB or so.
    Next is Printers at 1.4 GB.  This is a good place to clear up space.  You'll see folders with various printer brands.  Do you have a Brother printer?  No?  Trash it.  Just keep the folder with your printer brand and the PPD folder and trash the rest.  If you want to get real fancy, open your brands folder and delete the files for every model other than the one you have. 
    My next largest is Fonts at 490 MB.  Leave that alone. In fact, unless Fonts is something insane like 2 GBs, stop deleting from the Library.
    Go to Users.  There could be between one and more than one user.  (Fudge of an answer there.)  There is no such thing as a guideline for user folder size.  Is there a previous user?  If so, check with them and see if you can delete it.  I have a "dummy" administrative - level user that can be used for some esoteric rescue operations and it takes up a trivial 33 KB or something like that while my own account is pushing 100 GB.
    You'll see several folders, Music, Pictures, Desktop, etc.  This is stuff you or the previous user have created.  If you don't want it, delete it.  You will also see, aha! another Library folder.  There shouldn't be many folders over 100 MB here except for Mail and our friend Application Support.  I get a lot of mail, rarely delete any, and have carried it over from 10.3 and measures out at 3.7GB.  Still, if its someone elses mail and you don't want it, you can delete it, but again, check with more knowledgable people as there are probably some files and folders you absolutely should not delete, others that you should delete from within Mail, and some you can manually delete. 
    My Application Support Folder weighs in at 1.4 GBs, of which 1.2 GBs is for Final Vinyl.  That's a lot.  Sneaky sucker stored some untitled audio files in there.  Bye! OK, now the Application Support folder is down to 145 MB.  So, I'd say anything much over that should be investigated for possible deletion.  Close up Library and move on.
    Downloads may be very small or very large.  Depends on how meticulous the previous user was in deleting or moving to a more appropriate location.  Ask them if there is anything they want, and if no, delete it.
    My Application folder has Zero KB because I always install at the root, administrative level.  If there is anything there, figure out if you want to use it or not.  If not, trash it.
    Overall:
    1) Don't sweat the small stuff.  The days are long gone when searching a hard drive for a 100 K file to delete is worthwhile.
    2) Start small.  A disk that full is going to be pretty touchy, so once you have identified a bloated folder, go inside of it and trash the smaller files and folder, then empty the trash, then delete a few more files, empty the trash, etc. 
    3) Don't forget to periodically Repair Permissions and restarting the computer.
    4) If you are unsure about whether a folder or file can be safely deleted, ask someone knowledgable or just knock off for the day and hit it again tomorrow.  Seriously, an unanswerable question you have might well be answered by sleeping on it and attacking it the next day.
    5) As Douglas Adams wrote: DON'T PANIC!
    Best of luck! 
    Chris

  • Hi im having trouble with downloading an album off my computer. i have forgotten the security questions, but have already sent them to my email. could someone help me in how to get the answers?

    Hi im having trouble with downloading an album off my computer. i have forgotten the security questions, but have already sent them to my email. could someone help me in how to get the answers?

    Hello Carpets,
    Thanks for the question. You can reset your security questions with your rescue email address, as outlined with this article:
    Apple ID: All about Apple ID security questions
    http://support.apple.com/kb/HT5665
    If you do not see the option for resetting your questions with a rescue email address, see this excerpt:
    Note: The option to send an email to reset your security questions and answers will not be available if a rescue email address is not provided. You will need to contact iTunes Store support in order to do so.
    Rescue email address and how to reset Apple ID security questions
    http://support.apple.com/kb/HT5312
    Additional Information:
    Apple ID: Contacting Apple for help with Apple ID account security
    http://support.apple.com/kb/HT5699
    Thanks,
    Matt M.

Maybe you are looking for