Why this error message with certain texts?

Why do i get this error message only with certain texts?  I have entered only a ten digit number, have deleted conversations and resent messages and still?

Oh, the error message is "
error invalid number please re-send using valid 10 digit mobile number or valid short code."

Similar Messages

  • When I open any web page I get this error message with Firefox 4...Javascript Application Uninstall Set

    When I load web pages with Firefox 4, I get this error message
    Javascript Application Uninstall Set

    When I load web pages with Firefox 4, I get this error message
    Javascript Application Uninstall Set

  • Has anyone encountered this error message with Adobe Camera Raw 6.3 Plug-in?

    Ever since I installed the Adobe Camera Raw 6.3 Plug-in for Elements 8 I get the following error message when I launch Editor:
    "The Application or DLL C:\Program Files\Common Files\Adobe\Plug-Ins\Elements 8 \File Formats\Win 64\Camera Raw. 8 bi is not a valid Windows Image. Please check this against your installation diskette" 
    (As I downloaded the plug-in I don't have the option of checking against the installation diskette as the error message suggests.)
    If I click OK on the error message the launch process re-commences and Editor eventually opens and operates effectively.
    Does anyone have a suggestion about how I might remove this error message? Alternatively, do I run a risk by continuing to simply ignore the error message?
    Thanks
    Kinyo Jim

    Delete the camera raw 8bi file from the File Formats folder.
    Download ACR 6.2 and extract the files.
    Drag the camera raw 8bi file from the download extract folder into the File formats folder.
    C:\Program Files\Common Files\Adobe\Plug-Ins\Elements 8\File Formats\
    If you are using a 64-bit edition of Windows, then move the plug-in file from the unzipped download folder by navigating to:
    C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\Elements 8\File Formats\

  • What program caused this error message with a pic of coins and money bag?

    Today I was running the following programs:
    Mail.app
    TextWrangler
    Safari
    iTunes
    I was composing an email when an error message popped up. It was a small self-contained window with an image of coins and a money bag on the left side and text that read:
    An unexpected error has occurred
    (ValueError: invalid literal for float(): N/A)
    There were 2 buttons, "Quit" and "Continue". Continue was highlighted. Software Update then also popped up. I took screenshots of the message and I then opened up the Activity Monitor and took screenshots of all of the processes running. I would post the images, but I don't know if that is possible on this site. I hit the quit button and there seems to be no problems.
    Anyway, I am very curious about what program, process, or plugin, put up this message, especially since I was not running any program related to finance. Does anyone have any ideas??
    Thanks
    Paul

    OK, so you need to have your pics on a web server, then you can show them here. I will give it a shot. Here is the error message:
    And here are the processes that were running:

  • Does anyone know why this error message appears?.

    I have added some new fields within the BT111H_OPPT component, view 'Details', and they are visible in the BTADMINH context node when in the component browser.  I now need to perform some calculations based on the PROBABILITY field of the BTOPPORTH context node and place the value in one of the newly created fields in the BTADMINH context node. Therefore to me it would seem wise to place this code in the DO_PREPARE_OUTPUT method of the ZCL... controller class.,
    My code looks like so:
    * First, lets get the Probability value held in the BTOPPORTH context node
      lr_ent ?= me->typed_context->btopporth->collection_wrapper->get_current( ).
      IF lr_ent IS BOUND.
        lv_probability = lr_ent->get_property_as_string( iv_attr_name = 'PROBABILITY' ).
      ENDIF.
    * Now get the Potential volume field from the BTADMINH context node and calculate value
      lr_ent ?= me->typed_context->btadminh->collection_wrapper->get_current( ).
      IF lr_ent IS BOUND.
        lv_potvol = lr_ent->get_property_as_string( iv_attr_name = 'EXT.ZZAFL00001X' ).
    The eror message given is:
    CX_CRM_CIC_PARAMETER_ERROR - Entry parameter of method CL_CRM_BOL_ENTITY->GET_PROPERTY contains value EXT.ZZAFL00001X, which is not allowed
    The line pointed to (19)  is actually '  lr_ent ?= me->typed_context->btadminh->collection_wrapper->get_current( ).' .
    Can anyone see what might be causing this issue, because to me it looks okay.
    I added the 'EXT.' to 'ZZAFL00001X' to see if that would make a difference, which it did not and the same error message appears, which is odd. 
    My sanity is in your hands.
    Jason

    I have found the solution at long last!!!.
    When creating the new field(s) using the AET we had been accepting the default field names, like ZZALF0000nn, which we had always done in the past. However this is the first time we've had to manipulate their data via the component workbench. Anyway, as suggested by previous posts I created new fields in the AET (in expert mode) but this time gave the fields my own names, like ZZPOTENTIALVOL, then changed the code in the DO_PREPARE_OUTPUT to use these new fields/attributes and that's it, it all then worked fine. How petty is that?.
    By the way, I removed/deleted the old fields in the AET tool by clicking on the Bin icon and they are now marked as deleted, but there was a message saying that I needed to manual delete these fields. I've done this before but can't recall the transaction that is needed, can anyone help in this matter?.
    Many thanks to all.
    Jason

  • Can you explain this error message with MERGE statement

    Here is the code that gives me headache.
    I give you the description of the two tables involved and the error message I get when I run a simple MERGE statement
    SQL> desc employees
    Name Null? Type
    EMPLOYEE_ID NOT NULL NUMBER(6)
    FIRST_NAME VARCHAR2(20)
    LAST_NAME NOT NULL VARCHAR2(25)
    EMAIL NOT NULL VARCHAR2(25)
    PHONE_NUMBER VARCHAR2(20)
    HIRE_DATE NOT NULL DATE
    JOB_ID NOT NULL VARCHAR2(10)
    SALARY NUMBER(8,2)
    COMMISSION_PCT NUMBER(2,2)
    MANAGER_ID NUMBER(6)
    DEPARTMENT_ID NUMBER(4)
    SQL> desc emp2
    Name Null? Type
    EMPLOYEE_ID NOT NULL NUMBER(6)
    FIRST_NAME VARCHAR2(20)
    LAST_NAME VARCHAR2(25)
    1 MERGE INTO emp2 e2
    2 USING employees e
    3 ON (e2.employee_id = e.employee_id)
    4 WHEN MATCHED THEN
    5 UPDATE SET
    6 e2.employee_id = e.employee_id,
    7 e2.last_name = e.last_name,
    8 e2.first_name = e.first_name
    9 WHEN NOT MATCHED THEN
    10 INSERT VALUES
    11 (e.employee_id,
    12 e.last_name,
    13* e.first_name)
    14 /
    ON (e2.employee_id = e.employee_id)
    ERROR at line 3:
    ORA-00904: "E2"."EMPLOYEE_ID": invalid identifier
    Any responce much appreciated

    Hi,
    Columns going to be updated should not be in 'ON clause' , try to delete the line 6 of your query. By the way, there isno sense to update e2.employee_id = e.employee_id when matched, the equality is already verified.
    Nicolas.

  • Why do I get an error message with certain websites

    Safari and Chrome seem to crash and not load whenever they want to.
    I've tried  changing preferences, rebooting, clearing the catche.
    My HP always works, and loads every page. What's up with the MAC pro? Pretty new to Mac.
    I'm about to set it on fire.

    IhatemyMacbook wrote:
    What's up with the MAC pro? Pretty new to Mac.
    I'm about to set it on fire.
    Since you posted in the Macbook Pro forums, you need to clarify exactly which Mac you have.  Your sig - Macbook, your post is saying Mac Pro -
    No mention of a Macbook Pro.  Did you post in the wrong forum area?

  • Why am I getting this error message with slapconfig? Error 66

    I am restoring this to the same server and from the location where it was backed up.  So it does exist and it mounts when I open it.  So not sure what I am doing wrong.  Thanks.
    This is the command I used to backup.  sudo slapconfig -backupdb ~/Desktop/odbackup but when I try to restore it does this

    I am going to speculate that the file is not simply called odbackup.  It is likely odbackup.sparseimage.  Try:
    sudo slapconfig -backupdb /Users/admin/Desktop/odbackup.sparseimage
    R-
    Apple Consultants Network
    Apple Professional Services
    Author "Mavericks Server – Foundation Services" :: Exclusively available in Apple's iBooks Store

  • [SOLVED] Error message with GDM 2.20-1

    I got this error message with executing GDM 2.20-1 on Arch 64 bit:
    gdm-binary[5740]: WARNING:Didn't understand ' ' (expected true or false
    What does this error means? and how do in fix it? Thanks in advance for helping.
    Last edited by zodmaner (2007-10-14 13:48:31)

    About the gdm error:
    jgc wrote:
    This is caused by the empty values in defaults.conf:
    TimedLogin=
    I'll remove them from the default configuration file soon, they're harmless though.
    About the firefox segfaulting, open a new topic with more information about your problem

  • I just upgraded to the latest edition of firefox for mac and I am getting this error message Textarea Backup] Existing text detected in 'add_comment_text', overwrite with this backup how can I get it to go away?

    I updated to Firefox 8.0 for Mac and when ever I try to log on to Facebook I get this error message Textarea Backup] Existing text detected in 'add_comment_text', overwrite with this backup? and then it says yes and gives you the choice of either canceling or ok and it doesn't go away when you click either button...What is going on?

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

  • Does anyone with a PC/windows get this error message?,,,,,,

    I get this error message every time I open iTunes. "iTunes.exe has been set to run in compatibility mode for an older Version of Windows" It's the first thing that comes up. Although it doesn't affect the application from starting...it's really annoying. I've checked the compatibility mode and it's set off and it's current. When I have my computer check it on it's own it resets it and then I can't open iTunes at all. Any computer genius out there know why this is happening and how to fix it? I've also have installed iTunes about 100 times hoping it would fix the problem but it doesn't.

    Although it doesn't affect the application from starting...it's really annoying. I've checked the compatibility mode and it's set off and it's current.
    Doublechecking ... are any of the boxes in the Compatibility mode tab for iTunes checked at the moment? If so, uncheck them all and see if iTunes will start properly again.
    If the iTunes compatibility tab has no checked boxes whatsoever, also check to make sure that your QuickTimePlayer.exe compatibility tab has no checked boxes whatsoever.
    If nothing is checked for either iTunes or QuickTime, you may be having trouble with an errant registry entry.
    If so, RandomBehavior's post may be of some assistance:
    http://discussions.apple.com/message.jspa?messageID=10397771#10397771

  • I keep receiving a server error message with the new beta version of iMessage.  What can I do to fix this?

    I keep receiving a server error message with the new beta version of iMessage.  What can I do to fix this?

    Ok I have a question.
    Why do you want to use Beta software? Especially since you are having this problem with it?
    Uninstall it and forget about it until it is released as a real piece of software.

  • According to my network provider (Amaysim/Optus) Tethering is enabled, so why do I get this error message "to enable personal hotspot on this account, contact OPTUS"

    According to my network provider (Amaysim/Optus) Tethering is enabled, so why do I get this error message "to enable personal hotspot on this account, contact OPTUS"
    Amysim/Optus support can not help.
    I can not check or change any network settings (no APN settings)
    I have synced phone using latest itunes (10.5.3).
    Phone software is up to date (5.0.1).
    Network settings have been reset.
    SIM card has been taken out and put back in.
    Phone has been switched off/on again.
    Another sim card from virgin works ok (hotspot option is visible and can be turned on/off as required)
    The Amaysim/Optus SIM card can be put into another phone (android) and tethering/hotspot works fine.
    Can anyone provide solution to this nightmare?

    I am having the same issue although i have an iphone 5. I have contacted Live connected numerous times an tried everything imaginable to solve the issue. Is it possibly a handset issue? I cant recieve any help from optus as im with live connected, they cant help me and apple keep telling me to contact your carrier ( live connected). Seems to make me want to switch providers pretty shortly..
    please let me know if you can solve your issue and maybe it can help me too..

  • Recently downloaded latest version of iTunes software, afterwards, while trying to sync iphone with PC received this error message: Unable to Load Resource not found; SyncUICoreLocalized.dll; please advise, thank you

    Recently upgraded PC with latest edition of iTunes (1/30/2014), afterwards, received this error message while attempting to sync iphone with PC: Unable to load, resource not found, SyncUICoreLocalized.dll

    THIS HAS EVERY APPEARANCE OF A SOFTWARE GLITCH BY APPLE ... So first suggestion is NOT to begin reinstalling various software but to await some answer & fix from Apple.  Too many have same problem on various systems, in my view (I am not an Apple rep but have certainly faced many glitches over the years).
    PS - LOTS of Apple software problems these days, including many people having their Contacts shredded.  What's going on with Apple?

  • Why am I getting this error message......."Adobe Reader could not open 'SBA 413.pdf' because it is e

    why am I getting this error message when I try to open a PDF file?  Adobe Reader could not open 'SBA 413.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).

    It's difficult for anyone to say how to fix it. Try getting a new copy of it. Did you download it from a web site, as an email attachment, or something else?
    I donwloaded that form from the SBA web site and it worked fine for me. It is an XFA form created in LiveCycle Designer, but those should work fine with the desktop versions of Adobe Reader. So try downloading it: http://www.sba.gov/sites/default/files/SBA%20413_0.pdf

Maybe you are looking for