Question About Sharing Apps Between My iPhone and My Wife's iPhone

Hi, I have a question about downloading apps to my iPhone.
I ordered two iPhone 3g's - one for my wife and one for me, and I've discovered that when I download an app (even free ones) on my iPhone and then later sync it to iTunes, my wife cannot put it on her phone. However if I download it on iTunes on my computer and later sync it to my phone, then my wife is able to sync it to her phone as well. It's no big deal when they are free because she can just go get it if she wants it. I haven't purchased any apps yet, but is there a way to be able to give my wife apps that I purchase on my iPhone? Or do I need to purchase all of my [pay] apps and songs on iTunes on my computer to ensure we both have access? Or do I have it all wrong completely LOL?? This rights management stuff is confusing.
Thanks in advance for your help,
Jimmy

I had my iTunes account and phone before I got my wife's hers. When I first started, I synced hers from her account on my computer brought in my libraries and authorized her phone as one of the 5 allowed. She had all purchased apps and music. Over time we each bought music or apps on our seperate accouts. Of course, we told each other about cool apps or music we bought and wanted on our phone. When I went to sync iTunes was going to delete all music and apps and sync with the library I was logged into. Didn't want that, only work around I have found is to copy new music or new apps from one library to the other. Updating on the phone is also difficult because you can't switch between accounts so updates have to be done at the computer for apps bought under different accounts. I am sure there is a better way to do this and ask for an insight anyone would have. I hope it works out.
Message was edited by: AfoUare for typos

Similar Messages

  • Is there a way to stop sharing apps between my iphone and my daughters ipad. We share the same email and itunes account.

    is there a way to stop sharing apps between my iphone and my daughters ipad...we share the same email and itunes account.

    You can keep the same Apple ID for purchases, but set up her own iCloud account for email and syncing.
    You can easily and effectively use the same ID for purchases.
    What you do is use the apple ID you have been using for app/book/movie/music purchases. In Settings > Store, make sure you are using your usual apple ID.
    Then, set up an icloud (@me.com) account for you on your phone, and one for your daughter on her phone. In Settings > iCloud, make sure each of you are using your new iCloud accounts, and not your Apple ID.
    Also, in Settings > Messages > Receive At, make sure you are using your iCloud accounts
    This way, all of your purchases are using one account, and you can effectively use iCloud.

  • The Question about stock transfer between HU-Management and WM-Management

    Hi,
    There is a scenario about stock transfer between HU-Management and WM-Management storage location. I use transaction MB1B , movement type 313 , 315. After Good issue from WM-management storage location, outbound delivery will genarated, then Pack, Create/Confirm TO, at last post goods issue for the outboud delivery. But when i do movement type 315, there is a warning message "Data of preceding document was not transmitted", and from the F1 help i find this system reponse "You can maintain an indicator that makes information about preceding documents in this delivery available under delivery type in Customizing. For some characteristics of this indicator, the type of preceding document and the related document and item numbers must be transmitted to delivery creation. At least one of these parameters is missing.".
    So, My questions are:
    1. Generallily, Outbound delivery is created by SO, inbound delivery is created referenc PO, but how the stock transfer for 2 steps generate the outbould delivery and inbound delivery? Could you pls tell me the where i can config this in the IMG?
    2. What's "Data of preceding document was not transmitted" mean ? how to fix this issue ?
    Best Regards
    Boxer Du
    I am the SAP fans, focus on MM and WM. I am interesting TRM Yard Management and Cross Docking now.Very Gladly to talk you about these areas. I want to exchange the knowledge with you, and want to be a good friend of you. Pls contact me. You can find My MSN in the profile. Thanks.

    Hi,
    Sure, The inbound delivery type is set up in the IMG->Logistics General -> HU management -> Basics ->Delivery type -> Delivery type determination.
    For Inbound delivery type 'HID' is maintained in this view.
    Best Regards.
    Some One want to discuss the details , can contact me. Thanks.

  • Sharing apps between your iPhone and iMac

    How do you share apps from your iPhone to your iMac?

    If there is a Mac counterpart to an iPhone App you want, then yes you have to purchase them separately.

  • Question about main difference between Java bean and Java class in JSP

    Hi All,
    I am new to Java Bean and wonder what is the main difference to use a Bean or an Object in the jsp. I have search on the forum and find some post also asking the question but still answer my doubt. Indeed, what is the real advantage of using bean in jsp.
    Let me give an example to illustrate my question:
    <code>
    <%@ page errorPage="errorpage.jsp" %>
    <%@ page import="ShoppingCart" %>
    <!-- Instantiate the Counter bean with an id of "counter" -->
    <jsp:useBean id="cart" scope="session" class="ShoppingCart" />
    <html>
    <head><title>Shopping Cart</title></head>
    <body bgcolor="#FFFFFF">
    Your cart's ID is: <%=cart.getId()%>.
    </body>
    <html>
    </code>
    In the above code, I can also create a object of ShoppingCart by new operator then get the id at the following way.
    <code>
    <%
    ShoppingCart cart = new ShoppingCart();
    out.println(cart.getId());
    %>
    </code>
    Now my question is what is the difference between the two method? As in my mind, a normal class can also have it setter and getter methods for its properties. But someone may say that, there is a scope="session", which can be declared in an normal object. It may be a point but it can be easily solved but putting the object in session by "session.setAttribute("cart", cart)".
    I have been searching on this issue on the internet for a long time and most of them just say someting like "persistance of state", "bean follow some conventions of naming", "bean must implement ser" and so on. All of above can be solved by other means, for example, a normal class can also follow the convention. I am really get confused with it, and really want to know what is the main point(s) of using the java bean.
    Any help will be highly apprecaited. Thanks!!!
    Best Regards,
    Alex

    Hi All,
    I am new to Java Bean and wonder what is the main
    difference to use a Bean or an Object in the jsp. The first thing to realize is that JavaBeans are just Plain Old Java Objects (POJOs) that follow a specific set of semantics (get/set methods, etc...). So what is the difference between a Bean and an Object? Nothing.
    <jsp:useBean id="cart" scope="session" class="ShoppingCart" />
    In the above code, I can also create a object of
    ShoppingCart by new operator then get the id at the
    following way.
    ShoppingCart cart = new ShoppingCart();
    out.println(cart.getId());
    ...Sure you could. And if the Cart was in a package (it has to be) you also need to put an import statement in. Oh, and to make sure the object is accessable in the same scope, you have to put it into the PageContext scope. And to totally equal, you first check to see if that object already exists in scope. So to get the equivalant of this:
    <jsp:useBean id="cart" class="my.pack.ShoppingCart"/>Then your scriptlet looks like this:
    <%@ page import="my.pack.ShoppingCart %>
    <%
      ShoppingCart cart = pageContext.getAttribute("cart");
      if (cart == null) {
        cart = new ShoppingCart();
        pageContext.setAttribute("cart", cart);
    %>So it is a lot more work.
    As in my mind, a normal class can also
    have it setter and getter methods for its properties.True ... See below.
    But someone may say that, there is a scope="session",
    which can be declared in an normal object.As long as the object is serializeable, yes.
    It may be
    a point but it can be easily solved but putting the
    object in session by "session.setAttribute("cart",
    cart)".Possible, but if the object isn't serializable it can be unsafe. As the point I mentioned above, the useBean tag allows you to check if the bean exists already, and use that, or make a new one if it does not yet exist in one line. A lot easier than the code you need to use otherwise.
    I have been searching on this issue on the internet
    for a long time and most of them just say someting
    like "persistance of state", "bean follow some
    conventions of naming", "bean must implement ser" and
    so on. Right, that would go along the lines of the definition of what a JavaBean is.
    All of above can be solved by other means, for
    example, a normal class can also follow the
    convention. And if it does - then it is a JavaBean! A JavaBean is any Object whose class definition would include all of the following:
    1) A public, no-argument constructor
    2) Implements Serializeable
    3) Properties are revealed through public mutator methods (void return type, start with 'set' have a single Object parameter list) and public accessor methods (Object return type, void parameter list, begin with 'get').
    4) Contain any necessary event handling methods. Depending on the purpose of the bean, you may include event handlers for when the properties change.
    I am really get confused with it, and
    really want to know what is the main point(s) of
    using the java bean.JavaBeans are normal objects that follow these conventions. Because they do, then you can access them through simplified means. For example, One way of having an object in session that contains data I want to print our might be:
    <%@ page import="my.pack.ShoppingCart %>
    <%
      ShoppingCart cart = session.getAttribute("cart");
      if (cart == null) {
        cart = new ShoppingCart();
        session.setAttribute("cart", cart);
    %>Then later where I want to print a total:
    <% out.print(cart.getTotal() %>Or, if the cart is a JavaBean I could do this:
    <jsp:useBean id="cart" class="my.pack.ShoppingCart" scope="session"/>
    Then later on:
    <jsp:getProperty name="cart" property="total"/>
    Or perhaps I want to set some properties on the object that I get off of the URL's parameter group. I could do this:
    <%
      ShoppingCart cart = session.getAttribute("cart");
      if (cart == null) {
        cart = new ShoppingCart();
        cart.setCreditCard(request.getParameter("creditCard"));
        cart.setFirstName(request.getParameter("firstName"));
        cart.setLastName(request.getParameter("lastName"));
        cart.setBillingAddress1(request.getParameter("billingAddress1"));
        cart.setBillingAddress2(request.getParameter("billingAddress2"));
        cart.setZipCode(request.getParameter("zipCode"));
        cart.setRegion(request.getParameter("region"));
        cart.setCountry(request.getParameter("country"));
        pageContext.setAttribute("cart", cart);
        session.setAttribute("cart", cart);
      }Or you could use:
    <jsp:useBean id="cart" class="my.pack.ShoppingCart" scope="session">
      <jsp:setProperty name="cart" property="*"/>
    </jsp:useBean>The second seems easier to me.
    It also allows you to use your objects in more varied cases - for example, JSTL (the standard tag libraries) and EL (expression language) only work with JavaBeans (objects that follow the JavaBeans conventions) because they expect objects to have the no-arg constuctor, and properties accessed/changed via getXXX and setXXX methods.
    >
    Any help will be highly apprecaited. Thanks!!!
    Best Regards,
    Alex

  • Question about transfering files between windows OS and mac OS when using bootcamp

    I'm thinking about buying the latest macbook pro, however, many of the statistical programs I use are only compatible with windows OS.  I am aware of fusion and parallels, but I was advised to use bootcamp to maximize the performance of both the statistical programs AND the macbook itself.  When using bootcamp, if I were to create a word document for my statistical output in the windows 7 partition, would I be able to access it directly from the hard drive in the mac OS partition using windows for mac?  Any suggestions would be appreciated!

    I run both Windows and OS X on my Mac. I would never ever want the Windows partition to have write access to my OS X partition. Be cautious when considering this ability. I would much prefer sharing files by a third drive, be it a flash drive, and external HDD, NAS, or an SD card.

  • Question about Hz difference between MacBook Pro and iMac?

    Some will think I'm crazy for saying this, but my new MacBook is driving me nuts.
    In a nutshell, I have tinnitus as a result of an accident some years ago. I can hear an intermittent high pitch sound coming from the back left of the machine. I used to hear a similar sound from old TVs back when I first got tinnitus. After some deduction I realised that it was to do (I think) with the fequency. I sold my old TV and brought a new one that was a 100Hz. My theory was somewhat confirmed when they delivered it and it was the 50Hz version and yes, the high pitch sound was very evident! Upon receipt of the 100Hz model and I immediately noticed the difference.
    I'm guessing then that the MacBook has something inside emitting 50-60Hz - someone on this forum mentioned that too.
    Although I want the portability, I can't stand that sound all day long, so I'm thinking of taking it back and swapping it for an iMac.
    The question is, will I find the same problem? I'm not sure of the technical specifications in terms of Hz's between the two machines.
    It's too noisy in the shop to tell.
    Any advice appreciated.
    PS - did not have this issue with my 2008 MacBook pro.
    PPS - makes no difference if it's plugged in or not.

    Isolating the source of the high frequency would take a technician with the instruments to deteermine what components emit sound...actually very easy to do with the proper test instruments, but essential to tell you what is causing the offending sound.  Unless you know that it will be very hard to determine if the iMac will not do the same thing.
    Only qualitative way to find out is go to an Apple store or reseller with a good selection of hardware, work with the different hardware and see if it bothers you.  Preferably with few people around and low background noise level so the sound isn't masked.

  • Question about the relationship between a project and Mobile Me album

    Hello esteemed members of the Aperture community
    I have a puzzling issue. I have published a project on MobileMe. My project is arranged somewhat chronologically, and I want MobileMe to follow this. However, the MobileMe album in Aperture does not synchronize with the project, and subsequently, the gallery on MobileMe does neither. How do I tell the MobileMe album in Aperture to synchronize itself with my project, and update changes as I edit the project, or am I just totally confused...always a possibility?
    Thanks in advance

    You sort of answered your own question in the title: Your Mobile Me gallery is an album. By design, changing the sort order of a project does not affect the sort order of related albums and vice versa. You'll have to make those changes in the album to have them reflected in the gallery.
    I know of no way to have an album synchronize with a project. (Note: if you make adjustments to images or delete images from a project, those changes will be reflected in the album, but the sort order will not.)
    DLS

  • How can I synchronize the app between my iPad and iPhone?

    How can I synchronize the app between my iPad and iPhone?

    Hi,
    May i know which app in particular you are taking about.
    If that is Adobe Reader you need to sign-in in Adobe Id and password and that should be it.
    Regards,
    Ajlan Huda.

  • Can icloud sync an app between 2 iphones and an ipod?

    I was wondering if the icloud can sync an app between 2 iphones and an ipod under the same ID

    Yes per http://support.apple.com/kb/HT4946 setup iCloud on all devices under the same account and backup to the cloud. If its two iPhones, are they both one owner? If not,it's best to not setup iCloud on a device that is not the same owner.

  • Confused about sharing music between two ipods

    I have a 30GB ipod video, and I bought my husband an 8GB nano for Christmas. I have been searching the threads trying to figure out how we can share music, but I seem to get conflicting information. I understand how to create separate libraries and I think I understand how to allow him access to my library (move itunes music folder into public folder?) but am still unclear about sharing music between ipods. Because in some of the posts, I have read that while you can share music and listen to it via multiple itunes libraries, you can ONLY listen to it on the computer--you cannot get it onto another ipod due to anti-piracy measures.
    I know I could create a playlist for him in my library, but I like to autosync my ipod and I don't really want his music on mine, because the songs we BOTH like I've already imported into my itunes library. I was hoping to set up a separate library for him, import my music files into it, then let him delete the artists he's not interested in and add the music he wants that I don't. But I don't want to go through all that if he won't be able to play the shared songs on his own ipod.
    I hope all this makes sense. Can someone who shares songs in this way give me some advice? Again, I would like for us to maintain separate libraries but I would like to make mine available to him so he doesn't have to reimport all the CDs I've already imported (and I don't want to waste computer space by having multiple copies of the same songs).
    Any help would be appreciated!

    I know I could create a playlist for him in my library, but I like to autosync my ipod and I don't really want his music on mine, because the songs we BOTH like I've already imported into my itunes library.
    Ver easy to accomplish.
    I have one library, two 4GB iPods and ~20GB of music.
    Rather than duplicating libraries or creating separate user accounts/sharing music you can't load, etc. which simply takes up space on the disk drive, use the same library and use sync only what you want.
    Create playlist(s) of your own music from the library.
    Add/remove from those playlists as you want.
    Connect your iPod, select it in iTunes and select the Music tab.
    Select Sync music, Sync selected playlists and choose what you want.
    The way I do it is I create a main playlist (Chris's Music) of music in the library that I like.
    I also create a smart playlist (Not Chris's Music) and set it to Match Rule - Playlist is not Chris's Music.
    This helps to manage my music by showing all music not in main playlist so I can browse for music I may have missed or now want to add.
    I do the same for my daughters iPod except she gets to pick her own stuff.
    This way whenever any music is added by either of us, it is available to the other with no problems.

  • How do I turn of synching apps between multiple iPhones?

    How do I turn of the feature that synchs apps between multiple iPhones?

    Settings > iTunes & App Stores > Automatic Downloads
    Connect each device to iTunes in turn, scroll to just below the list of apps and untick "Automatically include new apps"
    tt2

  • Questions about shared maps

    Hi,
    I have some questions about shared maps. Our Olite Applications has 96 tables. On these 96 tables, 54 tables are tables with DISABLED DML = UID. So, change on the client database are not uploaded to the server. Some of those tables have no where clause and some have a where clause which is the same where clause for all.
    Is it true to say I could put all those tables as shared maps?
    Are they automatically shared because DISABLED DML = UID?
    What would be the advantages of putting those publications items as shared maps?
    Thanks for your help.

    Thanks for your help.
    I looked into CMP$ tables and CLID$$CS is not 0 but egal to my usersnames. I use a java program to create my items and publications.
    I also found in the table C$ALL_TEMPLATE_ITEMS a COLUMN named SHARED and they are all with the value N. So I think they are not shared.
    I think I found where in the API I should make the table shared. It is in the addPublicationItem procedure of the Class ConsolidatorManager. I will try it.
    If we want all users to have all the table data, must we use the groups you talked about?
    If yes, how do i define those groups?
    Thanks

  • Sharing resources between parent FDO and children PDO

    Hello,
    I 'm developping a WDM driver for a FPGA that embeds several uarts and a CAN controler in one PCI slot.
    I use the DDK Toaster sample as a basis.
    Has someone already shared resources between  parent FDO and children PDO ?
    One way will be to export a direct-call interface between tha parent and the children. Is there something better to get the interrupt trigger in the child and the memory as a direct access ?
    Thanks
    Marco

    Hi Doron,
    here is the full debug output................
    ADDITIONAL_DEBUG_TEXT:  
    You can run '.symfix; .reload' to try to fix the symbol path and load symbols.
    MODULE_NAME: Nitin
    FAULTING_MODULE: fffff8000324a000 nt
    DEBUG_FLR_IMAGE_TIMESTAMP:  549ced55
    EXCEPTION_CODE: (NTSTATUS) 0xc0000005 - The instruction at 0x%08lx referenced memory at 0x%08lx. The memory could not be %s.
    FAULTING_IP:
    +501cfc0
    00000000`00000000 ??              ???
    EXCEPTION_RECORD:  fffff88003b9a9c8 -- (.exr 0xfffff88003b9a9c8)
    ExceptionAddress: 0000000000000000
       ExceptionCode: c0000005 (Access violation)
      ExceptionFlags: 00000000
    NumberParameters: 2
       Parameter[0]: 0000000000000008
       Parameter[1]: 0000000000000000
    Attempt to execute non-executable address 0000000000000000
    CONTEXT:  fffff88003b9a220 -- (.cxr 0xfffff88003b9a220;r)
    rax=fffffa8022124c40 rbx=0000000000000000 rcx=0000000000000000
    rdx=fffff88003b9ac58 rsi=fffff88000fc60c0 rdi=fffff88003b9acf8
    rip=0000000000000000 rsp=fffff88003b9ac08 rbp=000000000000000c
     r8=0000000000000065  r9=0000000000000003 r10=4679726575516f64
    r11=000000000000000c r12=fffff88000fc92c0 r13=0000000000000312
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na pe nc
    cs=0010  ss=0018  ds=002b  es=002b  fs=0053  gs=002b             efl=00010282
    00000000`00000000 ??              ???
    Last set context:
    rax=fffffa8022124c40 rbx=0000000000000000 rcx=0000000000000000
    rdx=fffff88003b9ac58 rsi=fffff88000fc60c0 rdi=fffff88003b9acf8
    rip=0000000000000000 rsp=fffff88003b9ac08 rbp=000000000000000c
     r8=0000000000000065  r9=0000000000000003 r10=4679726575516f64
    r11=000000000000000c r12=fffff88000fc92c0 r13=0000000000000312
    r14=0000000000000000 r15=0000000000000000
    iopl=0         nv up ei ng nz na pe nc
    cs=0010  ss=0018  ds=002b  es=002b  fs=0053  gs=002b             efl=00010282
    00000000`00000000 ??              ???
    Resetting default scope
    CUSTOMER_CRASH_COUNT:  1
    DEFAULT_BUCKET_ID:  WIN7_DRIVER_FAULT
    BUGCHECK_STR:  0x7E
    CURRENT_IRQL:  0
    ANALYSIS_VERSION: 6.3.9600.17029 (debuggers(dbg).140219-1702) amd64fre
    LAST_CONTROL_TRANSFER:  from fffff8800b9eb091 to 0000000000000000
    STACK_TEXT:  
    fffff880`03b9ac08 fffff880`0b9eb091 : fffff880`0b9ec9a0 00000000`00000001 00000000`00000000 fffff880`009cf180 : 0x0
    fffff880`03b9ac10 fffff880`0b9ec9a0 : 00000000`00000001 00000000`00000000 fffff880`009cf180 00000000`00000001 : Nitin+0x4091
    fffff880`03b9ac18 00000000`00000001 : 00000000`00000000 fffff880`009cf180 00000000`00000001 00000000`00000000 : Nitin+0x59a0
    fffff880`03b9ac20 00000000`00000000 : fffff880`009cf180 00000000`00000001 00000000`00000000 00000000`03060001 : 0x1
    FOLLOWUP_IP:
    Nitin+4091
    fffff880`0b9eb091 ??              ???
    SYMBOL_STACK_INDEX:  1
    SYMBOL_NAME:  Nitin+4091
    FOLLOWUP_NAME:  MachineOwner
    IMAGE_NAME:  Nitin.sys
    STACK_COMMAND:  .cxr 0xfffff88003b9a220 ; kb
    BUCKET_ID:  WRONG_SYMBOLS
    FAILURE_BUCKET_ID:  WRONG_SYMBOLS
    ANALYSIS_SOURCE:  KM
    FAILURE_ID_HASH_STRING:  km:wrong_symbols
    FAILURE_ID_HASH:  {70b057e8-2462-896f-28e7-ac72d4d365f8}
    Followup: MachineOwner

  • TS2446 I forgot the security question about what was my first car and what is my favorite car! What is the solution to change that? please help me, thank you in advance Leo

    I forgot the security question about what was my first car and what is my favorite car! What is the solution to change that? please help me, thank you in advance Leo

    If you have a rescue email address set up on your account then you can try going to https://appleid.apple.com/ and click 'Manage your Apple ID' on the right-hand side of that page and log into your account. Then click on 'Password and Security' on the left-hand side of that page and on the right-hand side you might see an option to send security question reset info to your rescue email address.
    If you don't have a rescue email address set up then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Questions' or 'iTunes Store account security' (it appears to vary by country) and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox)

Maybe you are looking for