Please help with credit card hold question

I just recently made my own apple id and i would like to know if apps i download will show up, by name, on the credit card hold. I want to download a free app without my parents knowing. My email is associated with the id. Please help.

cherryqueen2 wrote:
i had the same problem asked my company they had no answer so now what??
No answer, what nothing at all? Surely they confirmed that you have the correct number or if it was not, they offered to supply you with a replacement card, with new security code.
And if you have confirmed with your credit card company that the number you are using is correct, but iTunes doesn't recognise it, I'd say that was down to the credit card company and iTunes to sort it out, not you.
It's immaterial that you were purchsing free app, you still need a valid credit card.
Phil

Similar Messages

  • Help With Credit Cards In Incoming Payments

    Hi All,
    SAP Business One 8.81 PL05
    When I am creating an Incoming payment and I have selected my invoices and then select the payment means and put in my bank transfer amount.  I then go to the credit card tab and put through a claim there which goes to a claims GL account.  I put in the Credit Card No. 1 and in Valid Until I put 12/12 I fill in the rest of the fields and when I try and add the Incoming payment I get the following error.
    Date deviates from permissible range [Journal Entry - Rows - Value Date][line: 3]  [Message 173-11]
    If I take out the Credit Card part of the payment the Incoming Payment can be added therefor the problem must be with the Valid Until field.  I have tried various different dates in there and still receive the same error.
    Under my Credit Card Payment Method I have created on called Claims and set it to Voucher Date Of Receipt with the following fields. From 1 To 31 On Day 1 Months + 12
    Could somebody please tell me what I am doing wrong.
    Any help will be greatly appreciated.
    Regards,
    Quinn

    Hi Jitin,
    Thanks for the reply. 
    The posting date is current date and due date is current date as is document date. 
    All posting periods are unlocked. 
    If I take out the Credit Card part the Incoming Payment gets added without any errors. Therefor I think my posting periods are fine.
    Regards,
    Quinn Verburgt

  • Please help with graphic card

    hey guy i have a problem picking a graphics card that is compatible with my computer i have a pavilion a6030n specs are
    Chipset
    GeForce 6150SE nForce 430
    Motherboard
    Manufacturer: ECS
    Motherboard Name: MCP61PM-HM
    HP/Compaq motherboard name: Nettle-GL8E
    my psu is only a 300 watt i only want a card to make my desktop like a home theater hd/bluray movies no gaming i want it to support 1080p full hd and have a hdmi output. is there any card like this that i can just install with out upgrading my psu please help thanks

    Please help.  I am confused.  I have the same specs as the original poster and am also looking to upgrade my system, but i'm confused.  The video card you recommended appears to be 512MB, however, HP's specs for the motherboard state:
    Integrated graphics using nVidia GeForce 6150SE
    Up to 256MB (with 512MB or more system memory)
    Also supports PCI Express x16 graphics cards*
    So, if it says it supports up to 256MB, should i limit my search for a new video card to only ones that have 256MB, or will a 512MB one, like the one you recommened, also work?
    Thanks.

  • Please Help with Graphics Card "Bait & Switch"

    I ordered a laptop for using as a field monitor and DVR with OnLocation (DV Rack) with the Quadro FX 2500M graphics card. At the last moment the builder says the Quadro is not available (or he can't afford it) and can only offer the NVidia 7950GTX or dual 7950 GTX SLI. Can anyone please help me decide whether or not to accept either one of these alternatives?
    Need to make quick decision to accept or cancel so any help much appreciated.

    Workstation cards are not really any help to the NLE user. Neither is SLI. I'd say you'll be fine with a single 7950, if you trust the guy enough to buy from him.

  • Please help with the GUI quiz question!

    Hi Folks,
    Please help me with the code for the following GUI.
    The display window of the application should have two panels at the top level (you could have multiple panels contained within a top-level panel). The first top level panel should have a grid or a border layout and should include apart from various label objects: 1) a textfield to store the info entered, 2) a combobox 3) a combobox or a list box , 4) a radio-button group , 5) a combo box 6) checkboxes for additional accessories, and 7) checkboxes .
    The second top-level panel that is placed at the bottom of the window should have a submit button, a clear button and a textarea for output.
    Thanks a lot.

    Please be a little more explicit about what you're doing, what you expect to happen, and what you actually observe.
    Please post a short, concise, executable example of what you're trying to do. This does not have to be the actual code you are using. Write a small example that demonstrates your intent, and only that. Wrap the code in a class and give it a main method that runs it - if we can just copy and paste the code into a text file, compile it and run it without any changes, then we can be sure that we haven't made incorrect assumptions about how you are using it.
    Post your code between [code] and [/code] tags. Cut and paste the code, rather than re-typing it (re-typing often introduces subtle errors that make your problem difficult to troubleshoot). Please preview your post when posting code.
    Please assume that we only have the core API. We have no idea what SomeCustomClass is, and neither does our collective compiler.
    If you have an error message, post the exact, complete error along with a full stack trace, if possible. Make sure you're not swallowing any Exceptions.
    Help us help you solve your problem.

  • Please help retire credit cards payments

    I'm sorry 1/2/2012 consumption of a five-stroke lead because my daughter secretly playing with my phone, please help withdrawal brush Thank you.

    Your post makes no sense.

  • Please help with another card problem

    this one is a strange one(if you saw the other one you might understand this better) in any case, i am getting a error and i do not see the reason
    here is the code
      public Card getCard(int i)
        switch(i)
          case 1: return (Card) card1;
          case 2: return (Card) card2;
          case 3: return (Card) card3;
          case 4: return (Card) card4;
          case 5: return (Card) card5;
      }the compiler says that there is no return statement. i don not see the problem as there are five of them and all seem to be accessable.
    please tell me if i am not seeing something or have it all wrong.
    btw card1,card2,etc. are Card variables so that is not the problem. this method is supposed to return one of five cards according to the int that is passed to it.
    please help me!

    public Card getCard(int i)
    switch(i)
    case 1: return (Card) card1;
    case 2: return (Card) card2;
    case 3: return (Card) card3;
    case 4: return (Card) card4;
    case 5: return (Card) card5;
    }No, no, no. It's really very simple. Imagine this:
    Card c = getCard(42);
    c.someMethod();What is the value of 'c' after calling getCard()? And what happens when c.someMethod() is called?
    You see, the getCard() method does not have a return statement in all cases. A method that returns a value either must be absolutely guaranteed to execute a return statement in all cases, unless an exception in thrown.
    So the simplest thing you can do (or an array of cards might be in order here) is just add a default: case that throws an exception.
       public Card getCard(int i)
         switch(i)
           case 1: return (Card) card1;
           case 2: return (Card) card2;
           case 3: return (Card) card3;
           case 4: return (Card) card4;
           case 5: return (Card) card5;
           default: throw new IllegalArgumentException("Invalid card number " + i);
    Or, if you expect that in normal operation you'll be passing in values other than 1-5, instead of throwing an exception you could return null. But it sounds to me like in your case, it is a bug if a value other that 1-5 is ever passed in.

  • Help with sim card holder

    Hi
    Just received a new iphone 3g.Anyway phone arrived before I got home & wife thought she would insert her simcard in it.
    She has somehow managed to put the simcard slot back in the wrong way & now it is stuck & can`t be removed.
    I don`t know how she managed it considering they say it won`t go back in the wrong way.
    Is there anything I can do without sending it back to the carrier.
    Thanks

    Unless you have the right tools and know how, the best bet is to let your carrier or Apple do it if it doesn't eject easily with the SIM eject tool. The SIM tray is easily jammed if inserted backwards and may require disassembly of the phone, which in itself will void the warranty if you do it.

  • Just got an ipad air and while creating my apple ID with credit card, I got to itunes gift card/ itunes gift section and was asked to supply a CODE to proceed with the form but I don't have the code. please how how can i get the code?

    Just got an ipad air and why creating my apple ID with credit card, a CODE was requested in the itunes gift card/ itunes gift in order to preceed with the form but I don't have the code. Please how can I find the code so as to enable me complete the form successfully. Thanks alot

    The iTunes gift card field is optional, you don't have to fill it in - leave it blank if you don't have a gift card.
    iTunes gift cards are country-specific (they can only be used in their country of issue), and they are not available in all countries - so you might not be able to dill it anyway.

  • Please help I forgot confidential answers questions to my account The problem I shipped itunes card and when I buy from my request answers"

    Please help I forgot confidential answers questions to my account The problem I shipped itunes card and when I buy from my request answers"

    Call AppleCare for your country and request help resetting the questions.

  • HT2534 I just create a new ID, but after verified my email add, I still can't use my new ID neither with credit card nor none. I just stuck at review my account step, please advise.

    I just create a new ID, but after verified my email add, I still can't use my new ID neither with credit card nor none. I just stuck at review my account step, please advise.

    What do you mean 'give me an example please' ? And 'dont have use a credit card' ?
    Unless you follow the instructions on this page when creating a new account : http://support.apple.com/kb/HT2534
    then you will need to enter credit card details before the account can be used in the store.
    If you don't have a credit card then you will need to create a new account, but this time follow the instructions on that HT2534 page when creating it. If you want to use the same email address then you will need to replace it on that account first e.g. via the Store > View Account menu option on your computer's iTunes, http://appleid.apple.com, or by tapping on it in Settings > iTunes & App Store on your phone.

  • My "fn" button is stuck on only revealing mission control in Lion. With this problem none of my "f" keys will work nor can I hold "fn" and delete to delete text in opposite direction. Can someone please help with this?

    My "fn" button is stuck on only revealing mission control in Lion. With this problem none of my "f" keys will work nor can I hold "fn" and delete to delete text in opposite direction. Can someone please help with this?

    Following the fix here worked for me:
    https://discussions.apple.com/message/15680566#15680566
    except my plist file was in ~/Library instead of /Library.
    -Scott

  • Credit card hold charge with iTunes credit?

    This will probably sort itself out in a few days, but it is still strange.  Does anyone know why Apple runs a credit card hold charge to your card when you have an iTunes credit that would have covered the purchase?  I purchased a book from iBook and had enough iTunes store credit for the purchase.  After the transaction I checked my available credit and it had not changed, however my Amex had a hold charge for $12.99.
    BTW, the Support Lane is "down for maintenance" at this time:-(
    Thanks

    You should contact iTunes support by going to this page - https://expresslane.apple.com/GetproductgroupList.action
    Select iTunes > iTunes store and let them know what happened.
    Best of luck.

  • If I pre-order the iPod touch 5th generation, do I have to pay it with credit card or can i pay it when i go get it on the store? if I pre order it, can i go pick it up form 1-3 of october, or it is not available?

    if I pre-order the iPod touch 5th generation, do I have to pay it with credit card or can i pay it when i go get it on the store? if I pre order it, can i go pick it up form 1-3 of october, or it is not available? and they send it to the store i want to?

    Hey Sierra, You can do just what you have stated. My question, what is your "other"? If it is over 1.5 GB you most likely have corrupt files. Doing a Restore to New, Factory restore should correct it. Just make sure you make a full backup of all information on your iPod to your computer before you restore, so you don't lose your stuff, contacts, videos, pictures, non-iTunes music, etc, use the cable and connect with your computer. Then, via cable, connect to your computer, run the Restore to new, don't use your backup. Treat this iPod as if it was your first one ever. When restore is done, set up and add what info you wish to install on this iPod. The music apps etc you purchased should be on your computer, if not you should be able to retrieve purchased apps and music from iTunes. Any music, videos, apps not purchased from iTunes will be lost to you if you do not save them to your computer or the cloud first. When your done, make a current Backup and you should good to go. Hope this helps. Good luck. Cheers.

  • HT3702 Hundred dollar credit card hold?

    Has anyone had a credit card hold that was a hundred dollars more than their purchase?  Emailed recieipt for 99 cent app purchase plus tax is $1.06....  The hold on my online account is $107.11.  help!

    The Apple Support Communities are an international user to user technical support forum. As a man from Mexico, Spanish is my native tongue. I do not speak English very well, however, I do write in English with the aid of the Mac OS X spelling and grammar checks. I also live in a culture perhaps very very different from your own. When offering advice in the ASC, my comments are not meant to be anything more than helpful and certainly not to be taken as insults.
    They should disappear when Apple does nothing with them further. They were just to verify that there is an active, usable account.

Maybe you are looking for