Weird situation with imessage (3 phones on same ID)

My daughters & I all have iPhones (youngest has a 3Gs & oldest and myself 4G). I also have an iPad 2 (got it for Christmas 2011). All are running newest OS. Never have had a problem with iMessage before, until April 9 when my iPhone battery drained & it was super late and I was messaging my oldest to get home immediately....so I had to use my iPad 2 to continue texting her. Ever since I did this, we she & I message each other it does NOT alert us that we got a message, because it shows up as a blue message like we sent it to ourselves & my other daughter gets the message as well, like it came from her sister (even if it's a message I sent to the oldest).
After this problem became apparent, I shut off my iPad 2 iMessenger. But the problem STILL is occuring. I have even turned off iMessage on my iPhone 4 & just texted for about a week. Then turned it back on & situation STILL is occuring.
Please someone HELP us. I need to know that my girls got their messages. All of our devices are under the same Apple ID (could this be the problem?) & can we use different IDs, but still access all of our purchases (we have almost 500 apps on this ID & way more songs than that).

It's more that likely the same ID's are causing the problem.  http://support.apple.com/kb/HT3529 
Probably need to create a separate ID for your children.

Similar Messages

  • Weird situation with BINARY SEARCH in READ statwment??

    Hi Experts,
    I got weird situation with BINARY SEARCH !! bcoz, below is my code,
    data: begin of it_vbap occurs o,
            vbeln like vbap-vbap,
            posnr like vbap-posnr, ( i also tried like, posnr(6) type n)
    end of it_vbap.
    data: counter type i ( i also tried like, counter(6) type n)
    my it_vbap is filled like below,
    vbeln----
    posnr
    12345678-------000001
    12345678-------000002
    12345678-------000003
    12345678-------000004
    12345678-------000005
    12345678-------000006
    sort it_vbap by posnr. (*)
    clear counter
    loop it_vbap.
    counter = counter + 1.
    read table it_vbap with key posnr = counter
    binary search (after commenting the above SORT * marked statement, then,if I delete BINARY SEARCH, then its working!!)
    if sy-subrc = 0.
    here is my logic.
    endif.
    endloop.
    so, now, for
    1st loop the sy-subrc = 0.
    2nd loop the sy-subrc = 0.
    3rdloop the sy-subrc NE  0.
    4th loop the sy-subrc = 0.
    5th loop the sy-subrc NE 0.
    6th loop the sy-subrc NE 0.
    so, why, ebven though there r all entires in it_vbap, why am getting the sy-subrc NE 0??
    Is the reason that, there r less number of entries in it_vbap?? and am using BINARY SEARCH??
    thanq
    Edited by: SAP ABAPer on Dec 4, 2008 8:33 PM
    Edited by: SAP ABAPer on Dec 4, 2008 8:37 PM
    Edited by: SAP ABAPer on Dec 4, 2008 8:37 PM

    Hello
    The following coding works perfect (6x sy-subrc = 0) on ERP 6.0:
    *& Report  ZUS_SDN_ITAB_BINARY_SEARCH
    REPORT  zus_sdn_itab_binary_search.
    TABLES: vbap.
    DATA: BEGIN OF it_vbap OCCURS 0,
    vbeln LIKE vbap-vbeln,
    posnr LIKE vbap-posnr, "( i also tried like, posnr(6) type n)
    END OF it_vbap.
    DATA: counter TYPE posnr.
    START-OF-SELECTION.
      " Fill itab with data:
    *  12345678-------000001
    *  12345678-------000002
    *  12345678-------000003
    *  12345678-------000004
    *  12345678-------000005
    *  12345678-------000006
      REFRESH: it_vbap.
      CLEAR: vbap.
      DO 6 TIMES.
        it_vbap-vbeln = '12345678'.
        it_vbap-posnr = syst-index.
        APPEND it_vbap.
      ENDDO.
      SORT it_vbap[] BY posnr.  " for BINARY SEARCH
      BREAK-POINT.
      clear counter.
      loop at it_vbap.
      counter = counter + 1.
      READ TABLE it_vbap WITH KEY posnr = counter
      BINARY SEARCH.  " (after commenting the above sort * marked statement, then,if i delete binary search, then its working!!)
      IF sy-subrc = 0.
        "here is my logic.
      ENDIF.
    ENDLOOP.
    END-OF-SELECTION.
    By the way, if your requirement is to check whether the first item has POSNR = '000001', the second item has POSNR = '000002' and so on then you can simplify your coding like this:
    counter = 0.
    LOOP AT it_vbap.
      counter = syst-tabix.
      IF ( it_vbap-posnr = counter ).
        " put in here your logic
      ENDIF.
    ENDLOOP.
    Regards
      Uwe

  • Recent problem with 2 separate phones getting same messages and contact info

    I have an iphone 4s/ my father also has a 4s.  in the past few days, suddently his contact list and my contact list have merged.  Today, I deleted my contacts off his phone, but it also deleted my contacts off my phone.  FURTHER, any texts sent to either one of us, also automatically come to BoTH of us, including-- IF he sends to me, he sends to both me and himself (automatically/he is NOT copying himself on this).  This has been a sudden/ recent occurance.  It is like each phone is a clone of one another, though we do NOT get each other's phone calls.  Problem seems to be only in the contact list and messaging systems.

    imaginebeth, not all ppl have set it up the iMessage feature they just turn off the option on their apple devices, i had few friends that i know they have iPhone iPad , iPod and they just do not use iMessage because they said are using the same apple ID in all their devices and the imessages drop in they message app, i know that happend but just some do not like use that feature, if u send a text to one of ur contacts that has iPhone and the message go in green color that is because they are not using iMessage feature or some are out range from cellphone towers signal sometimes happend with few of my contacts.

  • Weird situation with MOVE-CORRESPONDING in standard SAP include!!

    Hello Experts,
    We have a standard_SAP_field_1 (attached to a standard_SAP_data_element_1) in standard_SAP_structure_1, but unfortunately its NOT there in KOMP structure!! Hence I added this standard_SAP_field_1 with in customer name space as 'ZZ_standard_SAP_field_1' by attaching the same standard_SAP_data_element_1.
    The standard_SAP_data_element_1 attributes are as CHAR, 2.
    Now, in one of the standard SAP include of VA42.....we have a statement as below,
    MOVE-CORRESPONDING standard_SAP_structure_1 TO komp.
    Then the value (say, AA) should transfer from standard_SAP_field_1 of standard_SAP_structure_1  to ZZ_standard_SAP_field_1 of KOMP, right? but, its not happening!! pls. let me know the reason and how to fix it?

    Okay...
    Field one is called: FIELD1
    Your own created field two is called ZZ_FIELD1.
    And now... MOVE-CORRESPONDING. Do a F1 on that and tell me: do the two fieldnames correspond?

  • How can I stop sharing information with another I phone on same account

    I don't want my text messages or text messages I receive coming up on other phone

    Actually, you never said anything about not being able to log out on either phone.
    Go to your support profile - https://daw.apple.com/cgi-bin/WebObjects/DSAuthWeb.woa/446/wo/na8PRIlf99e4AnJyoJ maNw/0.49.1 login and remove the device from there.

  • Strange situation with joins!!!

    Hi,
    I am having a weird situation with joins. I have two tables "EMPLOYER" and "ADDR". Table "ADDR" has columns "ADDRESS_ID" and "ADDRESS1".
    Table "EMPLOYER" has two columns, "BUS_ADDRESS_ID" and "MAIL_ADDRESS_ID" which are left outer joined to the "ADDR" table on "ADDRESS_ID". I have also created an alias for "ADDR" to get both addresses.
    The logical table Employer has two LTS, one with "ADDR" and one with "ADDR1". (I do not want to create one LTS with both the tables as left outer joins, that will create other problems)
    When I query EmployerID,EmployerName,ADDR.ADDRESS1,ADDR1.ADDRESS1, I get the correct results, but the query is very slow.
    I looked at the log and there is no second left outer join* at all, but the results are correct!!!. I have attached the log sequence.
    -------------------- Logical Request (before navigation):
    RqList distinct
    EMPLOYER.EMPLOYER ID as c1 GB,
    EMPLOYER.EMPLOYER NAME as c2 GB,
    EMPLOYER.PRIMARY ADDRESS 1 as c3 GB,
    EMPLOYER.MAILING ADDRESS 1 as c4 GB
    DetailFilter: APPLIED EMPLOYER.EMPLOYER ID = 7501
    OrderBy: c1 asc, c2 asc, c3 asc, c4 asc
    +++USER1:1750000:1750004:----2009/03/04 15:22:22
    -------------------- Sending query to database named DEV (id: <<2378603>>):
    select T30717.EMPLOYER_ID as c1,
    T30717.EMPLOYER_NAME as c2,
    T44205.ADDRESS_1 as c3,
    T30717.MAIL_ADDRESS_ID as c4
    from EAPP_EMPLOYER T30717, ADDR T44205
    where ( T30717.BUS_ADDRESS_ID = T44205.ADDRESS_ID (+) ) and ( T30717.EMPLOYER_ID = 7501 )
    order by c4
    +++USER1:1750000:1750004:----2009/03/04 15:22:22
    -------------------- Sending query to database named DEV (id: <<2378624>>):
    select T43657.ADDRESS_1 as c1,
    T43657.ADDRESS_ID as c2
    from
    ADDR T43657
    order by c2
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Query Status: Successful Completion
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Rows 1, bytes 160 retrieved from database query id: <<2378603>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Physical query response time 0 (seconds), id <<2378603>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Rows 0, bytes 0 retrieved from database query id: <<2378624>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Physical query response time 0 (seconds), id <<2378624>>
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Physical Query Summary Stats: Number of physical queries 2, Cumulative time 0, DB-connect time 0 (seconds)
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Rows returned to Client 1
    +++USER1:1750000:1750004:----2009/03/04 15:22:30
    -------------------- Logical Query Summary Stats: Elapsed time 8, Response time 7, Compilation time 0 (seconds)
    Has anyone come across this situation? I have used the same concept in the same RPD for another model, but that used Oracle 9i as the datasource. This one uses Oracle 8i.
    Thanks
    rkingmdu

    1) Have you used dfferent joins for the 2 versions of the addr table (origianal and alias).
    i.e. one joins on bus_addr_id to employer and
    the other joins to mail_addr_id to employer - *+{color:#ff0000}YES{color}+*
    2) do both have left outer join specified? - *+{color:#ff0000}YES{color}+*
    3) can you run employee, business_addrss query once
    then run employee, mail_addrss query once separately, to see if the individual queries give correct results? - *+{color:#ff0000}YES, I get the correct results{color}+*
    4) also check if the business_addrss and mail addrss in the logical employer table are mapped to different LTSs - *+{color:#ff0000}YES, they are{color}+*

  • I can't texted people on iMessage that are not registered with iMessage

    hello,
    I have my iphone, ipad and mac book pro all link together with imessage my phone works fine but if i want to text a person from my mac book or my ipad that are not using an apple product it says the number is not registered with imessage how can i send regular texted with my mac book or ipad.
    thank you

    Hello there, DJ Jason B.
    The following Knowledge Base article provides clarification about how Messages works and which options are available:
    iOS: Using Messages
    http://support.apple.com/kb/ht3529
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Why won't my ipad send a simple txt message to a phone number that is not listed with imessage. It workls fine from my iphone. Same carrier.

    Why won't my ipad send a simple txt message to a phone number that is not listed with imessage. It works fine from my iphone. Same carrier.

    You can read why here:
    about messages
    http://support.apple.com/kb/HT3529
    Troubleshooting messages
    http://support.apple.com/kb/TS2755

  • Help with iPad Identifying Phone Numbers in iMessage Send & Receive Settings / iMessage Syncing Help - iOS 6 - iPhone - iPad

    With iOS6, iPhone and iPad users will see that their Send & Receive iMessage settings have updated across their devices to be made available at both phone numbers and email addresses. You may have also seen alerts on one or more of your devices advising that another device is now using the same Apple ID/phone number for iMessage.
    Being able to be reached on iMessage on both Apple ID and phone numbers across devices means that iMessage can keep the same thread and sync across devices.
    Due to having 2 iPhones on different phone numbers running along side my iPad at one time, (whilst I was waiting for my phone number to be moved to a new provider), my iMessage settings on my iPad lost my phone number completely. I thought I would document the steps to recover this for anyone in the same boat.
    1. Check that you are signed in with the same iCloud Account on both iPad and iPhone.
    2. Turn off iMessage on your iPad from Settings > Messages.
    3. On your iPhone, go to Settings > Messages > Send & Receive. You should see your phone number and your iCloud email address in the 'Your can be reached by iMessage at:' list. Make sure both are ticked.
    4. At this point, I synced my iPhone with iTunes, then synced my iPad with iTunes.
    5. On your iPad, turn iMessage back on - your phone number should now show in the 'You can be reached by iMessage at:' list. Tick the phone number. You should receive an alert on your iPhone.
    This should resolve the issue.
    With the above set up and with the iOS 6 updates, iMessage should now sync fine across devices however I have still found the most successful way to run iMessage is to always start new conversations from your Apple ID and to start new threads by addressing the first message to an Apple ID from an Apple ID.
    To do this, go to Settings > iMessage > Send & Receive and tick your Apple ID in the 'Start new conversations from:' list, then start a new iMessage thread to the recipients Apple ID. This way, the thread will sync across iPad and iPhone. Note that a thread set up this way will not fall back on SMS, so you get a clean iMessage thread. This method also worked/works on iOS 5, as long as you send the first message of a new thread from an iPad (which can only send via Apple ID) to an Apple ID.
    Hopefully this helped someone!

    ipad has no phone number, you use a same email address for both devices. and set it in Settings>Messages>Send & Receive

  • My wife and I share apple id but have our own phones, and now having trouble with imessage

    My wife and I share apple id but have our own phones, and now having trouble with imessage. Sharing calenders, apps, music, contacts, etc...all great. But when we imessage each other. Our phones get confused and either not deliver message, or send it to and from itself.

    Go to Settings > Facetime and you will see "You can be reached for video calls at:"
    This should list your phone number (iPhone) and your email address (probably the gmail one).
    And then an option for "Add another email..."
    Choose that and enter your @me.com account and it'll send a verification email.
    Same for iMessage: Settings > Messages > "Receive at" > Add Another Email
    So you can be called by facetime and use iMessage through multiple email accounts yes.

  • REAL problems with iMessage activation same with Face Time

    I'm having real problems with IMessage activation same with FaceTime, the phone shows the activation is being made but it does not activate!
    Apple ID and password is OK, it's working with other applications
    Any ideas guys?!

    My daughters had the same problem with both of their iPod Touches.  One logged back into iMessage and FaceTime, the other consistently would not login with the same error, "An error occurred during activation.  Try again." 
    Check your date and time.  Its likely incorrect.  Once the date is corrected.  Restart the device. 
    For what ever reason, some devices lose track of the date.  In my case, apparently, my daughters change the date to affect a particular game by advancing the date.  Little cheaters. (LOL)
    Hope this helps!

  • Changing the phone number associated with iMessage in my iPad

    Hi,
    I bought an iPhone 3s, then an iPad 2' which then synced to my iPhone, using the same apple ID. This meant that the iMessage was synced between the iPad and the iPhone. All good so far.
    I have now bought a new Iphone 5 , in addition to the iPhone 3, which has a new number. I change the phone number in my Apple ID to the new number, but my iPad still synced its iMessages with the old phone, not the new phone.
    I intend to cancel he service with the old iPhone 3 and stop using that number.
    However, I cannot find a way to change the number in my iPad to the new one.
    I would appreciate some tips on how to do this. Thanks.

    You will most likely have to sign out of Messages and FaceTime on all devices and start the process of setting up both apps all over again with the newest iPhone number - on the new iPhone. You can read this for more information. It tells you how you can link a phone number with your iDevices. The most pertinent information will be at the end of the kb article.
    iOS nd OS X: link your phone number and Apple ID for use with FaceTime and Messages.
    http://support.apple.com/kb/HT5538

  • So with iMessage, i am not getting messages on my 4S, only on my MacBook Pro.  I don't want this.  I only want texts sent to my phone.  HELP!

    so with iMessage, i am not getting messages on my 4S, only on my MacBook Pro.  I don't want this.  I only want texts sent to my phone.  HELP!

    did that.  now getting no messages on anything.  opened up messages on the Mac and saw i had been sent many that never showed up on my phone.
    I tried sending a text with iMessage turned off and while it said delivered, doesn't look like it was ever seen.

  • I have two different 5s's with two different phone numbers but they are both using the same iCloud/apple account. After upgrading to iOS8 when I get a phone call on one phone both phones ring.

    I have two different 5s's with two different phone numbers but they are both using the same iCloud/apple account. After upgrading to iOS8 when I get a phone call on one phone both phones ring. One phone is for work and one is for private and I don't need both phones to ring from one call. It's bizarre.......is this supposed to be like this? If so where can I turn it off?? And while we are at it iOS8 has installed iBooks on both of my phones and iTunes won't let me uninstall it. I don't need or want iBooks on my phones.

    Hi,
    There are two easy fixes to this.
    One, you can set up Family Sharing, in which you can have two different iCloud Accounts, yet still share the same apps, music, media etc.
    Two, go to Settings and turn-off "Handoff". This can be found under the General page.
    Hope this helps!

  • I just got an iPhone 5S, now when I try to use my old iPad the apps won't work because they are syncing with my new phone. Can I have the same account for an old iPad and a new iPhone?

    I just got an iPhone 5S, now when I try to use my old iPad the apps won't work because they are syncing with my new phone. Can I have the same account for an old iPad and a new iPhone?

    Connect your iPad to iTunes on the computer you usually Sync with and “ Check for Updates “...
    If an Update Appears Install it... if not... you are up to date for your particular Device...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch
    Make sure you have the Latest Version of iTunes (v11) Installed on your computer
    iTunes free download from www.itunes.com/download

Maybe you are looking for

  • Oop report programme:  call method

    hi, i need ur guys advice about my oop report.  its contain 2 class, lcl_main (main programme), lcl_disp(display report), lcl_update (upload report).  all 3 class defination as below: *                     C.L.A.S.S  D.E.F.I.N.I.T.I.O.N class lcl_mai

  • Failed to load an application resource (internal error) win XP

    I  am trying to correct the problem of not being able to open .pdf files from internet websites. This is the error that I get when I go to edit - preferences in adobe reader.  Anyone have any advise?  Greatly appreciated.  Windows XP

  • Will Apple Watch work with iPhone 4S?

    Just wanted to know if I had to upgrade my phone to use Apple Watch?

  • I can not find personal hotspot on my iPhone 4.

    I Just got this iPhone 4 and I cannot find personal hotspot.i read the back of the iPhone box and it says you have to be with at&t to have all the features on cellular in settings.I got my iPhone 4 connected to cricket wireless.im wondering how to ha

  • Ipod does not light up when connected to PC.

    My ipod used to light up when you touched the clickwheel when it is plugged into my computer, but ever since it showed a folder with a exclamation point (which i fixed) it does not light up when it is touched on the clickwheel anymore. I have restore