HT1918 On payment type,none is not visible to be selected.

Please fix this.

We are fellow users, you are not talking to iTunes Support or Apple here.
Are you trying to create a new account or remove your card from your existing account ?
If a new account, then unless you followed the instructions on this page when you created it then you will need to give payment details before you will be able to use it : http://support.apple.com/kb/HT2534

Similar Messages

  • HT1918 I can't delete my credit card details - payment type "none" not available ?

    Followed instructions to change credit card details to"none" but prompt for "None" is not visible / available....

    I just tested.  It's there:

  • HT2534 Its is fake . i have bought iphone today but i haven't cred card so how i create account ? Your example type "none" window not come . New iphone but with out ID useless Phone :(

    Its is fake . i have bought iphone today but i haven't cred card so how i create account ? Your example type "none" window not come . New iphone but with out ID useless Phone

    Most of the people on these forums, including myself, are fellow users - you're not talking to iTunes Support here.
    Did you follow the instructions on that page exactly when creating the account (the instructions won't work with existing accounts) ? e.g. if doing it on your phone and you are currently logged into an account then log out of it, find a free app in the app store app, tap on its free price button, tap 'install app', and then tap on 'create new apple id' on the popup that you get. I tried those instructions on my phone a few days ago in response to another thread and I got the 'none' option on the payments screen.

  • ?I'm trying to download a free app and I keep getting a message that says; "Payment Type paypal is not supported on this device blah lah go to iTunes story on your computer. You must verify your payment info before you can make purchases.  I did all that

    ?I'm trying to download a free app and I keep getting a message that says; "Payment Type paypal is not supported on this device blah blah go to the iTunes Store  on your computer. You must verify your payment info before you can make purchases.  I did all that, updated payment info and checked paypal it is verified, and it still won't work. Im stumped

    If you still have problem, contact iTune Support
    https://ssl.apple.com/emea/support/itunes/contact.html

  • Paid Down Payment Request from 2007 not visible in 8.8

    Hello experts:
    I recently upgraded a customer from 2007 to 8.8, and an existing fully paid down payment request is now not visible anymore in the "incoming payment" window due to some of the changes in 8.8. But I also cannot reconcile the transaction because paid down payment requests cannot be reconciled.
    I tried to cancel the incoming payment in order to apply it differently, but that also fails with a strange error message ("Cannot cancel payment: One of the credit notes has been deleted. [3524-6]").
    I could create a JE to transfer the balance from the liabilities account to the asset account within the BP, then reconcile the two transactions in the asset account, and effectively having zero balance in the liabilities account, but I'd like to reconcile the two transactions in the liabilities account as well, so that they're really closed.
    Any ideas?
    Thanks in advance.
    Joerg.

    Thanks for your reply Jitin.
    My issue is related to A/R, so the mentioned query doesn't turn up any results. However, a few minutes ago, the same issue appeared in A/P, so I tried the query again, with no luck.
    I will proceed to log a support message and post back with the solution.
    Thanks,
    Joerg.

  • Type OracleCallableStatement is not visible

    Hi!
    I've installed weblogic server 10.3.3.0, and deployed my webapp in it.
    When I run it, I get the error
    Compilation of JSP File '/my_file.jsp' failed:
    my_file.jsp:23:7: The type OracleCallableStatement is not visible
    my_file.jsp:30:37: The type OracleTypes is not visible
    My webapp worked fine in OAS 10g 10.1.2.0.2 Java Edition...
    Any clue? anybody?
    Thanks!

    Solved.
    Instead of importing "oracle.jdbc.driver.*", I import"oracle.jdbc.*" and works fine.
    Thanks anyway.

  • Type AbstractStringBuilder is not visible

    Dear All
    I'm making a web dynpro application and getting the error "type AbstractStringBuilder is not visible".
    Can anybody expalin me why it is coming?
    Latest JDK version is installed on my system.
    From where does the NWDS checks the version of JAVA?
    What should i do to remove this error?
    Request your support.
    Regards
    Vineet Vikram

    Hi Armin
    Problem is solved after i changed my work space for NWDS.
    There was some problem with the .meta file.
    Thanks for your response.
    I have awarded points to you.
    Thanks again
    Vineet

  • Getting an error  "type AbstractStringBuilder is not visible"

    Hi frndz..
    Am developing an Web dynpro application in this am using "StringBuffer" and am writing the code like this
                          StringBuffer strBf = new StringBuffer();
                          strBf .append("<?xml version='1.0' encoding='UTF-8' standalone='no'?>\n");
                          strBf .append("<").append(entriesName).append(">\n");
    and in the secound line of code itz show an error like
    "type AbstractStringBuilder is not visible "
    how to reslove this.
    Thanks in Advance
    Regards
    Rajesh

    Hi
    resolve the higher version of Java and reinstall the  java 1.4.2_09 .
    see this thread
    Urgent "Entity Service Build Failed"
    the type AbstractStringBuilder is not visible ----- Please Help
    Thanks

  • Step type section is not visible in workflow builder.

    Hello Friends,
                        Step type section is not visible in workflow builder even though I am in change mode. How to make it visible.
    Cheers,
    Senthil

    Hi,
         I in workflow builder ucan see three dropdown box in the left side of your screen. In that the third listbox you click to get the Step Types..
    thank You.

  • The method clone() from the type Object is not visible

    Hi,
    This is my 1st post here for a few years, i have just returned to java.
    I am working through a java gaming book, and the "The method clone() from the type Object is not visible" appears, preventing the program from running. I understand "clone" as making a new copy of an object, allowing multiple different copies to be made.
    The error occurs here
    public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
        }The whole code for this class is here
    package tilegame.sprites;
    import java.lang.reflect.Constructor;
    import graphics.*;
        A Creature is a Sprite that is affected by gravity and can
        die. It has four Animations: moving left, moving right,
        dying on the left, and dying on the right.
    public abstract class Creature extends Sprite {
            Amount of time to go from STATE_DYING to STATE_DEAD.
        private static final int DIE_TIME = 1000;
        public static final int STATE_NORMAL = 0;
        public static final int STATE_DYING = 1;
        public static final int STATE_DEAD = 2;
        private Animation left;
        private Animation right;
        private Animation deadLeft;
        private Animation deadRight;
        private int state;
        private long stateTime;
            Creates a new Creature with the specified Animations.
        public Creature(Animation left, Animation right,
            Animation deadLeft, Animation deadRight)
            super(right);
            this.left = left;
            this.right = right;
            this.deadLeft = deadLeft;
            this.deadRight = deadRight;
            state = STATE_NORMAL;
        public Object clone() {
            // use reflection to create the correct subclass
            Constructor constructor = getClass().getConstructors()[0];
            try {
                return constructor.newInstance(new Object[] {
                    (Animation)left.clone(),
                    (Animation)right.clone(),
                    (Animation)deadLeft.clone(),
                    (Animation)deadRight.clone()
            catch (Exception ex) {
                // should never happen
                ex.printStackTrace();
                return null;
            Gets the maximum speed of this Creature.
        public float getMaxSpeed() {
            return 0;
            Wakes up the creature when the Creature first appears
            on screen. Normally, the creature starts moving left.
        public void wakeUp() {
            if (getState() == STATE_NORMAL && getVelocityX() == 0) {
                setVelocityX(-getMaxSpeed());
            Gets the state of this Creature. The state is either
            STATE_NORMAL, STATE_DYING, or STATE_DEAD.
        public int getState() {
            return state;
            Sets the state of this Creature to STATE_NORMAL,
            STATE_DYING, or STATE_DEAD.
        public void setState(int state) {
            if (this.state != state) {
                this.state = state;
                stateTime = 0;
                if (state == STATE_DYING) {
                    setVelocityX(0);
                    setVelocityY(0);
            Checks if this creature is alive.
        public boolean isAlive() {
            return (state == STATE_NORMAL);
            Checks if this creature is flying.
        public boolean isFlying() {
            return false;
            Called before update() if the creature collided with a
            tile horizontally.
        public void collideHorizontal() {
            setVelocityX(-getVelocityX());
            Called before update() if the creature collided with a
            tile vertically.
        public void collideVertical() {
            setVelocityY(0);
            Updates the animaton for this creature.
        public void update(long elapsedTime) {
            // select the correct Animation
            Animation newAnim = anim;
            if (getVelocityX() < 0) {
                newAnim = left;
            else if (getVelocityX() > 0) {
                newAnim = right;
            if (state == STATE_DYING && newAnim == left) {
                newAnim = deadLeft;
            else if (state == STATE_DYING && newAnim == right) {
                newAnim = deadRight;
            // update the Animation
            if (anim != newAnim) {
                anim = newAnim;
                anim.start();
            else {
                anim.update(elapsedTime);
            // update to "dead" state
            stateTime += elapsedTime;
            if (state == STATE_DYING && stateTime >= DIE_TIME) {
                setState(STATE_DEAD);
    }Any advice? Is it "protected"? Is the code out-of-date?
    thankyou,
    Lance 28

    Lance28 wrote:
    Any advice? Is it "protected"? Is the code out-of-date?Welcome to the wonderful world of Cloneable. In answer to your first question: Object's clone() method is protected.
    A quote from Josh Bloch's "Effective Java" (Item 10):
    "A class that implements Cloneable is expected to provide a properly functioning public clone() method. It is not, in general, possible to do so unless +all+ of the class's superclasses provide a well-behaved clone implementation, whether public or protected."
    One way to check that would be to see if super.clone() works. Their method uses reflection to try and construct a valid Creature, but it relies on Animation's clone() method, which itself may be faulty. Bloch suggests the following pattern:public Object clone() throws CloneNotSupportedException {
       ThisClass copy = (ThisClass) super.clone();
       // do any additional initialization required...
       return copy
    if that doesn't work, you +may+ be out of luck.
    Another thing to note is that Object's clone() method returns a +shallow+ copy of the original object. If it contains any data structures (eg, Collections or arrays) that point to other objects, you may find that your cloned object is now sharing those with the original.
    Good luck.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • HT2534 Using iTunes on WindowsXP; Payment method "None" is not an option; how do I set up an account without a credit card associated?  My daughter is not getting an iTunes account with a credit card associated!

    Using iTunes on WindowsXP; Payment method "None" is not an option; how do I set up an account without a credit card associated?  My daughter is not getting an iTunes account with a credit card associated!

    Hello Lozza63
    Check out the article below to see what could be blocking you from selecting None as a form of payment.
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    Regards,
    -Norm G

  • HT2534 In Payment type None option is not available...

    In my payment type screen, "NONE" option is not available.... I have only three types, "1.VISA, 2.Master Card, 3. AMEX".... I dnt want to register with my credit card detail.... I want use only free applications..... Can any one help me in this.....?

    Follow the article:
    You must first sign out from existing account.
    Settings > Store > Apple ID :youroldID > Sign Out
    Then go to App Store to buy a Free App.
    From popup window. select Create New AppleID
    Indicate Store location and provide necessary information
    None option will then be available

  • I'm having trouble with my payment method payment type it's not accepting any of my cards

    Payment method/payment type will not accept any of my cards for payment it's saying my security codes are wrong there are available funds on both card

    You have exactly the same name and address on your iTunes account that the cards are registered to : http://support.apple.com/kb/TS1646 ?
    And when you say that there are available funds on the cards, do you mean that they are debit cards ? If they are then I don't think that they are still accepted as a valid payment method in all countries - from this page :
    You may be able to use other payment types in your country, like debit and Maestro cards
    which implies that they are not accepted in all countries, and there have been a number of posts about them being declined.

  • HT1918 purchase payment type

    i have problem with my payment verifying , and i don`t wanna add any payment card on my apple id az usual , but i can`t use my apple id right now and already asks me for purchase payment type ...

    Create an iTunes App Store account without a credit card

  • The fields of type Int 1  not appearing in Infopackage selection

    Hello Gurus,
    I have created a generic datasource on two tables .
    The fields that should be set as Selection fields for the DataSource are the following:
    -     field 1------type char
    -     field  2----
    type char
    -               field 3----
    type Int1
    -     field 4----
    type Int1
    Out of the above four table fields only the two fields  with char datatype are appearing in infopackage selection.
    The other two ie(field 3 and field 4) of datatype Int1  does not appear in infopackage selection.
    I have ticked the check boxes in the selection field of datasource.
    I also get all the four fields available for selection in RSA3(extractor checker tcode).
    Kindly help me in resolving this issue.

    Hi Amol,
    Can you please replicate DS once again and then try creating the infopacage
    Mann

Maybe you are looking for

  • Spotlight index lost after each login

    Hello people, I've got a very confusing thing going on with Spotlight on my mac. After each login, Spotlight looses its index and I can't my files. I have tried solving this problem with the app IceClean, using "sudo mdutil -i on /", dragging and rem

  • Storing on external hard drive

    When you store on an external hard drive, do you store the iphoto library or copy of the individual photos? I noticed that when I do the library, and try to open a photo, there is a exclamation point instead of the image. When I open the actual photo

  • Recurrent Crashes

    Good Morning, for a couple of days now my little Mac Mini is crashing/freezing after some hours of uptime.. After a reboot I get this nice "Your computer was shutdown due to a problem"-report and it says Apple is informed, but honestly spoken when lo

  • Order detail in BSEG

    I could see the order number in field BSEG-AUFNR which equals the work order number AUFK-AUFNR. Is there one which equals AUFK-ERDAT in Fi tables. I checked BSeg and could not find one which correcsponds to AUFK-ERDAT. Is there any other FI table tha

  • Iphone alarm doesn't work when the phone is charging but works fine when it is not plugged in, any reason for this?

    Recently my alarm hasn't been going off on my phone when it is plugged into the charger. This is a problem as i have work most mornings and have been late. When it is not plugged in the alarm works. I know it would mae sense to charge it before i go