Message problem with number delete

Hello,I have a concern which I did not see not indexed in the topics.
Several contacts of my repertoire changed phone number, I delete the old and write the new. But when I want to write a message to them the old numbers are always available and is displayed others +........ in the list. Why ? I want one and not many numbers.
Thank you in advance and excuse my English I am French.

what is the error  ?

Similar Messages

  • HT5137 I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    I made a purchase with my debit card on The Simpson Tapped out game, And now my game won't open. It just kicks me out every time I click on it. How do I fix this problem with out deleting my app?

    Personally, I would never use a debit card online, for security reasons.  If your card gets hacked its your money that is stolen.  At least with a credit card it is the card providers money that is stolen.
    Anyway,  I would delete the app and re-install.  If you paid for the app in the first place you will be able to re-install free of charge.  Also, the app should allow the in-app purchase to happen again as it should recognise that you have already purchased it previously.
    Finally, it might be that the 3G doesnt have as much ram as more recent models of iphone and you may have applications running in the background that are preventing the app to function with the in-app purchase unless you shut down any apps eating all you memory that are running in the background.  Shut-down these apps (and the simpson tap out app) by exiting to your home screen and double-tapping the home button to show what apps are running in the background.  press and hold any of the open apps until it starts shaking.  close all the apps down.  exit then re-launch the app.
    good luck.

  • HT1349 Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.

    Hi all,I have just purchased new iphone but have difficulty in completing the itunes download with message : problem with Windows installer package. A program run as part of the setup did not finish as expected.
    Would appreciate help...its driving me up the wall!!

    Perhaps let's first try updating your Apple Software Update.
    Launch Apple Software Update ("Start > All Programs > Apple Software Update"). Does it launch and offer you a newer version of Apple Software Update? If so, choose to install just that update to Apple Software Update. (Deselect any other software offered at the same time.)
    If the ASU update goes through okay, try another iTunes install. Does it go through without the errors this time?

  • Trying to upgrade to 10.6 so my iPhone could synch...I'm getting this error message "Problem with this Windows (XP) Installer package.  A program required for this install to complete could not be run."  Any ideas?

    I had iTunes 10.2.1.1 but needed to upgrade to 10.6 so my iPhone could synch...I'm getting this error message "Problem with this Windows (XP) Installer package.  A program required for this install to complete could not be run."  Any ideas?

    This has been fixed.  Answer is that I needed to go to "Apple Software Update" and repair it.  (From my Control Panel).

  • Problems with cascading delete with entities

    I have a problem with cascading delete. I have two entities, Notebook and Note. One instance of Notebook can have several instances of Note in a Collection< Note >. The two entities are joined with a join table notebook_note that have two columns, the PK from the table of Notebook and Note. Note is not aware of the relation.
    From the user interface some elements of the collection<Note> can be added or deleted. I want to delete an element of that collection and make it persisted on the DB.
    If I add some Note elements to the collection and then I EntityManager.merge(notebook) (see public void persistNotebook() code below), I have all them persisted on the DB.
    However, if I delete some preexisting Note elements, after the merge I found deleted only the corresponding rows from the join table notebook_note BUT the rows in table Note, that was belonging to the deleted instance of Notebook, are NOT removed.
    Till now I found a way to do that (see code UserBean below), but I think that there is a simpler and so better way to do that! I hope to receive some suggestions!!
    @Entity
    public class Notebook implements Serializable {
    private static final long serialVersionUID = 1L;
    private String userName;
    private Collection<Note> notes;
    public Notebook() {
    public Notebook(String userName) {
    this.userName = userName;
    notes = new ArrayList<Note>();
    @Id
    public String getUserName() {
    return userName;
    public void setUserName(String userName) {
    this.userName = userName;
    @OneToMany(cascade = {CascadeType.ALL}, fetch = FetchType.EAGER)
    public Collection<Note> getNotes() {
    return notes;
    public void setNotes(Collection<Note> notes) {
    this.notes = notes;
    @Entity
    public class Note implements Serializable {
    String note;
    public void setNote(String note) {
    this.note = note;
    public String getNote() {
    return note;
    @Stateful
    public class UserBean implements UserRemote {
    private static Logger log = Logger.getLogger(UserRemote.class);
    @PersistenceContext(unitName = "etourism-ejbPU")
    private EntityManager em;
    &hellip;&hellip;
    @TransactionAttribute(TransactionAttributeType.REQUIRES_NEW)
    public void persistNotebook() {
    NotebookDao notebookDao = new notebookDao(em);
    notebookDao.merge(notebook);
    em.flush();
    public void deleteNotebookNote (&hellip;.) {
    &hellip;..
    //noteFound is the note I want to delete from the Collection<Note>
    notebook.getEvents().remove(noteFound);
    persistNotebook(); //see method above
    *//I have also to explicitally delete the associated note!!!*
    *NoteDao noteDao = new NoteDao(em);*
    *noteDao.remove(noteDao.read(noteFound.getId()));*
    public void addNotebookNote(&hellip;..) {
    //add new note to the collection<Note> of the Notebook
    Note newNote = new Note(&hellip;);
    notebook.getNotes().add(newNote);
    persistNotebook();
    Where:
    public class NotebookDao extends JpaDao<Notebook, String> {
    &hellip;&hellip;
    public abstract class JpaDao<T, PK extends Serializable> implements IDao<T, PK> {
    &hellip;..
    public void remove(T entity) {
    getEntityManager().remove(entity);
    public void merge(T transientObject) {
    getEntityManager().merge(transientObject);
    }

    Thank you gimbal2 for your answer.
    You are right saying that a single Note could be bound to multiple notebooks, when using a join table, so the cascade cannot be done automatically by JPA.
    However, in my case, a single Note is bound only to one Notebook, so I would like to drop the join table (as you rightly suggest): however when I declare in the Notebook, a relation 1:N in this way ...
    @OneToMany(cascade = {CascadeType.ALL}, fetch = FetchType.EAGER)
    private Collection<Note> notes;
    ... the join table is automatically created during the deploy.
    Sorry, I am a beginner in EJB3. What kind of relational mapping annotation should I use to have a straight 1:N relationship that doesn't generate a join table?
    I think that it should be better to avoid to modify the relationship (es. cascade option) directly in the created db tables and let the logic be declared in the entity code definition: am I right?
    Waiting for your suggestion ...
    thank you very much
    Enzo
    Edited by: contini on May 22, 2009 5:37 AM

  • Retaining deleted messages - problem with preference settings (?)

    I have set up my Mailbox Behaviours to
    1) automatically "move deleted message to the Trash mailbox" (this option is selected)
    and
    2) Store deleted messages on the server (IMAP)
    and
    3) Permenantly erase deleted messages when "One month old"
    BUT... for some reason Mail keeps deleting my messages after approx on week. I have tried changing the settings various ways, but can't seem to overcome this problem. There do not appear
    to be any restrictions or rules on my IMAP server side that would be over-riding the MAIL prefs.
    ANYONE have a suggestion or know what my problem is?

    I believe it’s the server, not Mail, who is permanently deleting those messages. Try turning OFF Store deleted messages on the server, so that deleted messages are stored locally instead, or create a new mailbox on the server and do Mailbox > Use This Mailbox For > Trash on it. Manually move messages to the mailbox that was previously being used to store deleted messages on the server (which should appear now with a generic folder icon in the mailbox list) and see whether the messages are still being deleted from there after one week like before, even though as far as Mail goes it’s now a mailbox like any other.

  • Message "problem with photo with the filename '(null).

    I get the following message "There is a problem with the photo with the filename '(Null).'  The full resolution version of this photo either cannot be located or is corrupt.  Please replace the photo or delete it from your book."  This message appears after place the order and it starts to submit the pages of the book.  I get as far as page 9 of 60.  I have open the pictures using photoshop and have renamed them and saved them as a tif format.  Any suggestions?

    annefromtallahassee wrote:
    I get the following message "There is a problem with the photo with the filename '(Null).'  The full resolution version of this photo either cannot be located or is corrupt.  Please replace the photo or delete it from your book."  This message appears after place the order and it starts to submit the pages of the book.  I get as far as page 9 of 60.  I have open the pictures using photoshop and have renamed them and saved them as a tif format.  Any suggestions?
    I believe that you have gone into the iPhoto library and made changes using photoshop - is that correct
    If so then you have trashed your iPhoto library and must put it back exactly as it was - loading a backup is the easiest (probably the only) way
    NEVER make any changes to the content or structure of the iPhoto library using the finder or any program that is not fully iPhoto aware
    LN

  • Messages problem with ios 6

    Hi
    I have problem with messages related to bank or groups or unviersity . I can see the preview of last message but when I enter for example Bank I can't see any Previous messages . Some messages contain imp information . Can u fix this problem soon as possaible please .

    I'm having the same problem with texts showing as unread. I click on the conversation and then click on back to go to the conversations and after about a second the texts go back to unread. It shows as 2 unread texts from my wife. I deleted  5 messages from the conversations, and the dot went away for a second and came right back and said two unread texts again! I had her send me a text and it went to 3 unread texts. Clicked into the conversation then back out and it went back down to 2 and the stupid blue dot came back! I've rebooted the phone and that doesn't help either.

  • Keyboard problems with Enter, delete, backspace, and right/left arrows

    In some applications, such as Yahoo and this message block right now !!, when composing a message, the arrow keys and delete, backspace keys become non responsive. Various ones will work on a random basis.
    I am getting double "carriage returns" also. Maybe this is why in Omegle when I press ENTER, it will not post a chat message; it will bring up a scroll box and for me to post the comment, I have to use the mouse to click ENTER.
    I have changed batteries in my keyboard, uninstalled /reinstalled Firefox. I have checked the above websites in Chrome and other browsers, and there are no problems.
    This has happened before, I don't recall what the solution was or if it just went away.'''
    Affected sites -- at least these
    http://us.mg6.mail.yahoo.com/neo/launch?ncrumb=Fx5R4O7ccqb&.rand=1041364415&nmig=yes#
    http://omegle.com/
    https://support.mozilla.com/en-US/questions/new?product=beta&category=b2&search=Keyboard+problems+with+Enter%2C+delete%2C+backspace%2C+and+right%2Fleft+arrows&showform=1

    PROBLEM SOLVED: http://forum.archlinux-br.org/viewtopic.php?id=1257
    Solution posted on Brazilian Archlinux forum. Credits to user "920608".
    [cache]
    /etc/xorg.conf
    Section "Files"
             #RgbPath "/usr/X11R6/lib/X11/rgb"
    EndSection
    Section "ServerFlags"
               Option "AutoAddDevices" "False"
    EndSection
    C'ya

  • Boot message: problem with hard drive detected. Slow loading of windows 7

    Good Day
    I am having a problem with my hard drive, everytime it boots these days it starts with a message: Warning: a problem with the hard drive has been detected, followed by an extremely slow loading of windows. then once in windows it gives me Anothet message
    the messsage says hard drive failure imminent you should back up you data etc.
    My specs are:
    Intel core 2 duo e8400 3.0 ghz
    4 gig ddr3 transcend
    1 tb seagate 7200.12
    giga byte nvidia 9800 gt 1 gig ddr3
    Please help lots of data.

    Another option:
    Take your hard drive out and slave it into another KNOWN WORKING PC.
    Back-up your data immediately. Slow boot usually indicates that the drive is going to die. (Check your warranty!)
    Then, run "chkdsk /r" from the host PC to check the failing drive. (It is good to match OSes if you can.)
    MCSE: 6771498

  • Problem with number-fields in csv-Export-Files

    Hello,
    the export with the csv option works fine and our users like this export-function.
    But Unfortunatelly we have some problems with the exported number fields. In my region I defined the field with a format mask.
    On the screen it looks fine but when I change to csv the values are exported as text-values.
    So in excel the columns are shown with left alignment.
    When I try to change the format in excel to number, excel change the column type but not the value inside.
    On this account we cannot use the sum-function and the display of the value is wrong (alignment).
    Which possibilities do I have to resolve that problem?
    Thanks in advance
    Ulrike

    I have the same issue - Anyone any ideas on how to export currency values in a report to excel as numbers?

  • Sent messages problem with 6021

    I have brand new 6021 - the memory of the phone is by default half empty.
    In the settings I have enabled the option of save sent messages.
    However, this does not happen. Simply, sent messages are not saved. Up to only one message is saved - on the sim card. After that, the phone simply does not register sent messages.
    With the inbox, everything works fine.
    I tried reset to factory settings, and other options, but unfortunately nothing is working.
    ANy idea how can I activate this function?? And what might be the cause of the problem?
    Thanks in advance,

    Those message usually indicates, that your in an area with a weak wifi or cellular data signal.  I speak from experience as this is the only I see that message pop up on my phone.

  • F150 and problem with job deleted

    Hi all,
    I have a problem with F150: we have made a dunning session,
    but the batch job was manually stopped and than deleted.
    Now I don't know how to delete the dunning run (all delete
    option are unabled), and if we execute another session the customer
    are blocked by this dunning run.
    Someone know how to delete it?
    Thanks in advance
    Alessio

    Hi,
    Can u check whether Dunning Notices - Delete Dunning run disabled?
    If no dunning notice has been printed - try to restart the session thru SM35.
    Regards,
    Sridevi
    <i>Assign points, if useful</i>

  • TS3899 I HAVE IPAD AIR HAVING PROBLEMS WITH EMAIL DELETING AFTER A SHORT TIME WITHOUT COMMAND CAN YOU HELP

    Q. I have an IPAD air having problems with my email deleting after a short while without command.

    I've had issues like this before.
    I ended up having to call my provide to reset the connection, which worked for a while, then quit. i then took it into my provider for a new sim card and had the connection re-established again. I haven't had issues since.
    hopefully for you resetting the connection with your provider will do the trick and a new SIM card wont be nessesary.

  • Problem with "Number Generation Program'

    Can someone please help me with my Number Generation Program. I am new to java and I am at a sticking point. I want to develop a program that will do the following:
    1. Accept a set of numbers (6 numbers per set).
    2. Remove duplicate numbers.
    3. Generate unique set of numbers (6 numbers per set) using only the numbers that were originally entered.
    example: -> numbers entered: 12 33 45 51 7 10
    5 34 33 8 11 21
    5 6 13 9 10 51
    duplicate numbers removed: -> unique numbers
    12 33 45 51 7 10
    5 34 8 11 21 6
    13 9
    Final result: -> generate unique set of numbers only using the above unique 14 numbers
    5 6 7 8 9 10
    5 6 7 8 9 11
    5 6 7 8 9 12
    5 6 7 8 9 13

    I am having a problem with the following:
    1. accepting the numbers
    2. removing duplicate numbers
    3. generating the number sequence sets
    As I mentioned earlier, I am new to java. I just completed my first java class and I wanted to develop this program.

Maybe you are looking for

  • Error while resubmit the transaction in Oracle 10g B2B

    Hi All, I am facing the below error while resubmitting the transactions bash-3.00$ java oracle.tip.adapter.b2b.data.ReSubmit Exception in thread "main" java.lang.NoClassDefFoundError: oracle/tip/adapter/b2b/data/ReSubmit bash-3.00$ Regards sekhar

  • Screen distorted after sleeping or start up

    When I wake my computer up from sleep the screen  used to, at times, be distorted in that the words would be widened.  I would put it back to sleep and usually it would fix itself but not always.  Sometimes I would have to restart it or completely sh

  • Start new app within Remote app session - how ?

    Hello everyone, In our company we happy use Remote app on our Windows 2008/Windows 2008 R2 servers (around 20 managed MS and other apps) togheter with CRM/ERP/BI. Now we need to incorporate some newly developed for us specialized application in Silve

  • Headsets for Lumia 900 (and lumia 1520)

    Hi I currently own a Lumia 900 which I mostly use with Plantronics Bluetoth - and it works fine. Now I try to use it with my Razer Kraken Pro and it does not work at all - very low and scatchy noise - and if I try with my wifes headset (an iPhone com

  • Displaying reports in web dynpro view

    Hai all,           Iam working on a project in webdynpro which is used for the newly joined employees to fill their personal info.After they do that I need to display the reports to the Admin to Process the request for generating employee id.I have n