I am unable to complete Synching with my IPhone 4S as it tells me reason is that Apps are unable to be determined on my phone however all of them Purchased from I Tunes. Can someone assist me with a Solution

I am unable to complete Synching with my IPhone 4S as it tells me reason is that Apps are unable to be determined on my phone however all of them Purchased from I Tunes. Can someone assist me with a Solution

You can't merge accounts. But you can check your purchase history:
iTunes Store & Mac App Store: Seeing your purchase history and order numbers
          http://support.apple.com/kb/HT2727
Also, what may seem stupid to you... may be a protection of privacy to others.

Similar Messages

  • HT4623 can someone assist me with a solution to the problem with my iphone 5. I upgraded to IOS 6.1.4 and since then i have had the problem of No Sim. I restored to the factory settings using i tunes as i have my back up on my pc but still the same proble

    can someone assist me with a solution to the problem with my iphone 5. I upgraded to IOS 6.1.4 and since then i have had the problem of No Sim. I restored to the factory settings using i tunes as i have my back up on my pc but still the same problem. I have swapped sim and my Sim is working on other iphone with ios 6.1.3

    Try a new SIM from your carrier.  If that doesn't work, make a Genius Bar appointment and get your phone evaluated.

  • About 80% of my songs that I purchased from I tunes can not play because a box pops up and says that it can not find the orignal song,whats up with that

    most Of my purchased songs inb I tunes can not play because i tunes can not locate the orignal song.What can I do THANK YOU

    most Of my purchased songs inb I tunes can not play because i tunes can not locate the orignal song.What can I do THANK YOU

  • HT1451 I used to be able to sync all songs that I downloaded from CDs to my iPad. Now I can only get the songs that were purchased from iTunes.  Can someone tell me why?

    I used to be able to sync songs that I imported from CDs into my library onto my iPad and iPad touch. Now I can only sync the purchased from iTunes songs. What has changed?  Do I have to subscribe to iCloud to do this now?

    Hi Cricketdaw,
    Welcome to Apple Support Communities.
    iTunes should sync your entire library, and not just songs purchased from the iTunes Store, as mentioned in this article:
    Managing content manually on iPhone, iPad, and iPod
    http://support.apple.com/kb/HT1535
    By default, iTunes automatically syncs your entire iTunes library whenever you connect your device to your computer. On each subsequent sync, iTunes will automatically add any new music or videos to the device and remove any items that are no longer in your iTunes Library.
    You may also find this articles helpful for syncing your iTunes Library:
    iOS: Syncing with iTunes
    http://support.apple.com/kb/HT1386
    Best,
    Jeremy

  • I purchased a movie from I-tunes. Why won't it copy to my I pod? I receive a message "Smoke Signals was not copied to Ipod because it cannot be played on this ipod". All other movies purchased from I-tunes have been copied and no problem playing.

    What can I do to view this movie I downloaded from I tunes on my Ipod classic? Thanks very mcuh for any information.

    Are you aware of how movies must be encoded for the iPad if the specs are different than Apple TV's?
    You can find the specifications for iPad playback compatibility on the iPad Tech Specs web page of the Apple site. If using HandBrake, it best to use one of the included presets from the latest set preset updates. If you change these settings, there is always the possibility you may create problems, For instance, one person has already reported that using audio data rates above the recommended 160 Kbps limit will indeed cause problems. The iPad will play movies made using any of the Apple device presets. Since I also have the TV unit, I normally use that preset so as to get double use out of the same iTunes managed file. Having a passive secondary AC3 5.1 audio track does not cause any problems. In addition, the iPad will also support a text chapter track and at least one alternative AAC language track. (I.e., have not tried to test anything greater.) Have not tested any custom podcast files containing layering effects which have not been "flattened" either as this is not normally a part of my work flow. In short, there are a number of user settings in HandBrake that may create playback problems for different devices and that is why I would normally caution casual users to stick with one of the Apple device presets since these are tied to the specific profiles accepted by each device. If you are using custom settings and the file will not play, please post a sample snippet in order for me to see if I can locate a specific problem.

  • Can someone assist me with  my array?

    I am creating an array that will store 3 objects, and display information one line at a time. I am not sure I am typing the right code to produce the information I need. My code does not compile. However it compiled before I added my array lines. the weird thing is im getting the compile error on my Product DVD line.
    Here is what I have so far:
    public class Inventory
         public static void main(String args[])
         Product media[] = new Product [3];
         for(int i = 0; i < Product; i++)
         Product DVD = new Product("Princess Bride", 1, 5, 19.95); //creates a new object
              System.out.print(DVD.getproductName() + "\t" + DVD.getproductNumber() + "\t" + DVD.getunitNumber() + "\t\t");
              System.out.printf("$ %.2f\t\t", DVD.getunitPrice());
              System.out.printf("$ %.2f\n", DVD.getcalculateValue());
         Product CD = new Product("Maroon5 Live", 2, 7, 25.00); //creates a new object
              System.out.print(CD.getproductName() + "\t" + CD.getproductNumber() + "\t" + CD.getunitNumber() + "\t\t");
              System.out.printf("$ %.2f\t\t", CD.getunitPrice());
              System.out.printf("$ %.2f\n", CD.getcalculateValue());
         Product VHS = new Product("Dance With Me", 3, 12, 14.95); //creates a new object
              System.out.print(VHS.getproductName() + "\t" + VHS.getproductNumber() + "\t" + VHS.getunitNumber() + "\t\t");
              System.out.printf("$ %.2f\t\t", VHS.getunitPrice());
              System.out.printf("$ %.2f\n", VHS.getcalculateValue());
         System.out.printf( "Total Inventory Value is: $ %,.2f\n", DVD.getcalculateInventory() + CD.getcalculateInventory() + VHS.getcalculateInventory());//display total inventory value
       } // end main method
    }//end class Inventory

    for(int i = 0; i < Product; i++){   // should be i<media.length
    but why are you using a loop?
    public class Inventory{     
         public static void main(String args[]){
         Product media[] = new Product [3];
         Product DVD = new Product("Princess Bride", 1, 5, 19.95); //creates a new object
              System.out.print(DVD.getproductName() + "\t" + DVD.getproductNumber() + "\t" + DVD.getunitNumber() + "\t\t");
              System.out.printf("$ %.2f\t\t", DVD.getunitPrice());
              System.out.printf("$ %.2f\n", DVD.getcalculateValue());
         Product CD = new Product("Maroon5 Live", 2, 7, 25.00); //creates a new object
              System.out.print(CD.getproductName() + "\t" + CD.getproductNumber() + "\t" + CD.getunitNumber() + "\t\t");
              System.out.printf("$ %.2f\t\t", CD.getunitPrice());
              System.out.printf("$ %.2f\n", CD.getcalculateValue());
         Product VHS = new Product("Dance With Me", 3, 12, 14.95); //creates a new object
              System.out.print(VHS.getproductName() + "\t" + VHS.getproductNumber() + "\t" + VHS.getunitNumber() + "\t\t");
              System.out.printf("$ %.2f\t\t", VHS.getunitPrice());
              System.out.printf("$ %.2f\n", VHS.getcalculateValue());
         System.out.printf( "Total Inventory Value is: $ %,.2f\n", DVD.getcalculateInventory() + CD.getcalculateInventory() + VHS.getcalculateInventory());//display total inventory value
            media[0] = DVD;
            media[1] = CD;
            media[2] = VHS;
       } // end main method
    }//end class Inventory

  • I want to purchase from itunes canada, can someone plz help me

    I want to purchase down with websters new album time to win vol 2 but its only available in the canada iTunes store. i dont have an address there or credit card from canada so that is out of the question. Are there any other options????

    No.
    You can buy ONLY from the itunes store of your country of residence ( proven by the valid billing address on your credit card) AND ONLY while physically locate inside the borders of that coutnry.
    Sorry.
    Look on Amazon or some other online music seller for the album.

  • All of a sudden all my music purchased from i-tunes "cannot be found"

    Hi
    After 2 very frustrating evenings and a $135 bill from an IT tech I still can't play my purchased music.
    I downloaded itunes 6.0.5.20 and suddenly all my purchased music is unavailable. It still resides on my ipod but when I click on it on my computer I get an error message stating:
    The song "..." could not be used because the original could not be founf. Would you like to locate it?"
    Simply put, I "can't locate it"!!!
    Any insight or suggestions on how to fix this and get back my "Johnny Cash" music and other "faves" would be much appreciated

    Did you or an other person throu to the recycling been the file by mistake?
    I know that is stupid, but usualy I don't think about stupid thinks and I think a lot how to resolve the problem and It was maybe that I moved the folder. I mean, cheak just in case.
    *Sorry 4 my eanglish, I'm a 13 ear old Spanish student.

  • Can someone help me with scanned items?

    can someon assist me with scanned documents?

    Select the folder whilst holding down the control key - there will be a pop-up menu with an item "Compress "Test Folder"" (the name of your folder). This will create a zip file which you can attach to an outgoing email, leaving the user on the other end, the recipient of your mail, a zipped, compressed file which he/she can unzip and have access to your scans.
    Clinton

  • Hi have changed my email but when trying to purchase from I tunes it is still linked to old email how can I change this please

    Hi I could not remember the answers to my security questions so called apple support they advised there was a problem with yahoo email and advised I set a new emai which I have and it was verified but when I now try to purchase from I tunes it still comes up with my old email how can I change this so it links to my new email please thanks in advance for any help

    The best option is to sign out of all accounts http://support.apple.com/kb/HT5796. you will have to remove all of the purchases or the old yahoo account will keep coming up.

  • Having problem with my iphone camera,doesnt work when i click the camera app,but it does work when i double click when my phone is off.

    having problem with my iphone camera,doesnt work when i click the camera app,but when i double click when my phone is locked it works.

    The Basic Troubleshooting Steps are:
    Restart..  Reset..  Restore...
    Reset your phone:
    Press the sleep/wake button & home button at the same time, keep pressing until you see the Apple logo, then release the buttons...
    Restart / Reset
    http://support.apple.com/kb/ht1430
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

  • I download a game called warriors 3. I try to buy stuff inside, but it keeps saying your purchase could not be complete. Can someone help me with that?

    I download a game called warriors 3. I try to buy stuff inside, but it keeps saying your purchase could not be complete. Can someone help me with that?

    You will need to contact iTunes support for purchase problems: https://getsupport.apple.com/Issues.action

  • The calender on my iPhone 4 with iOS 6 no longer syncs with iCal 4.0.4 on my mac OS 10.6.8. However it is syncing with my iCloud account. Can someone help me with this?

    The calender on my iPhone 4 with iOS 6 no longer syncs with iCal 4.0.4 on my mac OS 10.6.8. However it is syncing with my iCloud account. Can someone help me with this?

    FYI: It seems it was a network problem with my WinXP PC. After complete deletion and new installation of XP and iTunes my iPhone will be recognized correctly, Wifi synchronization works (mostly) fine.

  • I have a problem with my blackberry 9360, I bought it last 2months, and now when I use video camera or camera I saw a red and blue line. Can someone help me with this issue?

    I have a problem with my blackberry 9360, I bought it last 2months, and now when I use video camera or camera I saw a red and blue line. Can someone help me with this issue?

    Hello zukafu, 
    Welcome to the forums. 
    In this case we can try to reload the software on the BlackBerry® smartphone to make sure it is running the latest version and there are no issues with the OS.
    Here is how to backup your BlackBerry smartphone http://bbry.lv/oPVWXc
    Once you have backed up your BlackBerry smartphone please follow the link below to complete a clean reload of the BlackBerry smartphone software.
    Link: http://www.blackberry.com/btsc/KB03621
    Once completed test it and proceed with a selective restore, here is how to restore http://bbry.lv/qgQxLo
    Thank you
    -SR
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • HT4095 Hello.  I purchased two movies but don't have wifi.  Have connected to computer but do not know how to download. Keeps showing to connect to computer. Can someone assist.

    Good afternoon.
    Purchased two movies but have no wifi on ipad.  Have connected to computer but ipad shows to connect before downloading.  Can someone assist to download movies from pc whilst ipad is connected.

    Hello Delia,
    Thank you for the question.  It sounds like you are trying to sync movies to your iPad using iTunes.  The following articles provide steps on syncing your iPad with iTunes. 
    You can manage what movies sync to your iPad using the Movies tab when your iPad is connected and then clicking Apply when you have decided what movies to transfer:
    I wasn’t sure if you were using a Mac or Windows computer, so I included the articles for each:
    iTunes 11 for Mac: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/ph12113
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/ph12313
    Once you sync your movies, they will appear in the Videos app on your iPad as described in the featured discussion below:
    I forgot how to get a movie. I want to download it on the computer, sync it to the iPad. Then, I forget where it is, how I find it on the iPad to watch it.
    https://discussions.apple.com/thread/5980061
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

Maybe you are looking for

  • Background issue

    Hi , I have written a report which takes a file from application server. if it doesnot find then it gives a write message 'not found'. My issue is that if i do background processing then in SM37 i still see it as finished and only if i go to job log

  • Photomail in PSE 7 and/ or 9 - need help

    Somehow I no longer can add text in my photomails (both in PSE 7 and 9 (trial version), where I could do this before. Has someone any ideas on how to fix this for this is one of the features I really like in PSE and also was the reason to install PSE

  • How can I change the lenguage of my Subject Form widget on muse?

    I recently had the problem with the application of forms of contact, I CAN RECIEVE EMAILS. Im not user of Business Catalyst, im hosting my website with other provider. My hosting provider told me that is a problem with the subject of my form becouse

  • How do I fill in the background in a pdf behind text?

    Hi I am editing an existing form and I've had to add some extra text into a section which had a background colour.  However, as you can see, that colour doesn't extend to the new text.  Any ideas on how I can make the fill bigger? Thanks

  • Mac mini disaster after iTunes upgrade

    Hi, I've got an Intel mac mini. The hardware test shows it to be a Macmini2,1 with a Intel Core 2 Duo, 1.83GHz, 2MB L2 and 1 gig memory. No hard drive info shown. The short version of the story is I can no longer boot my machine. It makes it past the