An annoying problem about creating an Apple ID !!!

Hi, i want to create an Apple ID for the US iTunes for my cousin who lives in Macedonia (i'm currently there and typing this from Macedonia). The account i want to create is an account with no credit card on file (i just click to dl a free app and then make apple id, i know because i have the same type of account myself), and i enter everything and blabla, but when i click the ,,Create Apple ID '' button, it says ,,Please contact iTunes support to complete the transaction''. Can i know the root of this problem and can something be done about it ?

You can't use an iTunes store from outside of its country. To be able to create a US based iTunes account you need a valid billing address in the US and be in the US - if you are in Macedonia then you can only create a Macedonian account and you will only be able to buy and download content from the Macedonian store.

Similar Messages

  • I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    I am having problems with creating my apple id. On the phone it is advising me that the ID is not created and then when i do it online it says that it has been created. Can you advise me on what to do please?

    Apple ID FAQ   http://support.apple.com/kb/HE37

  • Problems about creating an application client using Netbeans 5.0

    Dear all,
    I have created an "enterprise application" project in Netbeans 5.0 and I want to create an AppClient to access the EJBs in the project. Since Netbeans 5.0 did not contain automatic support for AppClients. I need to do some configurations to make it act like an AppClient. (I am forced to use version 5.0 but not 5.5)
    After searching in google, I found the following article about creating an AppClient in Netbeans:
    http://www.netbeans.org/kb/41/app-clients.html
    I read through the steps in this web page and carefully apply it to my own enterprise application. Everything was fine but when I cleaned and built it, Netbeans told me there's something wrong in the build.xml of my AppClient project:
    init:
    deps-jar:
    init:
    deps-jar:
    compile:
    library-inclusion-in-archive:
    dist:
    compile:
    C:\MyAppClient\build.xml:108: C:\MyAppClient\${file.reference.build-jar} not found.
    BUILD FAILED (total time: 1 second)
    This is the build.xml file of MyAppClient project:
    <?xml version="1.0" encoding="UTF-8"?>
    <project name="MyAppClient" default="default" basedir=".">
        <description>Builds, tests, and runs the project MyAppClient.</description>
        <import file="nbproject/build-impl.xml"/>
       <!--
          Makes sure the IDE can find the Application Server install directory
          and sets the appclient executable name depending on platform
        -->
        <target name="-pre-init">
          <fail unless="com.sun.aas.installRoot">
            J2EE home property - neither j2ee.home nor com.sun.aas.installRoot(NetBeans) is set.
          </fail>
          <property name="j2ee.home" value="${com.sun.aas.installRoot}" />
          <condition property="appclient.name" value="appclient">
            <and>
              <os family="unix"/>
              <os family="Linux"/>
            </and>
          </condition>
          <condition property="appclient.name" value="appclient.bat">
             <and>
               <os family="Windows"/>
             </and>
          </condition>
          <condition property="package-appclient.name" value="package-appclient">
            <and>
              <os family="unix"/>
              <os family="Linux"/>
            </and>
          </condition>
          <condition property="package-appclient.name" value="package-appclient.bat">
            <and>
              <os family="Windows"/>
            </and>
          </condition>
        </target>
        <!--
          Target that copies J2EE app client deployment descriptors to jar
        -->
        <target name="-pre-jar">
          <!-- copy EJB interfaces -->
           <copy  todir="${build.classes.dir}">
             <fileset dir="${file.reference.build-jar}">
               <include name="**/*.class"/>
             </fileset>
           </copy>
           <!-- copy configuration files -->
           <mkdir dir="${build.classes.dir}/META-INF" />
           <copy  todir="${build.classes.dir}/META-INF">
             <fileset dir="${src.dir}/conf">
               <include name="*.xml"/>
             </fileset>
           </copy>
        </target>
        <target name="run" depends="init,compile">
           <exec executable="${j2ee.home}/bin/${appclient.name}">
             <arg line="-client ${dist.jar}"/>
           </exec>
        </target>
        <target name="package-appclient" depends="init">
            <exec executable="${j2ee.home}/bin/${package-appclient.name}" dir="${dist.dir}"/>
        </target>
        </project>It seems like the $file.reference.build-jar couldn't be resolved to a correct path portion string. After referring back to the web page, I still could not understand what is causing this error.
    So I started googling again using the keyword: file.reference.build-jar. I still could not come up with any relevant results.
    Could somebody tell me how this error can be fixed or at least give me some clues what is the possible cause of this error?
    Thanks in advance.

    I have forwarded this to another team member. Stay tuned for the response.

  • HT5622 i have problem of creating an apple ID.

    the problem is that i don't have any master card or visa and there is no option saying none, and i've created once before and there was option saying none. what is the solution.

    I've always been a little confused about the none fom of payment. Sometimes you see that choice seems like other times you don't. This Apple support site describes all acceptable forms of payment.
    http://support.apple.com/kb/HT5552
    One of those is and iTunes gift card. Purchase a gift card for a small amount and use that as your method of payment on your cousins Apple ID.

  • Problem about creating bp in tcode: cic0

    Hi all,
    I have developed function module that check bp role before saving new bp
    and add in tcode BUS7>DCHCK
    I create new bp in tcode bp, it works. I can create new bp (person organization) by selecting role before saving.
    And if I create new bp but do not select role when click save button it will show error message that I write in function module.
    If I create new bp in tcode cic0, it does not work. When I click button create new bp in cic0, it link to Create Organization screen. Then I want to create new bp(person) and click button create new person, suddenly it will show error message that I write in fm although I do not click save button.
    The function module that i developed is: Z_CRM_BUPA_ROLECHECK
    FUNCTION Z_CRM_BUPA_ROLECHECK.
    ""Local interface:
      DATA:
            lt_role     LIKE bus0rltyp OCCURS 0,
            lw_role     TYPE bus0rltyp,
            lv_partner  TYPE but000-partner,
            flag_x      TYPE c,
            lc_data     TYPE bussdi3-data.
      DATA: BEGIN OF t_role OCCURS 0,
              rltyp TYPE bu_rltyp,
            END OF t_role.
      CALL FUNCTION 'BUP_BUPA_BUT000_GET'
        IMPORTING
          e_data = lc_data.
    Get BP No.
      MOVE lc_data+3(10) TO lv_partner.
      SELECT rltyp
        FROM but100
        INTO TABLE t_role
        WHERE partner = lv_partner.
      READ TABLE t_role INDEX 1.
      IF sy-subrc <> 0.
    Determine Role
        CALL FUNCTION 'BUS_PARAMETERS_ISSTA_GET'
          TABLES
            t_rltyp = lt_role.
        READ TABLE lt_role INTO lw_role INDEX 1.
        IF lw_role-rltyp = '000000'.
          MESSAGE e000(zbp).
          EXIT.
        ENDIF.
      ENDIF.
    ENDFUNCTION.
    I would like to know how to solve this issue. Are there any bugs in this FM or I have to config anythings else?
    Thank you

    Hi,
    The problem here is that DCHCK function module is called not only on save for also when you click on check icon in BP transaction. In CIC0 transaction, this check must be called implicitly. What you need to do is to find out some way that you check whether the current action is of save or check and then only raise the error. I tried finding some way to determine the action but wasn't successful.
    Thanks and warm regards,
    Smita.

  • A problem about create sales order with reference to contract.

    Hello,everyone,
    when I create sales order va01,there is user exit in MV45AFZB to check the vbkd-bstkd,unique and fixed  length.
    but there is no such in contract  creation va41.
    when I create a contract and copy the data to sales order ,the check code is prevent me from copying
    message error:the vbkd-bstkd check is wrong.
    how to solve the problem, if I have to use the check in sales order.

    The Simple thing may be put a check at contract stage it self, then whatever data is in contract will copy in sales order. So you wont face this problem.
    Thanks,
    Raja

  • A minor but annoying problem about the downloads tab

    Hi All
    Today I download some podcasts in the library, after downloaded 5 podcasts, I paused the rest closed iTune, and went back home.
    I opened iTune again in my room, and found that the downloads tab did not appear nor resume downloading as before.
    I started a new download, downloads tab came back but the previous paused downloads disappeared.
    And every time the downloads stoped because of timeout (my poor network), the downloads tab also disappeared.
    As I never had this problem before, and today is the first time I download after I update to 7.4.3.1, is this a bug?
    Cheers
    Jason

    What does this have to do with the Matrox device?
    It sounds like ...
    1. a time code break and FCP is creating a second clip to carry on
    or
    2. your capture scratch drive is set as MS-DOS and the captured segments are larger than the default file limit.
    or
    3. something else.
    x

  • Facing Many Problems About Creating Directory and an External Table

    Question:
    The weird thing is if you look at question 10-b in page 3-41, it says:
    (page 3-41 "Oracle Database 10g SQL Fund. II Vol.1")
    Merge the data in the EMP_DATA table created in the last lab into the data in the emp_hist table. Assume
    that the data in external EMP_DATA table matches the EMP_HIST table, update the email column
    of the EMP_HIST table to match the EMP_DATA table row. If a row in the EMP_DATA table does not
    match, insert into the EMP_HIST tables. Rows are considered matching when the employee's first and
    last name are identical.
    To me, this question is constructed wrongly. First of all in the last lab we have not been asked to create EMP_DATA. Secondly, EMP_DATA is empty.
    Thirdly, this question asks us to merge into EMP_HIST table while EMP_DATA is empty.
    EMP_HIST table currently has copied data from employees table. EMP_HIST structure:
    FIRST_NAME VARCHAR2(20)
    LAST_NAME NOT NULL VARCHAR2(25)
    EMAIL NOT NULL VARCHAR2(45)
    Anway, i did the merge as following:
    merge into emp_hist e
    using emp_data d
    on (e.first_name = d.first_name)
    when matched then
    update set
    e.last_name = d.last_name,
    e.email = d.email
    when not matched then
    insert values (d.first_name, d.last_name, d.email);
    I get this error:
    Error report:
    SQL Error: ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file emp.dat in EMP_DIR not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    29913. 00000 - "error in executing %s callout"
    *Cause:    The execution of the specified callout caused an error.
    *Action:   Examine the error messages take appropriate action.
    On the other hand, i said let me try this:
    merge into emp_data d
    using emp_hist e
    on (d.first_name = e.first_name)
    when matched then
    update set
    d.last_name = e.last_name,
    d.email = e.email
    when not matched then
    insert values (e.first_name, e.last_name, e.email);
    I get this error because external table is final once its created as far as i know:
    Error report:
    SQL Error: ORA-30657: operation not supported on external organized table
    30657.0000 - "operation not supported on external organized table"
    *Cause:    User attempted on operation on an external table which is
    not supported.
    *Action:   Don't do that!
    I do not know what to do. I did my best, please help.
    Edited by: user11164565 on Jul 27, 2009 2:43 AM

    user11164565 wrote:
    NOTE: I did my best, i did all what i can do, but the problem persists. Please help
    I will mention all the steps i did clearly....
    I gave scott the following grants:
    grant create any directory to scott;
    grant read on directory emp_dir to scott;
    1. Created a directory and its been created successfully:
    create or replace directory emp_dir
    as 'F:\emp_dir';
    Then i did the following just to make sure my directory is recognized:
    SELECT *
    FROM dba_directories;
    I found the drive amongst the results...
    OWNER DIRECTORY_NAME
    DIRECTORY_PATH
    SYS EMP_DIR
    F:\emp_dir
    SYS SUBDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\/2002/Sep
    SYS XMLDIR
    D:\oracle\product\10.2.0\db_1\demo\schema\order_entry\
    2. I created an external table emp_data (the script is given by the text book): done successfully
    drop table emp_data;
    CREATE TABLE emp_data
    (first_name VARCHAR2(20)
    ,last_name VARCHAR2(20)
    , email VARCHAR2(30)
    ORGANIZATION EXTERNAL
    TYPE oracle_loader
    DEFAULT DIRECTORY emp_dir
    ACCESS PARAMETERS
    RECORDS DELIMITED BY NEWLINE CHARACTERSET US7ASCII
    NOBADFILE
    NOLOGFILE
    FIELDS
    ( first_name POSITION ( 1:20) CHAR
    , last_name POSITION (22:41) CHAR
    , email POSITION (43:72) CHAR )
    LOCATION ('emp.dat') ) ;
    3. I went to F:\ drive to see if emp_dir folder exist or not! I did not see it. I checked hidden files, nothing there. Anyway, i ignored it and did step 4.
    <snip>
    "Anyway, I ignored it . . . "
    and hence the rest of your problems. I did not see in the steps you recounted that you acually created a directory ("folder") named "\emp_dir" on your f: drive. Nothing you create within the database will actually create that directory on the OS. Createing a directory in Oracle, createing an external table in Oracle, will only create pointers to objects that Oracle will simply assume actually exists.

  • Problem about making an Apple ID

    My friend just got a new Ipod touch and he's now trying to make himself an apple ID to buy apps and music.
    Everytime he tries to make his account, the system says that his zip code is unavalaible. what can he do now?
    Think you got the solution? Then please awnser me in the comments. thank-you!

    You can't use an iTunes store from outside of its country. To be able to create a US based iTunes account you need a valid billing address in the US and be in the US - if you are in Macedonia then you can only create a Macedonian account and you will only be able to buy and download content from the Macedonian store.

  • Problem in creating an apple ID

    I'm creating a new Apple ID for a new device, i don't want to use my main ID. I went to settings, create new ID and all, but i can't get past the billing info page. I put the credit car info and all, but i get a little "error". No field is marked in red, just a small red message under the payment method subtitle "For assistance contact iTunes support at www.apple.com/support/itunes/ww"
    Help would really be appreciated!
    PS: I dont think this is the correct community, but this is the closest thing i could find.
    Thanks in advance

    You will need to do as the message says and contact iTunes Support, we are fellow users here on these forums, we won't know why you are getting the message to contact them : 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

  • Problem about creating asset transaction type

    I  created an asset transaction type with AO76 to deal with the  apportionment of asset expenses which was created in the year before yesteryear.But the user demands an account assigned to the transaction type .Then I checked the configuration.It seems t-code AO85 can only realize the relationship between asset classes and accounts.
    So what should I do to realize this? Thanks!

    or if you still want to achieve it. Go for substitution. make the Gl account the substitutable field and then define a rule saying that, if the transaction type is ' ', then the gl account is ' '
    Regards
    anantha

  • Problems about airplay and apple tv

    Hello,
    I currently have two terminals wifi ssid with two different "alexmario" and "numericable" and are on the same network.
    when I activate "airplay" and my "Apple TV" is ethernet, I the "airplay" broadcast on one of my wi-fi "alexmario" on my iphone ios5.0.1 and then when I conecté on "numericable" airplay function is not available ...
    how do I get the "aiplay" terminal on both networks?

    from this support article: Using AirPlay
    With AirPlay, you can wirelessly stream videos, music, and photos from your iPhone, iPad, or iPod touch to Apple TV (2nd generation) and stream music to AirPlay speakers or receivers, including AirPort Express. You can also wirelessly stream videos and music from your computer to Apple TV (2nd generation) and stream music to AirPlay speakers or receivers, including AirPort Express.
    you can not airplay from ATV2 to other devices.

  • Problems about create guest vm using office template in vm manager 3

    in vm manager 2.2, we may pass "ip address, os root's password, vnc console password"\
    But we can't pass them in vm manager 3.0.
    after creating guest vm ,how login to guest os via console or vncviewer without password?

    liyongz wrote:
    But we can't pass them in vm manager 3.0.This is coming in a future version when we release the updated template configuration engine.
    after creating guest vm ,how login to guest os via console or vncviewer without password?So is this.

  • Problem: Cannot create Apple-ID for kids under 13

    Hello!
    I have recurring problem to create an apple-id for my kids.
    At the end of the process i get the follwoing message:
    "Apple-ID kann nicht erstellt werden - Dieser Vorgang kann derzeit nicht abgeschlossen werden."
    in english: "Apple-ID can not be created - The task can not be completed at the moment."
    Any suggestions?

    You could try the solution posted by jsnola here: Re: Family sharing valid payment.

  • How to create an apple id without credit card

    guys, i really need help here.
    about creating the apple id without the credit card or other payment bill.
    maybe you guys can help me. because some people say i don't have other option but input my credit card number.
    and i won't do that.
    you guys can reach me through [email protected]
    thank you.

    THERE IS NO OTHER OPTION.
    FYI, the forums are meant for everybody to read, post and learn from the discussions.
    Posting your email address and requesting a personal, private reply is frowned upon (and posting your email address all over the Internet isn't a great idea either).

Maybe you are looking for

  • CC won't let me deactivate on my old computer

    I just bought a new computer. I have CC on two other computers already. I signed out of my old computer in order to be able to activate CC on my new computer. However, My new computer says I'm still signed in to two machines, and I am still able to u

  • Can PDF files be included with a movie on iDVD?

    I'm using iMovie to create a movie of a presentation recorded by video camcorder, and that effort looks to be promising so far. When the iMovie editing is finished, I want to burn the presentation on iDVD as a digital seminar. My hope is to provide c

  • Sales order - customer numbers

    hi all, in sales order creation, who is involved in certain calculations whether sold-to or ship-to party if both are specified. if atleast one is not specified who will be the other party whether implicitly it will consider the same party(which ever

  • Trying to convert from .mts to .flv

    I'm trying out Flash Video Encoder for creating .flv files to add to my web site. My Canon HD HG10 creates .mts video files, which aren't being uploaded when I try to "Add" them. This format is not in the drop-down list. Any suggestions? Scott

  • How do i add a watermark to a document

    How do I add a watermark to a documnet that is set up in 3 columns I have pages 09