Send button not working on sms after upgrade

My send is no longer working on sms after i upgraded. I have done factory setting and still not working . Any ideas of anything else i can try ? frustrated

I have same problem. Can open message. As if keyboard is frozen.
Unable to type then send. Also, tried shutting off preview.

Similar Messages

  • Send button not working when text message

    When I was texting message with my friends, all of sudden I can't type the respond message unless I have to quit and try to text my friend again. The problem is the box where you typed your message is gray out and "Send" button is inactive or gray out. This problem occurs when I upgraded my iphone 4s to iOS 6.1
    Please help.

    After Update today, SEND button no longer activates keyboard. I tapped message window area and that activated the keyboard. SEND button worked to send message. (Not sure how to describe that "message window area", but its the area where your message shows as you type.)

  • Web Query (.iqy) not working in Excel after upgrade to 11.1.1.6

    After upgrade 11.1.1.5 to 11.1.1.6, the Web Query (.iqy) does not work. After open the .iqy file in Excel, entered the user and password, it only pulls in "PK" in one cell, instead of the expected analysis report. This was working in 11.1.1.5 before upgrade.
    Does anyone know how to correct this issue? Is this a bug in 11.1.1.6, or required some new configuration settings?
    Thanks in advance.
    DX

    A bug has been registered.
    Bug 14040587 - OBIEE 11.1.1.6: OPENING WEB QUERY (.IQY) FILE IN EXCEL SHOWS JUNK CHARACTERS.

  • "Send" button not working in Mail

    Picked up Leopard on an iMac two days ago. Some of the time when I compose a new email, Mail works fine--I click "send" once I'm through typing and out it goes.
    Other times--like this morning--I try to send an email and the "send" button is transparent and does not click. This is not a server issue. I tried adding the recipients to my address book in case there was some weird thing where that had to be done first. But to no avail--the "send" button won't click, nor will the "send" command within the toolbar or drop-down menus--and so I have no clue how I'm supposed to send this email if the button to do it is not working. Help!

    Unfortunately, the SMTP and outgoing mail settings aren't the issue. The issue is that the "send" button is visible but un-clickable. I tested sending mail from all of my accounts and it works just fine--sometimes. Other times, I try to reply to an email or send out a new one and the "send" button does not allow me to send anything at all.

  • Simple Query working on 10G and not working on 11gR2 after upgrade

    Hi Folks,
    This is the first time i am posting the query in this Blog.
    I have a small issue which preventing the UAT Sigoff.
    Simple query working fine on 10.2.0.1 and after upgrade to 11.2.0.1 its error out
    10.2.0.4:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    COUNT(*)
    1
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001;
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1;
    ATTRIBUTE1
    00001
    11.2.0.1:
    =====
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=1
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1=00001
    ERROR at line 1:
    ORA-01722: invalid number
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='1';
    no rows selected
    SQL> SELECT COUNT(*) FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    COUNT(*)
    1
    SQL> select ATTRIBUTE1 FROM APPS.HZ_PARTIES HP WHERE ATTRIBUTE_CATEGORY= 'PROPERTY' AND ATTRIBUTE1='00001';
    ATTRIBUTE1
    00001
    ++++++++++++++++++++++++++++++++++++++++++++++
    SQL > desc APPS.HZ_PARTIES
    Name Type
    ======== ======
    ATTRIBUTE1 VARCHAR2(150)
    ++++++++++++++++++++++++++++++++++++++++++++++
    Changes:
    Recently i upgraded the DB from 10.2.0.4 to 11.2.0.1
    Query:
    1.If the type of that row is VARCHAR,why it is working in 10.2.0.4 and why not working in 11.2.0.1
    2.after upgrade i analyzed the table with "analyze table " query for all AP,AR,GL,HR,BEN,APPS Schemas--Is it got impact if we run analyze table.
    Please provide me the answer for above two questions or refer the document is also well enough to understand.Based on the Answer client will sigoff to-day.
    Thanks,
    P Kumar

    WhiteHat wrote:
    the issue has already been identified: in oracle versions prior to 11, there was an implicit conversion of numbers to characters. your database has a character field which you are attempting to compare to a number.
    i.e. the string '000001' is not in any way equivalent to the number 1. but Oracle 10 converts '000001' to a number because you are asking it to compare to the number you have provided.
    version 11 doesn't do this anymore (and rightly so).
    the issue is with the bad code design. you can either: use characters in the predicate (where field = 'parameter') or you can do a conversion of the field prior to comparing (where to_num(field) = parameter).
    I would suggest that you should fix your code and don't assume that '000001' = 1I don't think that the above is completely correct, and a simple demonstration will show why. First, a simple table on Oracle Database 10.2.0.4:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;A select from the above table, relying on implicit data type conversion:
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001Technically, the second row should not have been returned as an exact match. Why was it returned, let's take a look at the actual execution plan:
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statementNotice that the VARCHAR2 column was converted to a NUMBER, so if there was any data in that column that could not be converted to a number (or NULL), we should receive an error (unless the bad rows are already removed due to another predicate in the WHERE clause). For example:
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberNow the same test on Oracle Database 11.1.0.7:
    CREATE TABLE T1(C1 VARCHAR2(20));
    INSERT INTO T1 VALUES ('1');
    INSERT INTO T1 VALUES ('0001');
    COMMIT;
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    C1
    1
    0001
    SELECT
    FROM
      TABLE(DBMS_XPLAN.DISPLAY_CURSOR(NULL,NULL,NULL));
    SQL_ID  g6gvbpsgj1dvf, child number 0
    SELECT   * FROM   T1 WHERE   C1=1
    Plan hash value: 3617692013
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |       |       |     2 (100)|          |
    |*  1 |  TABLE ACCESS FULL| T1   |     2 |    24 |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(TO_NUMBER("C1")=1)
    Note
       - dynamic sampling used for this statement
    INSERT INTO T1 VALUES ('.0001.');
    SELECT
    FROM
      T1
    WHERE
      C1=1;
    SQL> SELECT
      2    *
      3  FROM
      4    T1
      5  WHERE
      6    C1=1;
    ERROR:
    ORA-01722: invalid numberAs you can see, exactly the same actual execution plan, and the same end result.
    The OP needs to determine if non-numeric data now exists in the column. Was the database characterset possibly changed during/after the upgrade?
    Charles Hooper
    Co-author of "Expert Oracle Practices: Oracle Database Administration from the Oak Table"
    http://hoopercharles.wordpress.com/
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • Send button not working on Droid

    I have a customer trying to sign a document using a Droid. They can fill in the signature but the Send button is not working.

    Hi,
    Please can you contact support , https://echosign.zendesk.com/hc/requests, and provide them with as much detail on the issue as possible including any screenshots. They can then investigate this for you.
    Thanks,
    Jat

  • In MSS PCR Send button not working

    Hi,
    We are trying to implement ESS/MSS 1.0 SP 8 on EP 7.0 SP 11 and ECC 6.0. We are using the application on https. SSL has been configured and is working fine. We are using PCR under MSS, which also runs on https. SSL for ADS has been configured and we are able to see the PCR pdf forms. Now when we try to edit the form, and click Send button (Review Form and Save phase) its going on to the Completed page, rather remains in an un ending state. The Completed page is not showing up. We tried to use the application on http and everything is working fine.
    Please help.
    Regards,
    Piyush.

    Solution:
    When you configure HTTPS make sure you dont get a popup window of the certificate and even if you get all the three items (like trusted name, expiry etc) should be green and no warning.
    Regards,
    Piyush.

  • Calender not working in 4s after upgrading to IOS 8 and and after synching with my new iphone 6  , calender not working in 6  as well. Please help.

    Hi my old phone 4s after upgrading to IOS 8, Calender is not working. Just a blank page and it quits automatically. I bought a new iphone 6+ and after synching , it also showing the same issue.

    There's no way a software update causes a hardware issue.  This is just coincidental.  Bring your phone to Apple for evaluation and possible replacement.

  • Fullscreen mode not working in aperture after upgrading to Lion

    I recently upgraded to Lion and Aperture is not working at all in Full screen mode. I have followed the ideas in the forum (unchecking the preferences for spaces) and nothing has worked. I have reinstalled the Aperure update and this did not work either. Any other ideas?
    regards, Jim

    Jim,
    Try this:
    if Aperture is running, quit;
    control click Aperture's icon in the dock;
    in the menu that pops up, navigate to the Options sub-menu;
    make sure "None" is selected in the "Assign To" section at the bottom.
    Mine was originally set to "This Desktop", probably as a hold-over from Snow Leopard, where I had Aperture assigned to its own Space. After I updated to Lion, Aperture was misbehaving in full screen mode until I changed it to "None".
    I hope this helps...
    - Bob

  • BINARY SEARCH does not work as before after upgrade

    We recently upgraded from HRSP 26 to HRSP 40 as well as similar upgrades in non-HR areas on our ECC 6.04 system.  We've been in SAP since 1998, and have a lot of old custom programs which were written when we were still new at ABAP.  In a few, we put records into an internal table sorted the table, maybe added a few more records to the table, and did a READ BINARY SEARCH.  Granted, this is not correct, adding records to a table after it is sorted.  But these programs have worked for more than 10 years and now, since our upgrade, the READ BINARY SEARCH does not always find a record where it did before the upgrade.
    So this is mostly just a heads-up.  If you are missing data in reports after upgrading, this might be the issue.  Also I am wondering if anyone has experienced this.
    Heads-up!
    Janice Ishee

    Hi Janice,
    you did not give any context. Please note that it is a popular error to think that a SELECT statement will fetch data in order of the primary key of the table - although it happens quite frequently. So always first sort, then binary search.
    Probably not related to upgrade.
    Regards,
    Clemens

  • Ipod not working in car after upgrade

    After an upgrade ipod touch shows unreadable in my volvo s80 2010

    cjwj, downgrading the iOS is not supported by Apple and the method you outlined does not work. When restoring an iPod, iTunes contacts Apple and will only allow restoring using the latest available update file.
    flcolvin7, Contact Volvo and get them to issue a firmware update for the car.

  • TS3274 Send button not working

    I'm trying to send a message but send button is not working. It's always either light blue or gray. Help!

    Make sure both parties have enabled iMessage
    Settings>Messages>iMessage>On

  • IPhone does not work in car after upgrading to os5

    After upgrading to os5 my build in hands free device does not work properly anymore, lot of noise, disconnects, connects in general not usable anymore.
    How to fix this?

    Does your aftermarket solution connect to the Nano's headphone jack or to the dock connector?
    If it connects to the headphone jack I would suggest buying an iPhone headphone adapter. I'm expecting mine to arrive via FedEx tomorrow so that I can use my iPhone in the car with a cassette adapter.
    Hope this helps.

  • Google Talk not working with Messages after upgrade to Mountain Lion

    After upgrading to Mountain Lion, I'm no longer able to use Google Talk with the new Messages App.  It worked fine on iChat, but now I cannot enable the account.  When I try to check the enable box, it immediately unchecks itself and nothing happens.  Any suggestions?

    Welcome to Apple Communities
    Open Finder, press Option key and select Go > Library. Open Preferences and delete com.apple.imessage.bag.plist and com.apple.imservice.iMessage.plist

  • Send button not working in imessages

    I'm trying to send a test message to myself in imessages.  I type the message but the 'send' button never gets enabled

    Try here:
    iOS: Troubleshooting Messages
    Also, I am not sure you can send one to yourelf.

Maybe you are looking for

  • After reinstalling OS 10.5 I can't log into my iMac PPC isight

    Yesterday booted from a firewire drive, erased my imac's harddrive and reinstalled os 10.5.  Then I used the migration assistant to restore all my settings from a time machine back up.  Once it was all finished it booted to a login screen but wouldn'

  • Adobe reader 8.0

    Operating OS X.4.9 - have installed adobe reader 8.0 When I open a pfd with adobe is only stays open for a few seconds then closes on its own. Any ideas??

  • MacPro17-SL-Photoshop CS2 quitting

    I was able to use Photoshop CS2 and suddenly after I installed a few fonts it suddenly would not  work anymore. I open the program, create a window but the minute I choose anything, even its preferences it suddely quits giving me the option to send a

  • POP UP IN BSP MVC-NO java script code

    1.when ever I click on one Button in BSP application(MVC) ,One pop up should trigger with Yes or NO options. 2.If user selects Yes I need to proceed further. I can do it through javascript code in page layout,AS I am doing changes in Standard applica

  • How do I open eps files in Photoshop touch

    Looking to open up some eps files from my creative cloud into photoshop touch