HT3702 How to check downloads waiting for bank info update

I had entered a few donwloadds because I didn't know that my bank info needed to be updated.  Now it's updated, but I don't want those apps any more because I have others now.  How can I check my waiting list and cancel them?

All purchases are considered final (unless there is a problem with an item), but you can try the 'report a problem' link to contact iTunes Support and see if they will cancel the purchases : http://reportaproblem.apple.com
If the 'report a problem' link doesn't work then you can try contacting iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

Similar Messages

  • How long does it take for the auto updater to install a new version?

    I've just seen that Flash v11.4.402.287 is available.  How long should I wait for the auto updater to update my system (currently v11.4.402.278)?
    In the past I have waited 2-3 days and the new version still hasn't been installed, even though the Task Scheduler shows that the auto updater is running.  I've then given up and manually installed the new version as I think that this is too long to wait.
    Thanks

    The good news - the auto update has worked this time and I now have v11.4.402.287.
    The not so good news - I've had a look through both flashinstall.log files and there is nothing strange there.  I can see the times when the auto updater has done the update, and also the last 2 times when I've done the update manually.  There aren't any other entries - i.e. the only entries are for successful installations.
    As the update has worked for me this time I think that this can be closed.
    Thanks for your help.

  • How do I download Safari for Mountain Lion?

    How do I download Safari for Mountain Lion? It's not in the App Store, it is nowhere on the Apple website . . . OK, so I guess it is supposed to be part of Mountain Lion, but I am running Mountain Lion and whatever version of Safari I ended up with would not even run at all . . .  so I trashed it (or at least what part of it I was allowed to trash) and though reinstalling it would be a good idea . . . but I can't find one to reinstall. The latest version I can find is for Leopard, and of course that won't run.
    Not to mention that since getting Mt Lion, iPhoto won't run . . . it produces an error message saying I need to check with the developer to make sure it runs with this version of OS X! So I wonder who the developer of iPhoto is, who produces software that is incompatible with Mt Lion???
    And even in submitting this there is no option to tag it for any OS later than 10.7.4!!

    Since Safari is crashing, post a crash report...   reinstalling the OS X rarely helps a browser crash issue.
    If Safari has just crashed, press the Report button on the CrashReporter dialog box to view the crash  information.
    Copy/paste the entire contents of the Crash Reporter window into your reply. If the crash report dialog does not appear or the crash is hard to reproduce, crash logs can be retrieved from the ~/Library/Logs/CrashReporter> folder.
    Please include the "binary images" section...

  • After creating a form, how do I download it for further editing with Adobe Professional XI?

    After creating a form, how do I download it for further editing with Adobe Professional XI?

    This is probably a new precaution that Apple has taken to alert folks that something has occurred with their account that has not occurred before*, namely a Mac has downloaded something from their account that has not done so before. And as the notice says, if it was you doing so, then you may safely ignore the notice. Also, do not be alarmed, Apple refers to all downloads as purchases, even when they are free.
    But if you are truly concerned about the notice then you can authorize the Mac with your iTunes account, which should be the same as your MAS account. Open iTunes on the older Mac and sign into your account. Then in the Store menu choose Authorize This Computer. Now this Mac is definitely associated with your account and can now play media that you purchase from the iTunes Store as well.
    *My banks do the same thing when I pop up making a purchase with my bank cards somewhere in the world I have never made a purchase before. They call me and email me and want to know if it is indeed me using the card.

  • How do i download itunes for windows 7, says application support needed, error 2 how do i fix this pls?

    how do i download itunes for windows 7, when i keep getting error report saying i need application support? i tried downloading an "application support" download, still did not work, also says, Error 2

    There are a couple of methods for using more than one iPod on a single computer. Method one which has already been described is to have two Mac or Windows user accounts which by definition would give you two completely separate libraries. Method two is to set your preferences so that either one or both iPods get updated with only certain playlists within one library. Have a look at this article and see what you think and go for whichever you feel suits your needs best: How To Use Multiple iPods with One Computer
    Another option when using a single library is to set one or both of the iPods to manual update: Managing content manually on iPod
    Choosing the update option "automatically update selected playlists only" allows you to create a playlist specifically for each iPod and drag the tracks you want into it. If you tire of the list and want to change it, you just add or remove the songs you don't want. The ones you take out out remain in the library to be used by the other iPod. Make your playlist a Smart playlist and limit the size to just below the advertised capacity of your iPod ( for example, around 3700MB for a 4GB or 1800MB for a 2GB Mini or Nano). You can read more about playlists at these links:
    iTunes: Creating playlists of your favorite songs
    How to create a Smart Playlist with iTunes

  • How can i download office for mac from a disc to my macbook air?

    how can i download office for mac from a disc to my macbook air?

    You have four options that I know of.
    1) Use an external DVD drive that will work on the MBA. (Apple's external Superdrive for MBA)
    2) Use a remote disk connection, using another Mac with a DVD drive, and sharing the drive with the MBA.
    3) Download Office from Microsoft's website, and then use only the registration code that came with your DVD purchase to authorize the registration.
    4) Copy the contents of the Office DVD to a USB flash drive, using another computer. Then install from that flash drive.
    Maybe someone else has an idea, if none of the above will woek for you.

  • How to check with table for cursor..?

    How to check with table for cursor..?
    Here I have Table temp_final_plan
    Here i want to update if already exit...below is the procedure....
    CREATE OR REPLACE PROCEDURE spu_final_profit_plan
    AS
    -- Constant declarations
      ln_errnum number := 0;
    -- Variable declarations
       ls_errmsg app_errors.err_msg%TYPE;
       ls_appmsg app_errors.app_msg%TYPE;
       ls_appid  app_errors.app_id%TYPE;
    -- Cursor declaration for final_update_el
    CURSOR cur_final_update_el IS
        select '910' ent,
               '9127316' center,
               post_acct,
               sum(avg_mtd_01) sum_avg_mtd_01,
               sum(avg_mtd_02) sum_avg_mtd_02,
               sum(avg_ytd_01) sum_avg_ytd_01,
               sum(avg_ytd_02) sum_avg_ytd_02
          from mon_act_cypy
         where rec_type = 'A'
           and sum_flag = 'D'
           and yr = '2008'
           and substr(ctr_or_hier, 1, 2) = 'el'
           and ent || sub_ent in
               (select ent || sub_ent
                  from ent_ref
                 where roll_ent || roll_sub_ent = '999100')
         group by post_acct
        having sum(avg_mtd_01) <> 0
            or sum(avg_mtd_02) <> 0
            or sum(avg_ytd_01) <> 0
            or sum(avg_ytd_02) <> 0;
    -- Cursor declaration for final_update
    CURSOR cur_final_update IS
        select b.plan_ent b_plan_ent,
               b.plan_ctr b_plan_ctr,
               a.post_acct a_post_acct,
               sum(a.avg_mtd_01) sum_avg_mtd_01,
               sum(a.avg_mtd_02) sum_avg_mtd_02,
               sum(a.avg_ytd_01) sum_ytd_mtd_01,
               sum(a.avg_ytd_02) sum_ytd_mtd_02
          from mon_act_cypy a,
               plan_unit_tbl b
         where a.ent || a.ctr_or_hier = b.ent || b.ctr_or_hier
           and a.rec_type = 'A'
           and a.sum_flag = 'D'
           and a.yr = '2008'
           and b.hier_tbl_num = '001'
           and a.ent || a.sub_ent in
               (select ent || sub_ent
                  from ent_ref
                 where roll_ent || roll_sub_ent = '999100')
         group by b.plan_ent, b.plan_ctr, a.post_acct
        having sum(a.avg_mtd_01) <> 0
            or sum(a.avg_mtd_02) <> 0
            or sum(a.avg_ytd_01) <> 0
            or sum(a.avg_ytd_02) <> 0;
    -- Begin the procedure body
       BEGIN
    -- Insert / Update final profit plan for final_update query using cursor
       FOR rec_final_update_el IN cur_final_update_el
       LOOP
       EXIT WHEN rec_final_update_el%NOTFOUND;
       IF rec_final_update_el. THEN
          UPDATE temp_final_plan
             SET sum_avg_mtd_01 = rec_final_update_el.sum_avg_mtd_01,
                 sum_avg_mtd_02 = rec_final_update_el.sum_avg_mtd_02,       
                 sum_avg_ytd_01 = rec_final_update_el.sum_avg_ytd_01,       
                 sum_avg_ytd_02 = rec_final_update_el.sum_avg_ytd_02,       
           WHERE ent = rec_final_update_el.ent
             AND center = rec_final_update_el.center
             AND post_acct = rec_final_update_el.post_acct;
       ELSE
          INSERT INTO temp_final_plan VALUES(rec_final_update_el.ent,
                                             rec_final_update_el.center,
                                             rec_final_update_el.post_acct,
                                             rec_final_update_el.sum_avg_mtd_01,
                                             rec_final_update_el.sum_avg_mtd_02,
                                             rec_final_update_el.sum_avg_ytd_01,
                                             rec_final_update_el.sum_avg_ytd_02);
       END IF;
       END LOOP;
    -- Insert / Update final profit plan for final_update query using cursor
       FOR rec_final_update IN cur_final_update
       LOOP
       EXIT WHEN rec_final_update%NOTFOUND;
       IF rec_final_update. THEN
          UPDATE temp_final_plan
             SET sum_avg_mtd_01 = rec_final_update.sum_avg_mtd_01,
                 sum_avg_mtd_02 = rec_final_update.sum_avg_mtd_02,       
                 sum_avg_ytd_01 = rec_final_update.sum_avg_ytd_01,       
                 sum_avg_ytd_02 = rec_final_update.sum_avg_ytd_02,       
           WHERE ent = rec_final_update.b_plan_ent
             AND center = rec_final_update.b_plan_ctr
             AND post_acct = rec_final_update.a_post_acct;
       ELSE
          INSERT INTO temp_final_plan VALUES(rec_final_update.b_plan_ent,
                                             rec_final_update.b_plan_ctr,
                                             rec_final_update.a_post_acct,
                                             rec_final_update.sum_avg_mtd_01,
                                             rec_final_update.sum_avg_mtd_02,
                                             rec_final_update.sum_avg_ytd_01,
                                             rec_final_update.sum_avg_ytd_02);
       END IF;
       END LOOP;
    -- EXCEPTION handling section
       EXCEPTION
    -- Fire OTHERS Exception case by default
       WHEN OTHERS THEN
    -- ROLL BACK Transaction, if any failure
       ROLLBACK;
       ln_errnum := SQLCODE;
       ls_errmsg := SUBSTR(SQLERRM, 1, 100);
    -- Log the ERRORS into APP_ERRORS table using SPU_LOG_ERRORS procedure
       spu_log_errors(ln_errnum, ls_errmsg, ls_appid, ls_appmsg);
    -- End of the stored procedure
    END spu_final_profit_plan;
    [\pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    I'm not sure what you mean by, 'How to check with table for cursor..?' but I'll offer a comment on your Code Snippet. I think you want to know how to check if a record exists so you know if you need to perform an INSERT or an UPDATE.
    Here is a snippet of your code. I'll put my comments in "Comment" style in your code.
    -- Insert / Update final profit plan for final_update query using cursor
       FOR rec_final_update_el IN cur_final_update_el
       LOOP
    /* There is no need to test for %NOTFOUND since you are using Cursor FOR Loop! 
    ** This construct automatically exits when the last record is processed. */
       EXIT WHEN rec_final_update_el%NOTFOUND;
    /* Is this where you would like to know how to Check if the record already exist??
    ** I asked this because, 'rec_final_update_el.' is not valid syntax.  Are you looking for
    ** an Cursor Attribute or Method you can check here? 
    ** I would suggest a Primary Key or Unique Index on ENT, CENTER, and POST_ACCT
    ** on the TEMP_FINAL_PLAN table. Then simply perform an INSERT and code an
    ** Exception to UPDATE when you get a DUP_VAL_ON_INDEX exception.  Otherwise,
    ** you will need to simply run an Implicit or Explicit Cursor to test if the row exists and
    ** use this return value to determine if you should INSERT or UPDATE.  */
       IF rec_final_update_el. THEN
          UPDATE temp_final_plan
             SET sum_avg_mtd_01 = rec_final_update_el.sum_avg_mtd_01,
                 sum_avg_mtd_02 = rec_final_update_el.sum_avg_mtd_02,       
                 sum_avg_ytd_01 = rec_final_update_el.sum_avg_ytd_01,       
                 sum_avg_ytd_02 = rec_final_update_el.sum_avg_ytd_02,       
           WHERE ent = rec_final_update_el.ent
             AND center = rec_final_update_el.center
             AND post_acct = rec_final_update_el.post_acct;
       ELSE
          INSERT INTO temp_final_plan VALUES(rec_final_update_el.ent,
                                             rec_final_update_el.center,
                                             rec_final_update_el.post_acct,
                                             rec_final_update_el.sum_avg_mtd_01,
                                             rec_final_update_el.sum_avg_mtd_02,
                                             rec_final_update_el.sum_avg_ytd_01,
                                             rec_final_update_el.sum_avg_ytd_02);
       END IF;
       END LOOP;I hope I've answered your question, but if I haven't please provide more details so we can better understand your request.
    Craig...

  • TS4268 how i can download facetime for my iphone4s.i couldn't find out it in apple store also.please help me....

    how i can download facetime for my iphone4s.i couldn't find out it in apple store also.please help me...

    You don't download it.  it is built in to your iphone, unless it was originally purchased from one of the Middle eastern countries where it is not allowed.
    You should not leave your e-mail on a public forum.
    iPhone User Guide (For iOS 6 Software)

  • How can i download applications for my mac

    How can i download applications for my mac for free

    At the App Store you can download any file that is available for free. Then there are other sites such as MacUpdate.com where you can also find free files to download.

  • How can I download itunes for my lenovo yoga

    how can I download itunes for my lenovo yoga? It keeps telling me that the application can't run but I need itunes on my computer for my iphone and itouch.

    Download iTune
    http://www.apple.com/itunes/download/

  • How long should I wait for an invoice?

    I made a Buy It Now Purchase that indicated there was free shipping.   I went to pay for it but I couldn't.   The seller had not indicated a shipping cost - I imagine it would be zero since they offered free shipping.  I emailed them asking for an invoice so I can pay, but haven't heard anything from them.  I'm thinking they forgot about it and went on holiday!   Sent another email today.  Got an email from Ebay telling me to pay, but there's no invoice.  How long do I wait for the seller to send me one?   Thanks.

    The seller had not indicated a shipping cost - I imagine it would be zero since they offered free shipping.  Well, no.If the seller does not indicate a shipping cost to Canada, it means he doesn't plan to ship to Canada.The Free Shipping is domestic only, although some Canadian sellers, listing here on dotCA, will give Free Shipping to Canada, and $0.00 shipping to the USA. Rarely will a US shipper offer the same deal to Canadian buyers.If your seller is in China, he might include the price of shipping in the asking price. (Which is what Free Shipping really means.) Since he has much the same cost for shipping anywhere in the world, he may offer Free Worldwide Shipping.However most Chinese shippers are quite sophisticated and hare set up to bill the customer automatically, precluding the need for communication, which runs into language barriers. To find the shipping cost, go back to the listing, open the Shipping and Handling tab and identify your Canadian postal code. That will give you your shipping cost. If there is no shipping cost to Canada, you have a different problem.The seller may continue to ignore you. This costs him the fees he pays to eBay.He may Report you as an Unwelcome Buyer. This gets the transaction cancelled and his fees back, but I believe it puts a black mark on your Buyer account. (Not an important one.)

  • TS3212 How i can download iTunes for Windows 64Bit if I have downloading this through Linux Ubuntu?

    How i can download iTunes for Windows 64Bit if I have downloading this through Linux Ubuntu?

    Thank you for you answer, but it isn't heart of the problem. The problem is that I don't have choose iTunes version manually, it's happens automatically, and start downloading iTunes for Windows 32-bit.

  • Is there a solution for iphone 4 too like iphone5, It doesnt have tab Cellular. How to check call duration for total dialled calls (after resting) on a particular day?

    How to check call duration for total dialled calls (after resting) on a particular day in iphone 4?
    Is there a solution like iphone 5, i.e.Settings > Cellular.

    if the device is unlocked cellular is called mobile

  • How can i download adobe for Macbook 10.5.8

    How Can i download Adobe for Macbook 10.5.8

    Which Adobe software?
    If you are referring to Flash, you would have to upgrade to v10.6 Snow Leopard.
    See System Requirements here >  Adobe - Install Adobe Flash Player

  • TS3694 im trying to restore my iphone and itunes doesnt allow it to restore without updating. problem is that i have the latest update on my iphone so why is it forcing me to wait for a 7hr update download when i already have the update and only need to r

    im trying to restore my iphone and itunes doesnt allow it to restore without updating. problem is that i have the latest update on my iphone so why is it forcing me to wait for a 7hr update download when i already have the update and only need to restore?

    Sadly, the iPhone 3G can not be upgraded beyond iOS 4.2.1.

Maybe you are looking for

  • Can't connect brand new iPod touch 4th gen to iTunes, please help!

    I just got a new iPod touch, 16 gig 4th generation. I'm going through the setup process. Once I get to the option to connect through a network, I hit a problem. My internet at home requires a MAC address to be "invited" into the network before I can

  • How to refresh JSR 286 Portlet from managed bean?

    Hi, I am using jdev 11.1.1.5, I have created a Portlet Producer Application, this application contains ADF TABLE with command link inside and the partial submit set to false. I want to refresh the portlet when in Portal Application from within the ac

  • BEx cumulative feature issue

    Dear Friends, I am working on a scenario to create a report like this : Customer Document date doctype refecendoc no  clrdocno  <KYF DEB_CRE_LC>   <KYF Balance>. Now the issue is..I want ot have date selection on Deb_cre_lc keyfigure and customer als

  • Using metadata in conditions

    I'm trying to make a .targets file for my NuGet package, which will link to a proper .lib file depending on the C++ runtime library of a project. This answer recommends to use %(ClCompile.RuntimeLibrary) metadata for this. But I cannot use metadata i

  • Adobe Premiere Pro CS4 Help Is Public

    You've heard the Adobe CS4 product announcements. Care to take a closer look at the new features in Adobe Premiere Pro CS4? Adobe has posted the Help contents on the web where you can search it and write comments on it. See Adobe Premiere Pro CS4 Hel