I recently purchased some information to be downloaded to one of my apps I never received the download and I was charged multiple times I reported the problem my  Community

I recently purchased some information to be downloaded to one of my apps I never received the download and I was charged multiple times I reported the problem And it's been about a week my question is how long does it take  to credit my account back. It's my money and I want it now.

It can take a while for your money to show up in your bank, but a week is a bit over the top. Try contacting iTunes Store Support to make sure the refund was issued.

Similar Messages

  • HT201359 I purchased something from iTunes and I was charged three times. How would I go about getting refunded?

    I bought something from iTunes and I was charged three times. How would I go about getting refunded?

    You can either try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    Or 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

  • HT4009 I made an In-App purchase, but the product never downloaded and I was charged for it.

    What do I do now? I do not want to pay $19 for help on a $4.99 purchase.

    Hey there rjcj5600,
    It sounds like you made an in app purchase and have been charged, but have not received the item. I would reach out to our iTunes Store support directly with this article:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase
    http://support.apple.com/kb/ht1933
    To report an issue with your iTunes Store, App Store, Mac App Store, or iBooks Store purchase, follow these steps:
    Find the email receipt for your purchase.
    Click Report a Problem under the app that is having the issue.
    When prompted, enter the Apple ID and password you used to purchase the item, then click Report a Problem.
    Click Report a Problem next to the item you are having an issue with.
    From the Choose Problem dropdown menu, choose the appropriate issue.
    Follow the onscreen instructions and—if prompted—type a description of the problem into the text field.
    Click Submit to have your issue reviewed.
    Thank you for using Apple Support Communities.
    All the best,
    Sterling

  • TS1424 I bought the coin expansion for Solomon's bone yard, and I was charged 3 times and never got the purchase on the game, rip off I want my money back !

    Paid money for an expansion on Solomons bone yard, to get bonus coins, got charged 3 times by iTunes , but never reciveved the bonus pack, rip off

    As this is a User to User forum... would suggest that you contact iTunes Support and requst assistance.
    You can use this Link  >  Apple  Support  iTunes Store  Contact Us

  • HT1933 I was charged three times for one of my purchases. How do I get a refund?

    There were problems with iTunes while I was purchasing and I was charged three times for the same purchase. I am not on the same workstation here iTunes is installed now. How do I get a refund without using the receipt function?

    I found this link on another post: http://www.apple.com/emea/support/itunes/contact.html?form=account&topic=iTunes% 20Store%20Account%20and%20Billing#
    And I was able to submit a request. Let's see if it solves the problem.

  • HT203421 I have recently purchased some apps from the app store and after downloading them, the icon that appears in the dock changes to a different icon. It is now the same icon appearing on all newly downloaded apps.  Does anyone know what is happening

    I have recently purchased some apps from the app store and after downloading them, the icon that appears in the dock changes to a different icon. It is now the same icon appearing on all newly downloaded apps.  Does anyone know what is happening here? Even updating an older game app resulted in the original game icon changing to the new identical icon that all new apps are appearing with.  This new icon is like a page with a ruler, pencil and paintbrush. Any tips on how to stop this or how to revert to the icon as it appears on the app store would be appreciated.

    https://discussions.apple.com/thread/6132949?tstart=0

  • I recently purchased some songs from the itunes store. I ma trying to sync them to my itouch. When I do I get the following message "itunes sync..67 items could not be synced"Anyone have an advice on how to sync these items?

    I am having trouble syncing my itouch I recently purchased some songs from the itunes store. I ma trying to sync them to my itouch. When I do I get the following message "itunes sync..67 items could not be synced"Anyone have an advice on how to sync these items?

    Connect your phone to iTunes, then right-click on the name of your phone on the left sidebar and select Reset Warnings.  Then sync again and you should get a warning listing the problem files.

  • I recently purchased some scripts and saved them as actions but wont work with assigned function key

    i could use some help ....i recently purchased some scripts to help automate things i do with scrapbooking.... i am using cs4 and have vista...i have made actions to make it easy to use the scripts.... i have assigned function keys to make it easy to use the actions... but it doesnt seem to work with the function keys...i can run the actions by pressing that arrow/button on the bottom of the action palette but when i hit the f key nothing happens..when i first got the scripts it did work.... but now it doesnt....i deleted the actions and made them again but still dont work with f keys...what could be the problem and what do you suggest i do...others who have purchased these same actions seem to be able to use them with the f keys.... thanks for any thoughts and suggestions

    think i may have solved it myself and passing this dum thing along....on my keyboard is flock...i mustve hit it and the keys were locked...so i hit it and now they work.... oh dear.

  • I need some information about File Download & File Upload

    Hi  All,
    Can any one help me on this, I need some information about File Download & File Upload.
    I read tutorial abt file upload and download but some of methods in tutorial are deprecated so i need clear information abt File upload and Download, if possible Code examples.
    Thanks
    Ragards
    Ravi Golla

    Hi Ravi
    Check out thses links for examples:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00062266-3aa9-2910-d485-f1088c3a4d71
    /docs/DOC-8661#22 [original link is broken]
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/202a850a-58e0-2910-eeb3-bfc3e081257f
    Otherwise you can simply follow this code for file download
    Use the code like this.
    1) Create the button and bind the action for it.
    2)then write this code in the action.
    3) do not write any thing in the init method.
    try {
    final byte[] content = this.getByteArrayFromResourcePath("C:
    xyz.properties");
    final IWDCachedWebResource resource = WDWebResource.getWebResource(content, WDWebResourceType.UNKNOWN);
    try {
    final IWDWindow window = wdComponentAPI.getWindowManager().createExternalWindow(resource.getAbsoluteURL(), "WD_Filedownload", false);
    window.open();
    catch(Exception e)
    wdComponentAPI.getMessageManager().reportException(new WDNonFatalException(e), false);
    5) writr the method getByteArrayFromResourcePath
    //@@begin others
    private byte[] getByteArrayFromResourcePath(String resourcePath)
    throws FileNotFoundException, IOException {
    FileInputStream in = new FileInputStream(new File(resourcePath));
    ByteArrayOutputStream out = new ByteArrayOutputStream();
    int len;
    byte[] part = new byte[10 * 1024];
    while ((len = in.read(part)) != -1) {
    out.write(part, 0, len);
    in.close();
    return out.toByteArray();
    //end
    Similarly for file upload
    Similarly for upload in to server path also do the same
    IWDAttributeInfo attInfo =
    wdContext.getNodeInfo().getAttribute("upload");
    binaryType =
    (IWDModifiableBinaryType) attInfo.getModifiableSimpleType();
    uploadedName = binaryType.getFileName();
    File filename =new File("
    <server name>
    <folder name>
    "+uploadedName ); );
    try {
    FileOutputStream out = new FileOutputStream(filename);
    out.write(b);
    out.close();
    } catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
    } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();

  • For some reason I cannot download and install the latest version of iTunes. 11.0.2. Could you help please? Each time I try, I get a command box saying 'The feature you are trying to download is on a network resource that is unavailable. Click Ok to try ag

    For some reason I cannot download and install the latest version of iTunes. 11.0.2. Could you help please? Each time I try, I get a command box saying 'The feature you are trying to download is on a network resource that is unavailable. Click Ok to try again or enter an alternate path to a folder containing the installation package iTunes.ms in the box below.
    Please help!
    Many thanks in advance
    Ben Bentley
    West Midlands
    UK

    (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?

  • HT204370 i purchased the movie THE GREY and it never downloaded but i was charged. how do i get my purchased movie, sense its paid for?

    i purchased the movie THE GREY and it never downloaded but i was charged. how do i get my purchased movie, sense its paid for?

    Store>Check for Available Downloads
    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I recently purchased a new iPad mini at a silent auction fundraiser. I only received a credit card receipt. What can I to show proof of purchase and register the product?

    I recently purchased a new iPad mini at a silent auction fundraiser. I only received a credit card receipt. What can I to show proof of purchase and register the product?

    Go here to add the iPad to your support profile. That should work. Keep the credit card receipt as well.
    https://supportprofile.apple.com/

  • Cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream, cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream

    cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream, cant access purchased book it says i downloaded and icon shows but it wont play or show up on menu bar im about to scream

    ps when syncing it jumps through steps 1 - 4 real fast, i seem to remeber iphone showing the number of tracks transferring and names, but i see nothing? then it sits on 5 saying "waiting for changes to be applied"

  • I have recently purchased an Iphone 4s white 16GB. When camera is used with a flash the picture is white and hazzy. Anyone with the same problem?

    I have recently purchased an Iphone 4s white 16GB. When camera is used with a flash the picture is white and hazzy. Anyone with the same problem?

    Yep. Exchanged for black and that solved it. Too much light leaks through the glass on the white phone.

  • I am using Windows 7 Home Premium 64-bit OS.  I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installa

    I am using Windows 7 Home Premium 64-bit OS.I've never had this problem before... today I opened iTunes and it prompted me to download the newest version.  I use iTunes all the time and have updated it multiple times with no issues.  During the installation process it gave me an error message that said: 
    Runtime error! 
    Program C:\Program Files\iTunes.exe
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I quit the installation, uninstalled iTunes and rebooted my computer.  I now receive a similar message with a slight difference:
    Runtime error! 
    Program C:\Program Files (x86)...
    R0634
    An application has made an attempt to load the C runtime library incorrectly.
    Please contact the application's support team for more information.
    I did not leave anything out from the error message.  It doesn't point to a specific file, it just ends with "(x86)..."  Every time I boot up my computer, this error message pops up on my desktop.
    How do I repair this issue?  I have found multiple suggested solutions but am unsure which one is the best, and I don't want to try a bunch of different things for fear I may make the problem worse.  I would like to try and fix this myself if possible but I need to know if that is really possible or if I need to take my computer to someone for repairs.  Any suggestions will be greatly appreciated!!

    Hi lustyln,
    I'm having a little trouble understanding all of what you are trying to explain. From what I can tell, it sounds like your PC has a lot of software problems and you want to know what is supposed to be there and what isn't.
    For reference, here are your product specifications:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01893242&lc=en&product=4043282
    To get your PC software back to how it was when it was first purchased, run a system recovery:
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c01867418&lc=en&product=4043282
    I hope this helps.
    ...an HP employee just trying to help where I can, but not speaking on behalf of HP.

Maybe you are looking for

  • Restore question and 10.3.9 download upgrade

    I can't get my computer (g4 iBook) to successfully complete a download upgrade of 10.3.9 from 10.3.2. It always freezes in the optimization mode and then I have to reinstall 10.3.2 (an archive install) all over again. What is weird is I can't even ge

  • Can I change Type Action "URI" to Type Action "Launch" in LiveCycle Designer ES 8.2?

    I am trying get a link in my pdf form to launch Windows Explorer to a folder or just launch the excel file in MS Excel. I used LiveCycle Designer ES 8.2 to create the form. My problem is most of my users have Chrome as their default browser. When the

  • Video freezes every few seconds

    My new iPad video playback freezes every few seconds.  I have a decentish Internet speed (2.3MB) and have turned all apps off and even reset.  Any ideas?

  • Release

    Hi All, Purchase Order was created and approved with Release Strategy 11 PO Value was reduced on 9/8/08 to close the PO..When closing a PO a new release strategy should not be applied. I don't want to reset release when PO line deleted or Reduce PO v

  • Block access to internet for a specific device?

    Hi, I have a TV, a NAS and other devices connected to my airport (and therefore to the internet) via ethernet cable. I want the TV to have access to my NAS, but I do NOT want the TV to have access to the internet. Can I block access to the internet f