[Nokia 5700] Marking and unmarking messages: stran...

Cheers,
When I press the # just ONCE, and I scroll down using the joystick the phone marks every message I come across. When I press the # key again, it UNmarks every message I come across.
Holding down the # key and scrolling down does not do a thing...
I've already tried a factory reset and a hard reset but to no avail. I am running the latest firmware V03.83.1 dated 22-06-07.
I'm absolutely sure it didn't behave like this earlier. I can't remember when exactly I updated the firmware so I can't tell whether it is a bug in the new firmware.
Does this sound familiar to anyone?
Many thanks for your help,
Jeroen

soft reset *#7370#
Backup data first.
Previous Phones: 6600, 7610, 6230, 6230i, 1100, 1112, N70, N73, N95, N95 8GB, 5800XM, 5230, C5, iPhone 3GS, SE Xperia X10, N900, N8, SE Xperia Arc
Current Phones: Nokia N9, iPhone 4

Similar Messages

  • Possible to mark and unmark every line of the list (ALV

    Hi Experts,
    I would like to develop stock compensation report for a client my requirement as below.
    It must be possible to mark and unmark every line of the list (ALV). On top of the list a button (Create Sales Document) is needed. Pressing this button starts the creation of the sales documents for every line of the list which is marked. The button is only active when the simulation flag is initial!
    Since this is a working list it must be possible to double-click on each line and see the line item details. The line item details should be shown as a ALV list as well. The list contains the following fields:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Material number (VBRP-MATNR)
    u2022     Material description (VBRP-ARKTX)
    u2022     Old Price List (determination see above)
    u2022     New Price List (determination see above)
    u2022     Compensation Value List (determination see above)
    u2022     Compensation Quantity List (determination see above)
    u2022     New Compensation Quantity List (determination see above)
    After pressing the creation button a sales document for every marked line is created. When this is finished a log is issued for every line. The log shows the following information:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Sales document number or error message if no document is created
    How to create check boxes for eachline in the ALV output for mark or unmark purpsoe and how to create create sales document button in the output and how to create the sales order process . please help me out.
    Moderator message: more "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Mar 29, 2011 4:32 PM

    hi
    i have a code for drop down list use this
    this code is for selection-screen deop-down list yu can add this same code in ALV
    REPORT  ZCHETANA_PRAC10                         .
    Type-pools: VRM.
    data: name type vrm_id,
          list_month type vrm_values,
          list_year type vrm_values,
          value type vrm_value.
    selection-screen: begin of block b with frame.
    parameter: p_year(10) type c as listbox visible length 10,
               p_month(10) type c as listbox visible length 10.
    selection-screen: end of block b.
    at selection-screen output.
    value-key = 'JAN'.
    value-text = 'JAN'.
    append value to list_month.
    value-key = 'FEB'.
    value-text = 'FEB'.
    append value to list_month.
    value-key = 'MAR'.
    value-text = 'MAR'.
    append value to list_month.
    value-key = 'APR'.
    value-text = 'APR'.
    append value to list_month.
    value-key = '1998'.
    value-text = '1998'.
    append value to list_year.
    value-key = '1999'.
    value-text = '1999'.
    append value to list_year.
    value-key = '2000'.
    value-text = '2000'.
    append value to list_year.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        ID                    = 'P_MONTH'
        VALUES                = list_month
    EXCEPTIONS
      ID_ILLEGAL_NAME       = 1
      OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'VRM_SET_VALUES'
      EXPORTING
        ID                    = 'P_YEAR'
        VALUES                = list_year
    EXCEPTIONS
      ID_ILLEGAL_NAME       = 1
      OTHERS                = 2
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    start-of-selection.
    write:/ p_year,
           p_month.

  • Mark and unmark every line of the list in alv

    Hi experts please help me for the following requirement.
    The report must issue a list with the following fields:
    u2022     Sold-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018AGu2019)
    u2022     Name of sold-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018AGu2019  ADRC-NAME1)
    u2022     Ship-to (VBPA-KUNNR u2013 VBPA-PARVW = u2018WEu2019)
    u2022     Name of ship-to (VBPA- ADRNR u2013 VBPA-PARVW = u2018WEu2019  ADRC-NAME1)
    u2022     Total compensation Value per customer (sold-to) and ship-to
    It must be possible to mark and unmark every line of the list (ALV). On top of the list a button (Create Sales Document) is needed. Pressing this button starts the creation of the sales documents for every line of the list which is marked. The button is only active when the simulation flag is initial!
    Since this is a working list it must be possible to double-click on each line and see the line item details. The line item details should be shown as a ALV list as well.
    Please help me how to put to check box or column for selection the particular line in the output . how to put the button create slaes document button and also how to process when Pressing  button starts the creation of the sales documents for every line of the list which is marked.
    please help me out for the requirement.
    Moderator message: "spec dumping", please work yourself first on your requirement.
    Edited by: Thomas Zloch on Mar 29, 2011 4:29 PM

    Hi Have you used.
    The  totals_text(60) type c,       " text for 1st col. in total line from type group slis.
    It is alvailable in  begin of slis_layout_alv_spec1,
    Try it out.

  • Exclamation mark and the message "itunes could not find your song file

    Hi everyone. I've tried doing a search but couldn't find this exact problem. I hope i'm not about to annoy everyone with a question that has been asked a thousand times before.
    my problem is that every now A/some song file(s).that are already in my itunes library and played fine and synced with iphones ipod app fine. well sometimes I get this little exclamation mark on A/some song(s) in the library and the message "itunes could not find your song file would you like to locate it" and when i do and it always seems to be in what itunes find box locates first anyway.......( I'm paraphrasing...........i forget exactly what it says)........the funny thing is when i try and locate the files for itunes they are exactly where they are supposed to be........ and i've been able to put the mp3 back into the itunes library in the past, but now a certain mp3 will not show up in itunes library or play. like i said I can locate it fine, i've never renamed any folders or mp3's. other mp3's in this folder play fine , but i've had exclamation marks on some of them in the past, it seems that i know of 2 folders in my music folder that always have this problem with the mp3's in them at ramdom .
    does anyone know why itunes is doing this?................it happens sometimes with downloaded music and sometimes with ripped music................sometimes a single track and sometimes just a few single tracks .........it's begining to become slighty annoying........
    any help would be most appreciated.

    Helpful but i was reading some posts and threads about consolidate library and it seems that if the song is not in the itunes library it will not consolidate it.i've had songs in the library that i deleted from the library and i remember getting a message when i do that action if i would like to delete it from the music folder as well ( in other words trash it completly from harddrive or do i just want to delete the song from the library and still keep it in the music folder but i guess those actions have little effect if you didn't have the song in itunes music folder,, but another folder. except for the part that it will remove the song from the library. if there was a way to consolidate your music folder(s) into the itunes folder that would be cool. and still leave your itunes library with out those songs you didn't want in there, but wanted to leave in the music folder.

  • Under message pulldown everything is greyed out except mark and new message

    cant send a message as no send button appears - under massage only new message and mark show - everything else is grey.

    I think you need to enable the toolbar in your write window.
    Start a new message, or use ''Reply'' or ''Forward'' on an existing message. This will open the Write window. There, hold down '''alt''', press '''V''' and select '''toolbars|composition toolbar'''.
    Incidentally, control+enter will send a message.

  • Nokia X2-02 and sending messages from PC from seco...

    Hi,
    I'm wonder if there is a possibility to send SMS message from PC Suite application connedted to Nikia X2-02 from second sim card.
    If I'm doing it from my phone he is asking me which card he should use.
    I would like to have the same ability to select sim card to send sms from PC. Is it possible?
    Right now all the sms messages are sent from first sim cardo only from computer. Please help and thanks in advance.

    Yes I know that can be set in the phone. But it can be done manually and in Sim Manager you can set only the type of service which should be used on selected card. Or manually can select one of the cards.
    So it looks like that PC Suit always selects first sime. The second cannot be used to send sms.

  • TS1368 Yellow triangle with an exclamation mark and the message "This iphone cannot be used because the Apple Mobile Device service is not started.  .

    I HAVE SYNCED MY IPHONE 4 MANY TIMES SUCCESSFULLY.  TODAY WHILE TRYING TO SYNCE MY PHONE, I HAVE AN ERROR MESSAGE WITH A YELLOW TRIANGLE THAT STATES "This iphone cannot be used because the Apple Mobil Device service is not started.
      Can i get some help please?
    Thanks,
    Brian

    I'd start with the following document with that one:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • Buttons to bookmark and unmark the toc

    Hello I am tring to find a way to have a button mark and unmark the TOC so that the user can mark a question on the toc for later review (it doesn't need to remember the mark if the user exits the course).
    I have been trying for days now with no success is there any way to accomplish this?
    Also I am trying to change the o on the question to a square button with A, B and C on them but I cant seem to be able to accomplish this either. Is there a way to create a style (.cps) for a button outside Captivate?
    I am using the latest version of captivate 7.
    Thanks in advance for any help

    On the far left side of the TOC there is a column for bookmarking items.  Your user can just click this spot beside any TOC item to mark it with a small flag icon.  You cannot do this from a button within the course.  But why would you need a button when the user can just click the item in the TOC anyway.
    As for your other issue, it sounds like you're trying to change a radio button Multiple Choice question into a checkbox Multiple Answer question.  Just select the question slide, go to Quiz Options > General and select the Multiple Answers box.

  • How do you 'mark all' mail messages and then delete in Iphone 5?

    I cannot do a mass delete of my emails any more in iphone 5 - how do you get the edit functions back onto the screen once you have 'marked all' the messages?

    As Chgrist1 said, that is how it works. Having looked as how Outlook stores mail, and everything else. It is a wonder anything ever comes out that is useable. PST files are a mess. First thing they do is pull the email apart and store header, body and attachments is three different places.
    You will also find (most likely) that your accounts in Outlook were POP and the default in Thunderbird is IMAP. merging IMAP and POP files and folders is fraught with difficulties and dangers. It would be a brave developer that tried that in an import.
    In the case of IMAP all your mail is one the server, so import is not all that important. However copying a gigabyte or two of of outlook mail into your imap server could exhaust your available message storage space there and cause the import to fail completely.
    So If you want to do what your saying, first confirm that your not using IMAP mail. Otherwise your experience is most likely going to be exceedingly poor.
    If you are using POP mail, then changing the setting in your pop account to cause it to use the global inbox will make a single mail account appear, "Local Folder", with your outlook mail as a sub folder of that.
    Dragging a folder from the imported outlook tree to Local folders is not difficult, as long as you remember that folders hang of other folders, so your dragging them to a parent, not a position on the screen you like.

  • After Loading Lion I now get 5 windows w/ a graphic of a Red Stop sign with an ! mark and the following text message: "DAVE Networking  Dave kernel extensions could not be loaded! Error 71 - Too many levels of remote in path."

    After Loading Lion I now get 5 windows w/ a graphic of a Red Stop sign with an ! mark and the following text message:
    "DAVE Networking 
    Dave kernel extensions could not be loaded! Error
    71 - Too many levels of remote in path."
    I have uninstalled DAVE and used Clean App to remove trace elements of program, however I still get the message and am unable to eliminate the error messages.  When I click OK the message goes away briefly and then comes back up.
    Any solutions would be great.

    Dave,
    Thanks....What I did was load the free eval version of Dave 9.0 and then used the uninstaller which must have deleted the kernel giving me the problem. 
    Thanks for the response.
    Razor

  • I got home today and got a message on Messages or IMessage and the Messages app would not open i restarted my computer and it had a question mark as the icon for the app. Help!?!?! What does this meen how can i prevent further damage or fix damage delt

    I got home today and got a message on Messages or IMessage and the Messages app would not open i restarted my computer and it had a question mark as the icon for the app. Help!?!?! What does this meen how can i prevent further damage or fix damage delt

    Is this what you see when you start up your MBP?
    http://support.apple.com/kb/ts1440
    Ciao.

  • Mark appears a message on my voice, and I have no voicemail  How to cancel this Article?

    Mark appears a message on my voice, and I have no voicemail
    How to cancel this Article?

    If you're simply referring to adding a mail account that uses an IMAP server, the short answer is yes, it will work. What did you mean by default email? You can setup multiple mail accounts so you shouldn't have to worry about a default mail account. To setup additional accounts (or delete for that matter), you can go to Settings>Mail, Contacts, Calendar>Select the Account (Delete) or Add Account.
    What is your mail provider? Often you can contact your IT department, or if it's a common mail server, googling will find the server relatively easily (ie: gmail: 'Google'  'imap server for gmail'). If, by default mail, you mean your Apple ID, yes you can also create an Apple ID that uses an IMAP associated email address. Your Apple ID can pretty much be any email address as long as you have access to it to confirm the account's creation.

  • Nokia 3720 Classic - email and picture messaging o...

    Hi.
    Can anyone tell me what I need to do to get email and picture messaging to work on the 3720c via the Orange network?
    I've spoken to Orange support four times now and the best they can come up with is change the handset for a different one from their shop. This is not an option as they are twice as expensive and don't sell the 3720c.
    I know the 3720c can work on Orange because my mate has his working just fine.
    I've been through the normal setup but keep getting a "no network coverage" error even though I know its fine because my mates is working from the same location.
    I'm seriously considering dumping Orange and moving to a different provider if I can't get this sorted.
    Cheers
    Steve

    Anyone ???  Nobody ???

  • MS Outlook 2010 - Group by subject and show messages which has count of more than four

    Hi there,
    Like everyone I have hundreds of emails hitting me daily. I always wanted these two ways enabled in outlook to reduce my inbox. Can anyone let me know if this is possible, if not MS product team you got a request.
    1) Outlook lets us to group all the messages by subject BUT it doesn't sort by the highest amount messages.
    Ex: Out of 100 messages in inbox, lets say msg A: same subject - 10 emails; msg B: same subject - 5 emails... rest are single subject eamils.
    when i group by subject i would want msg A and msg B to show first, so that i can take action.
    2) Same concept but want to filter only emails which has more than FOUR replies on the same subject
    Thanks for taking look at my questions.

    Just wanted to say hi and check if there is anything else that I can do for you on this problem.If so, please do not hesitate to let me know and I
    will be happy to help.
    Best Regards,
    Steve Fan
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Nokia 5700 Xpress Music RM-230 New Firmware Is Out...

    Hello all!
    Guys I was Searching The Firmware For Nokia 5700 And I HAve Found
    v3.29
    RM-230
    8-8-2007
    Edit: Removed product code information.Message Edited by scousermodman on 24-Sep-2007 11:56 AM
    Nokia 5530 Xpress Music RM-504
    v30.0.009
    31-5-10

    look clearly;
    Nokia 5700
    V 03.27
    12-04-07
    RM-230
    Nokia 5700
    V 03.28
    08-08-07
    RM-230
    So therefore in only a minor update
    If you find my post useful then click on
    Kudos!Nokia N96 (v20.050 / RM-247)
    www.shaysoft.net | Competitions!

Maybe you are looking for

  • How can I sync my iTunes Match covers to my iPhone?

    I have recently found new cover art for many albums and replaced this art in my iMac desktop iTunes 11 files.  However, the new art will not sync to my iTunes Match enabled devices (such as my iPhone or MacBook Air).  I've tried turning Match on and

  • K8T Neo-FIS2R rebate

    I ordered this motherboard near the beginning of this year because it had a mail-in rebate. It's been about 3-4 months since I mailed the rebate form along with the UPC barcode and I haven't received a rebate check . Did anybody else buy this board d

  • Command-period to cancel EXS sample loading: Does this work for anyone?

    Hello everyone, When loading a sample instrument into the EXS, watching with glee as that wonderful progress bar slowly fills up; underneath there is this note: Press "command-period" to cancel. No matter what I do nor how hard I try, I cannot get th

  • I have LR 3.4 & 3.6... Adjustment Brush not working

    I have LR 3.4 & 3.6... The adjustment brush is not working... I see people are having problems with LR 4 and are removing the preferences thing, but I don't see anything about LR 3 with this happening... I have it on my laptop and it doesn't work...

  • Authorization restriction for material group field in MM02 for user role

    Dear All,              My client wants to restrict 'material group' field usage in MM02 for certain users.              How to achieve this task?              Kindly advice Thanks &Regards Thangavel Ganesh