IMessages going to wrong number

iMessages for my partner is showing messages from my daughter who does not have iMessage. They have different phone numbers in contacts and when I send messages to my partner they are going to my daughter. I have deleted and reentered my daughters contact details and nothing has changed? I am concerned that this may be happening on other contacts? What might be happening

Your partner needs to go to Settings > Message > Send & Receive and inspect "You can be reached by iMessage at".  Your daughter's email is likely there.

Similar Messages

  • IMessage going to wrong person

    When using iMessage, if I start a conversation with my friend who is on her iPad2 (thesame as I am), sometimes the messages don't go to her, but to her son on his iPhone 3GS.
    It shows up as a continuing chat to my friend and if her son replies it again shows up as my friend.
    Can anyone tell me why this would be happening and even more importantly how to stop it as I don't know who will receive my messages!

    Hi,
    I think this is consider a imessage bug. It should not be like that. What happen, there is 2 address in the message setting. First for phone number, second for Apple ID which is not suppose mandatory. Apple only resolve 1 situation which is for wifi user without cellular signal to receive the message. What happen then is all Iphone or Ipad - sync with the same Apple ID will receive the same message(SMS/MMS). The message will go to Iphone/Ipad :-
    1. Being repair but still can receive wifi
    2. Other older iphone/ipad but still can receive wifi.
         - sold to someone
         - give to any family member  
    3. Stolen 

  • Texts going to wrong people

    Does Verizon ever act on these blog messages?  I called Verizon yesterday to report that my texts are going to the wrong people.  They said that had never happened and referred me to tech support who could not figure it out.  No solution provided.   I use texts for personal and business.  This is an extreme compromise with privacy laws and personal privacy as well.   What can be done?

    A rep may reply but for real tech support you are better off going through Verizon directly. Have you tried doing an Internet search on your issue to see if others are experiencing it and have any solutions? It is an odd thing so I'm not aware of it being a normal bug with Verizon in general. You may have a hardware issue with your phone where it's not recognizing the correct numbers you are texting.  Does this occur if you manually input the phone number you're texting versus texting a number in your address book? Have you gone through your contacts and made sure the numbers are still correct in there? If someone texts you first and you reply do they receive the reply or is it still going to the wrong number?

  • How do you combine iMessage sent to phone number and email?

    I talk to someone who sends me imessages to my phone number from their phone, and also from their ipad to my email. Both phone number and email are under the same contact. But the mesages go into 2 different threads. Id like to combine them since being under the same contact they show up exactly the same in the messages list.. so i cant tell if im messaging the ipad or the phone..
    ideally id like to write a message to that contact and it would go to both their ipad and iphone...
    anyways.. how do I combine them?

    This is possible and you can also send and receive iMessages to your MacBook from one phone number without having to use any email address whatsoever. This also means you will have one chat thread with all of your messages not two.
    Anyone will tell you that I am a hardcore Apple Fan, however, sometimes they lack in the instructions area. For a while now I have had a problem with iMessages being sent from my MacBook. I could send an iMessage from my phone with no problem and my friend would receive it from my phone number however, the problem would arise when I would send a iMessage from my MacBook to to the same friend and a new thread would be created, so in essence she would have two different messages for me, one from my phone number and one from my email. After numerous attempts of contacting Apple Customer Service with no avail, I eventually figured it out on my own. I did aggrate some friends because I had to send messages relentlessly. In the end I found a solution and here are the instructions.
    You’re going to go into iMessage on your computer, go to messages in the top left, click on preferences and then click on accounts. Look under “you can be reached for messages at” you should see your email and or your phone number.
    If you do not see your phone number you need to add it to your account at this site. “https://appleid.apple.com/” click on manage your Apple ID and then sign in. After you sign in you will go to another screen and on your left you’ll see a list of choices click on phone numbers. Add your phone number and click save changes. It usually takes a few seconds for your iMessage account to update. Completely quit iMessage in the toolbar and then reopen it and go back into messaging preferences and then accounts.
    After that has been done your phone number should now be added to the “you can be reached for messages at” section. Click on your phone number and then uncheck your email address.
    Then go into your iPhone settings, messages, then scroll down to send and receive. Uncheck any email, only your phone number should have a checkmark, if your phone number does not have a checkmark... check it. You should receive a pop-up on your iPhone saying so-and-so’s MacBook is now using “insert phone number here” for iMessages.

  • PLS-00306: wrong number or types of arguments in call in a for loop

    Dear all
    I recently put up another post about the same error message but as the message now relates to another part of my programme and, in my mind at least, a different conceptual idea, I thought I should start a new top. If that is not right thing to have done then please let me know. I am working in 10.2.
    I am trying to pass through multiple variables. When I run the code at the end of this question I get an error message:
    PLS-00306: wrong number or types of arguments in call to 'CUR_MAP_LIST'This relates to the line:
    FOR var_map_list IN cur_map_list (par_map_list (n))I think the reason the error message comes up is because par_map_list is a associate array / PL/SQL table and cur_map_list is based on %rowtype. Although I could be wrong. However I am not sure what I should be doing so that I don't get such an error message.
    I was reading through page 623 on Web Development 9i (by Brown; pub. McGrew-Hill) and pages 357-358 of Oracle Web Application Programming for PL/SQL Developers (by Boardman, Caffrey, Morse, Rosenzweig; pub. Prentice Hall), in order to try and write my code. As well as Oracle's Application Developer’s Guide - Fundamentals (Release 2), page 11-6. In particular the Web Development book uses the following:
    create or replace procedure query_department
    (in_dept_no owa_util.ident_arr)
    is
    cursor dept_cursor (nbt_dept_no emp.deptno%TYPE) is
    select empno, ename, mgr, sal, comm
    from scott.emp
    where deptno = nbt_dept_no;
    begin
      for x in 1 .. in_dept_no.count loop
        for dept_rec in dept_cursor(in_dept_no (x)) loop
        end loop;
      end loop;
    end;In that example the cursor selects empno, ename, mgr, sal and comm from emp. So if it is doing that the cursor must be of a VARCHAR2 and NUMBER data type. What I don't understand is the for dept_rec in part. For a start I am not sure where dept_rec comes from? If it is a NUMBER data type, how can the in_dept_no, which is a owa_util.ident_arr associate array / PL/SQL data type work with it. Unfortunately because the example is incomplete and doesn't include procedures relating to the in variables, I am unable to run it and try and learn from what it is doing, so that I can try and relate the concept to my own work.
    My programme is as follows. There may be other errors in the code not relating to this error. If so I hope to find these and resolve them once I understand what I should be doing here:
    --Global variables--
    gvar_mapviewer_host VARCHAR2(56) := 'http://tiger.iso.port.ac.uk:7785/mapviewer/omserver';
    gvar_proc_host VARCHAR2(56) := 'http://tiger.iso.port.ac.uk:7785/www/geg50160';
    gvar_xml_request VARCHAR2(100) :='?xml_request=<?xml version="1.0" standalone="yes"?>';
    --Main calling programming--
    PROCEDURE MAPS AS
    empty owa_util.ident_arr;
    var_xml_theme VARCHAR2(32767);
    BEGIN
    PROCMAPLIST (empty, var_xml_theme);
    END maps;
    --create checkboxes--
    PROCEDURE PROCCHECKLIST
    (par_check_list IN OUT owa_util.ident_arr,
      par_xml_theme OUT VARCHAR2
      AS
       CURSOR cur_map_list IS
        SELECT MT.map_title
               MI.map_id
               OMSN.map_sheet_number_id
               WRMF.web_raster_map_id
         FROM MAP_TITLE MT
              MAP_INFO MI
              MAP_SHEET_NUMBER OMSN,
              WEB_RASTER_MAP_FILE WRMF,
          WHERE MI.map_title_id = MT.map_title_id
          AND   MI.map_id = OMSN.map_id
          AND   WRMF.map_id = MI.map_id
          AND   WRMF.map_sheet_number_id = OMSN.map_sheet_number_id;
        var_map_list cur_map_list%ROWTYPE;
        var_xml_theme VARCHAR2(32767);
    BEGIN
    htp.htmlOpen;
    htp.headOpen;
    htp.headClose;
    htp.bodyOpen;
    htp.print('<FORM METHOD = "post"
                     ACTION = "'||gvar_proc_host||'.mappackage.procdisplay">');
        htp.print('<FIELDSET>
                     <LEGEND> Select the maps you wish to display </LEGEND>');
      FOR n IN 1 .. par_map_list.COUNT
      LOOP
      FOR var_map_list IN cur_map_list (par_map_list (n))
      LOOP
    htp.print('       <UL>
                       <LI>
                        <LABEL FOR = "WRMF'||
                                      var_map_list.web_raster_map_id||'">
                         <INPUT type = "checkbox"
                                id = "WRMFB'||
                                      var_map_list.web_raster_map_id||'"
                                name = "WRMFB'||
                                        var_map_list.web_raster_map_id||'"
                                value = "'||var_map_list.web_raster_map_id||'"
                                />
                                 Map title: '|| var_map_list.map_title||'<BR>
                                 Sheet number: '||var_map_list.map_sheet_number||'');
                        htp.print('</LABEL>
                       </LI>
                      </UL>');
        END LOOP;
      END LOOP;
         htp.print('</FIELDSET>');
         htp.print('<p>
                     <INPUT TYPE = "submit"
                            NAME = "Display&nbspselected&nbspmaps"
                            VALUE = "Display selected maps" />
                      </FORM>');
    htp.bodyClose;
    END PROCCHECKLIST;Thank you for reading. Kind regards
    Tim

    Dear everyone
    I have now resolved the problems I was having with multiple values and checkboxes, thanks to comments in this thread, read large chucks of Oracle PL/SQL Programming by Steve Feuerstein and suddenly realising where I am going wrong in terms of thinking.
    For a start, I when I was dealing with the multiple values, I was trying to get PL/SQL to pass them out. Of course this is done by the action part of the input form. Although I have not done much web coding, I did know about this. However because I was so engrossed in trying to understand how multiple values work, I didn't relate the two ideas. I even mind mapping the problem and still didn't get it.
    I also did not think to change my the action from post command to get, so that I could see what was coming out. However that would not have made too much of a difference because the other problem I had was related to where sub programmes were declared. The function which received the values was privately declared, and not in the package spec. This meant the web browser could not find the function as that can only make use of the programmes declared publicly.
    Once I made these changes, as well as correcting other minor typing mistakes, the values passed through as expected. The only other mistake I made was to include the name option after the submit input type. In my case I did not need to submit the value of that button. The revised code is as follows. In this version I replaced the function with a procedure that simply prints the checkbox values to screen. I have also made the input form action get, instead of post, so that the values can be seen in the web browser address bar:
    create or replace
    PACKAGE MAPSITE AS
    PROCEDURE MAPS;
    PROCEDURE PROCCHECKLIST
    (par_check_list IN OUT OWA_UTIL.IDENT_ARR
    PROCEDURE PROCDISPLAY
    (maplist IN OUT OWA_UTIL.IDENT_ARR);
    END MAPSITE;
    create or replace
    PACKAGE BODY MAPSITE AS
    --Global variables--
    gvar_mapviewer_host VARCHAR2(56) := 'http://tiger.iso.port.ac.uk:7785/mapviewer/omserver';
    gvar_proc_host VARCHAR2(56) := 'http://tiger.iso.port.ac.uk:7785/www/geg50160';
    gvar_xml_request VARCHAR2(100) :='?xml_request=<?xml version="1.0" standalone="yes"?>';
    --Main calling programming--
    PROCEDURE MAPS AS
    empty owa_util.ident_arr;
    BEGIN
    PROCCHECKLIST (empty);
    END MAPS;
    --create checkboxes--
    PROCEDURE PROCCHECKLIST
    (par_check_list IN OUT owa_util.ident_arr
      AS
       CURSOR cur_map_list IS
        SELECT MT.map_title,
               MI.map_id,
               OMSN.map_sheet_number_id,
               WRMF.web_raster_map_id
         FROM MAP_TITLE MT,
              MAP_INFO MI,
              MAP_SHEET_NUMBER OMSN,
              WEB_RASTER_MAP_FILE WRMF
          WHERE MI.map_title_id = MT.map_title_id
          AND   MI.map_id = OMSN.map_id
          AND   WRMF.map_id = MI.map_id
          AND   WRMF.map_sheet_number_id = OMSN.map_sheet_number_id;
    BEGIN
    htp.htmlOpen;
    htp.headOpen;
    htp.headClose;
    htp.bodyOpen;
    htp.print('<FORM METHOD = "post"
                     ACTION = "'||gvar_proc_host||'.mappackage.procdisplay">');
        htp.print('<FIELDSET>
                     <LEGEND> Select the maps you wish to display </LEGEND>');
      FOR var_map_list IN cur_map_list
      LOOP
    htp.print('       <UL>
                       <LI>
                        <LABEL FOR = "WRMF'||
                                      var_map_list.web_raster_map_id||'">
                         <INPUT type = "checkbox"
                                id = "WRMFB'||
                                      var_map_list.web_raster_map_id||'"
                                name = "maplist"
                                CHECKED = "' ||
                                           par_map_list ||'"
                                value = "'||var_map_list.web_raster_map_id||'"
                                />
                                 Map title: '|| var_map_list.map_title||'<BR>
                                 Sheet number: '||var_map_list.map_sheet_number||'');
                        htp.print('</LABEL>
                       </LI>
                      </UL>');
        END LOOP;
         htp.print('</FIELDSET>');
         htp.print('<p>
                     <INPUT TYPE = "submit"
                            VALUE = "Display selected maps" />
                      </FORM>');
    htp.bodyClose;
    END PROCCHECKLIST;
    ---PROCDISPLAY PROCEDURE---
    PROCEDURE PROCDISPLAY (maplist IN OUT owa_util.ident_arr)
    IS
    BEGIN
    FOR n IN 1..maplist.COUNT
    LOOP
      htp.print('Checkbox value i.e. var_map_list.web_raster_map_id is: ' ||maplist(n)||'
    <P>');
    END LOOP;
    END PROCDISPLAY;
    END MAPSITE;Kind regards
    Tim

  • Getting issue while running the SP - wrong number or types of arguments in

    CREATE OR REPLACE PROCEDURE TestSPForOracle
    (cv_1 IN OUT SYS_REFCURSOR)
    AS
    BEGIN
    DELETE FROM tt_abc;
    INSERT INTO tt_abc (SELECT * FROM tblPrdCatMstr_TT);
         OPEN cv_1 FOR
    SELECT * FROM tt_abc;
    END;
    above mentioned sp code compile with warning, and when I try to run this SP getting below error -
    ERROR at line 1:
    ORA-06550: line 1, column 7:
    PLS-00306: wrong number or types of arguments in call to 'TESTSPFORORACLE'
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    Here I already created a temp table using below code -
    CREATE GLOBAL TEMPORARY TABLE tt_abc
    AS (
    SELECT *
    FROM tblPrdCatMstr_TT
    Any suggesstions?
    Edited by: 835891 on Feb 11, 2011 3:20 AM

    In that case we need to write all SPs again in the oracle mannerOf course, otherwise why do the migration.
    In my opinion, it's an utter waste of time and money migrating to Oracle if you're not going to accomodate the fundamental differences between different vendors and also play to their relative strengths.
    You can get what you've done to work.
    The issue is how you're calling it probably - you've not answered that question above.
    But it's crazy not to migrate away from temp table usage. It really is.
    Just do a search on the forum:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=sql+server+temp+table&objID=f75&dateRange=lastyear&userID=&numResults=15&rankBy=10001

  • HT4623 After I updated it asked me what numbers I want receive  messages from. Clicked on wrong number now I get messages sent from my husbands phone how do I turn that off?

    After upgrading my phone it asked what numbers I want to receive messages from. Clicked wrong number now I get husbands messages. How do turn that off?

    settings - message - imessage - off, then turn it back on and see if it lets you put your number in.

  • Wrong number of type of args to dbms_aq.listen

    Has anyone had trouble with the argument list for dbms_aq.listen. We've just go AQ going, having no trouble with enqueue and dequeue. However, when supplying what SEEM to be the right arg types for LISTEN (a table of aq$_agent, a binary int, and an aq$_agent for out) oracle gives us wrong number of type of arguments for call to
    DBMS_AQ.LISTEN (we're running 8.1.7).
    Sorry I'm at home and code is at work. But, just wondering if anyone else has had trouble with this.
    thanks

    The code would probably look like the following... where my_dequeue is my dequeue
    procedure.
    declare
    agent sys.aq$_agent;
    qlist dbms_aq.aq$_agent_list_t;
    begin
    qlist(1):= sys.aq$_agent(NULL, 'aqlis.qt1_queue1', NULL);
    qlist(2):= sys.aq$_agent(NULL, 'aqlis.qt2_queue4', NULL);
    dbms_output.put_line('Listening on' &#0124; &#0124;
    ' qt1_queue1, qt2_queue4');
    dbms_aq.listen(qlist, 0, agent);
    dbms_output.put_line('Message in Queue :- ' &#0124; &#0124; agent.address);
    my_dequeue(agent.address);
    dbms_output.put_line('');
    end;
    /

  • Exception has occurred during data insertion ... Wrong number of parameters

    I am using an ADO dataflow source and an ADO dataflow destination to move data from a table on an IBM iSeries DB2 database to another IBM iSeries DB2 database on another machine.  The connection managers for source and destination both use .Net Providers\Odbc
    Data Provider with the Data Source Specification being ODBC connections specified on the Windows Server 2008 r2 machine hosting bids.  All the test connections work...so far so good.
    Issue is when I execute the control flow task the rows get picked up from the source DB2 database no problem but it fails on the insert to the destination DB2 table...The progress tab specifies the exceptions...
    [ADO NET Destination [601]] Error: An exception has occurred during data insertion, the message returned from the provider is: ERROR [07002] [IBM][System i Access ODBC Driver]Wrong number of parameters.
    [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PROCESSINPUTFAILED.  The ProcessInput method on component "ADO NET Destination" (601) failed with error code 0xC020844B while processing input "ADO NET Destination Input" (604). The identified
    component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running.  There may be error messages posted before this with more information about the
    failure.
    I put a data viewer on the data flow connection and the records I expect are  getting picked up and look ok. I checked to make sure the source and destination tables have the same number of columns in their record layout and identical data
    types and they look fine.
    Could someone kindly tell me whats going wrong?  Does the error message indicate that some of the columns are getting dropped from the dataset before the insert?
    Thanks much in advance for any help, Roscoe

    Hi Roscoe,
    Glad to hear that you have found the root cause. So, the issue occurs because numeric values with no decimal cannot be inserted into the Decimal data type column in the DB2 table. In SSIS, data type Decimal of DB2 database is mapped to data type DT_NUMERIC.
    To address the issue, you can do a data conversion for the column in question to define its precision and scale such as DT_NUMERIC(9,2) by using the Data Conversion Transformation before the ADO NET Destination.
    Regards,
    Mike Yin
    If you have any feedback on our support, please click
    here
    Mike Yin
    TechNet Community Support

  • Imessage changed my phone number after the ios7 update

    after the ios7 update imessaging has changed my number to some weird 7 digit number with a +1 (1) infront of it. if someone txts my actual phone number the message wont deliver.. i have reset everything on the phone multiple times and have did alot of troubleshooting for this and nothing seems to work. i went to the apple store and they said to call the techs.. i did that before i even went to the store and they couldnt do anything for me. if anybody has any ideas on how to fix this please help! thank you

    Hi mdfrommo,
    You can't change it back by going to Settings>Phone, and then by clicking on your number at the top? It should take you to a screen that will allow you to delete what is there and type your own number in.
    Cheers,
    GB

  • PLS-00306: wrong number or types of arguments in call to 'PAYROLL_MAIN'

    Hello All,
    i have created below package to extract people data. i am calling below package throug CP ( paramter are form_date and to_date )but
    getting error like PLS-00306: wrong number or types of arguments in call to 'PAYROLL_MAIN'
    i am calling main procedure : PER_PAYROLL_XIR_PKG.PAYROLL_MAIN ( form_date ,to_date)
    please help me to solve below error
    ----PER_PAYROLL_XIR_PKG.PAYROLL_MAIN :=
    CREATE OR REPLACE PACKAGE BODY APPS."PER_PAYROLL_XIR_PKG"
    AS
    procedure payroll_main (in_from_date IN date , in_to_date IN date , out_err_msg OUT varchar2 ) is
    thanks
    Edited by: 981527 on Feb 9, 2013 2:35 AM
    Edited by: 981527 on Feb 9, 2013 2:35 AM
    Edited by: 981527 on Feb 11, 2013 9:14 PM

    Hi
    Your package procedure has 3 parameters (2 in, 1 out) but your call implies only 2 parameters
    I think it's always best to use 'named notation' for specifying parameter values, e.g. package.procedure (param1 => value1, param2 => value2, param3 => value3);
    That way, you can be sure which values are going to which parameters
    Clive

  • Username column in dba_users PLS-00306: wrong number or types of arguments

    Can someone please help me understand what's going on here? I need to drop items in a few schemas, but I can't get the username column to work for some reason.
    SQL> begin
    2 for v_username in (select username from dba_users) loop
    3 dbms_output.put_line(v_username);
    4 end loop;
    5 end;
    6 /
    dbms_output.put_line(v_username);
    ERROR at line 3:
    ORA-06550: line 3, column 1:
    PLS-00306: wrong number or types of arguments in call to 'PUT_LINE'
    ORA-06550: line 3, column 1:
    PL/SQL: Statement ignored
    SQL> desc dba_users;
    Name Null? Type
    USERNAME NOT NULL VARCHAR2(30)
    USER_ID NOT NULL NUMBER
    PASSWORD VARCHAR2(30)
    ACCOUNT_STATUS NOT NULL VARCHAR2(32)
    LOCK_DATE DATE
    EXPIRY_DATE DATE
    DEFAULT_TABLESPACE NOT NULL VARCHAR2(30)
    TEMPORARY_TABLESPACE NOT NULL VARCHAR2(30)
    CREATED NOT NULL DATE
    PROFILE NOT NULL VARCHAR2(30)
    INITIAL_RSRC_CONSUMER_GROUP VARCHAR2(30)
    EXTERNAL_NAME VARCHAR2(4000)
    SQL>

    Ms_Margaret wrote:
    Can someone please help me understand what's going on here? I need to drop items in a few schemas, but I can't get the username column to work for some reason.
    SQL> begin
    2 for v_username in (select username from dba_users) loop
    3 dbms_output.put_line(v_username);
    4 end loop;
    5 end;
    6 /
    dbms_output.put_line(v_username);
    ERROR at line 3:
    ORA-06550: line 3, column 1:
    PLS-00306: wrong number or types of arguments in call to 'PUT_LINE'
    ORA-06550: line 3, column 1:
    PL/SQL: Statement ignored
    SQL> desc dba_users;
    Name Null? Type
    USERNAME NOT NULL VARCHAR2(30)
    USER_ID NOT NULL NUMBER
    PASSWORD VARCHAR2(30)
    ACCOUNT_STATUS NOT NULL VARCHAR2(32)
    LOCK_DATE DATE
    EXPIRY_DATE DATE
    DEFAULT_TABLESPACE NOT NULL VARCHAR2(30)
    TEMPORARY_TABLESPACE NOT NULL VARCHAR2(30)
    CREATED NOT NULL DATE
    PROFILE NOT NULL VARCHAR2(30)
    INITIAL_RSRC_CONSUMER_GROUP VARCHAR2(30)
    EXTERNAL_NAME VARCHAR2(4000)
    SQL>what datatype is V_USERNAME?

  • I am not receiving imessages to my phone number

    Since moving to iOS 6 I have found that other iphone users are unable to send an iMessage to my phone number. If a message is sent to my email address, it appears on all my divices. If sent to my phone number, it goes nowhere so I am receiving SMS messages from other iphone users or their send is failing altogether. Even though I have set it up on my ipad to do so, iMessages sent to my phone number aren't coming up there either. I have tried a hard reset of the phone and turning imessage off, then on again.

    Hey Chris gate!
    Here is an article for you that will help you troubleshoot this issue with your Messages:
    iOS: Troubleshooting Messages
    http://support.apple.com/kb/ts2755
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • IMessage not recognizing phone number but instead email. Fix?

    Other iMessage users are getting my email address and not my phone number. What's wrong?

    So what I had to do was sign out of messages and facetime on all of my mobile devices. Then I started signing back in on my phone and then iPad. I think there might have been something with the recent update that caused everything to sign out of iMessage with the phone number. But yeah, just sign out of everything and sign back in.

  • IMessages go through to a specific contact using an iPod while signed into a different iMessage account on an iPad, but iMessages do not go through using my main iMessage account or iPhone number. Have I been blocked?

    I have a friend who uses an iPod to iMessage me and about two nights ago, my messages to him from my iPhone were no longer listed as delivered and then I started getting the message "Contact is unavailable. This person cannot be reached by iMessage at this time."  I have my main iMessage email and phone number linked to my iPhone. I decided to try messaging him from an iPad that only has my iMessage email linked to it, and the iPad gave me a message saying his email is not linked to an iMessage account. After that, I tried ANOTHER iPad. This one runs iOS 5 and has a separate iMessage email linked to it and the messages were not listed as delivered, but they did not give me a failure message. I unlinked my main iMessage email from my phone and linked the secondary iMessage email to it. I still got the first message about the contact being unavailable when I attempted to send a message from my iPhone. Then, I messaged him again from the iPad running iOS 5, and the message I sent showed up on my iPhone and was listed as delivered. Is it possible this friend has blocked me? He has not messaged me for two days. I was under the impression a block would simply result in my messages being listed as delivered, not that the contact would be unavailable or that his email is not linked to an iMessage account. Is there any way to force my iPhone to send messages to him using only my iMessage email and not cell phone number?  Is this actually a fluke and he has deleted his iMessage account, but the iPad running iOS 5 did not recognize that? But why would my iphone list the messages as delivered then?

    After much research went with Comcast. Package includes 12mbs, phone service, all premium channels, 2 HD dvrs, 1 HD receiver. After promos end I will be paying more, but I'm getting more. Customer service before purchase and installation phenomenal. I actually set up order over phone instead of online because of the customer service. No complaints about Direct TV, but canceeling them also because from having to shop for new Isp resulted in this. My speedtest now says I am 85% faster than most of the U.S. I am very happy. I would consider my verizon problem solved. Oh, free router also.

Maybe you are looking for

  • How to make TM start a NEW backup

    Since January and updating to 10.5.6 (not sure if that had anything to do with it), my iMac had been freezing up and required me to manually power off and on, at first a few times a week, later increasing to several times a day. I suspected a HD fail

  • Create ABAP Report  for  Infoprovider

    Could anyone tell me Function module to fetch Infoprovider(s) for creating ABAP report on. The report should provide: Input: - Infoprovider(s) - Date-range: default: last 6 months Output: - data which is shown in the requests tab as described before,

  • How many sessions and how many screens in a session can open

    max no of screens in each session?

  • Sort open items without +/- sign

    Hi SAP Experts, i would like to display the open items without +/- sign when i will try to sort. it is possible in edit options in while clearing. but when i will try to display the open items i can not get that option. i have tried with t.code - fb0

  • I want to change the Legacy assest data through as92

    Hello  Sap Gurus I want to change the legacy Assest data for my client. While Changeing its give  error that Transfer the data or close the Year. year 2005 is closed. In Assest data Transfer , In date Parameters given data is 31-03-2007. For 2006 Dep