How to delet a "no contents" message

I have received three emails with "no content" but cannot delete them as they do not activate the delete symbol, can anyone tell me what to do?  Thanks

Try turning the account off and on : Settings > Mail, Contacts, Calendars , then tap the account on the right, slide Mail to 'off', exit settings and go back into the Mail app, and then go back to Settings and slide Mail back to 'on'
If that doesn't work then try closing the Mail app via the iPad’s taskbar : from the home screen (i.e. not with the Mail app 'open' on-screen) double-click the home button to bring up the taskbar at the bottom of the screen, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
Also do a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

Similar Messages

  • How to delete the complete contents of database table ? should be empty !!

    Hi Guys,
    I have requirement where i have delete the contents of database table..i have make it empty (no records at all) and then i have to fill it with the records from the excel sheet.
    I can upload data from the excel sheet.
    Please tell me how to delete the complete contents of the database table ??
    Regards
    Rahul

    hi ,
    just write like this,
    delete from <database table>.
    commit work.
    sample code, here edpar is database table.
    delete from edpar." FROM TABLE g_tab_delete.
      call function 'DB_COMMIT'.
      loop at g_tab_edpar into g_wa_edpar.
        insert into edpar values g_wa_edpar.
        if sy-subrc  eq 0.
          move-corresponding g_wa_edpar to g_wa_edpar1.
          append g_wa_edpar1 to g_tab_edpar1.
        else.
          move-corresponding g_wa_edpar to g_wa_edpar2.
          append g_wa_edpar2 to g_tab_edpar2.
        endif.
      endloop.
    that's all it works.
    reward points if helpful.
    regards,
    seshu.

  • How to delete 'crm_order_maintain' FM raised messages in WebUI

    Hi Experts,
       I want to delete messages based on conditions in 'do_prepare_output' method. How to delete 'crm_order_maintain' FM raised messages in WebUI
    Thanks & Regards,
    Nitish

    Hi Dharmakasi,
       Thanks a lot for your reply. I have implemented logic in Badi also. After deleting message in badi even thou  again i am getting error message, transaction in display mode. That's the reason i am deleting error message in bap component. Please find the below badi logic.
    Thanks & Regards,
    Nitish
    * Get Log Handle(s)
         CALL FUNCTION 'CRM_MESSAGES_GET_LOG_HANDLES'
           IMPORTING
             et_log_handle = lt_log_handle.
         LOOP AT lt_log_handle INTO ls_log_handle.
           CALL FUNCTION 'CRM_MESSAGES_SEARCH'
             EXPORTING
               iv_log_handle  = ls_log_handle
             IMPORTING
               et_msg_handle  = lt_msg_handle
             EXCEPTIONS
               appl_log_error = 1
               error_occurred = 2
               OTHERS         = 3.
           IF sy-subrc EQ 0.
             LOOP AT lt_msg_handle INTO ls_msg_handle.
               CLEAR: ls_message.
               CLEAR: ls_msg_info.
               CLEAR: ls_msg.
               CLEAR: lv_ref_object_text.
               CALL FUNCTION 'CRM_MESSAGES_GET_MSG_INFO'
                 EXPORTING
                   is_msg_handle           = ls_msg_handle
    *             IV_GET_CALLER_NAME      =  TRUE
                 IMPORTING
                   es_info                 = ls_msg_info
                   es_msg                  = ls_msg
                   ev_ref_object           = lv_ref_object_text
                 EXCEPTIONS
                   not_found               = 1
                   wrong_context_structure = 2
                   data_error              = 3
                   OTHERS                  = 4.
               IF sy-subrc EQ 0.
                 MOVE-CORRESPONDING ls_msg_info TO ls_message.
                 MOVE-CORRESPONDING ls_msg      TO ls_message.
                 INSERT ls_message INTO TABLE et_message.
               ENDIF.
             ENDLOOP.
           ENDIF.
         ENDLOOP.
         CLEAR: ls_message.
         LOOP AT et_message INTO ls_message WHERE object_name = 'SERVICE_OS'
                                              AND ref_kind    = 'B'
                                              AND msgty       = 'E'
                                              AND msgid       = 'CRM_SERVICE_OS'
                                              AND msgno       = '121'.
           MOVE: ls_message-log_handle TO es_msg_handle-log_handle,
                 ls_message-msgnumber  TO es_msg_handle-msgnumber,
                 ls_message-ref_object TO lv_guid_ref.
           APPEND es_msg_handle TO et_msg_handle.
         ENDLOOP.
    * Reading Item details
         IF lv_guid_ref IS NOT INITIAL.
           CALL FUNCTION 'CRM_ORDERADM_I_READ_OW'
             EXPORTING
               iv_guid        = lv_guid_ref
             IMPORTING
               ev_header_guid = lv_header_guid
             EXCEPTIONS
               item_not_found = 1
               OTHERS         = 2.
           IF sy-subrc EQ 0.
             CALL FUNCTION 'CRM_ORDERADM_I_READ_OB'
               EXPORTING
                 iv_header           = lv_header_guid
               IMPORTING
                 et_orderadm_i_wrk   = lt_orderadm_i
               EXCEPTIONS
                 item_does_not_exist = 1
                 error_occurred      = 2
                 OTHERS              = 3.
             IF sy-subrc EQ 0.
               CLEAR: ls_orderadm_i.
               LOOP AT lt_orderadm_i INTO ls_orderadm_i.
                 REFRESH: lt_osset_n,
                         lt_refobj_n.
                 CLEAR: ls_osset_n,
                        ls_refobj_n,
                        ls_service_os.
                 CALL FUNCTION 'CRM_SERVICE_OS_READ_OB'
                   EXPORTING
                     iv_ref_guid          = ls_orderadm_i-guid
                     iv_ref_kind          = 'B'
                   IMPORTING
                     es_srv_osset_wrk     = ls_service_os
                   EXCEPTIONS
                     entry_does_not_exist = 1
                     error_occured        = 2
                     parameter_error      = 3
                     OTHERS               = 4.
                 IF sy-subrc EQ 0.
                   MOVE: ls_service_os-osset[] TO lt_osset_n[],
                         ls_service_os-ref_guid TO ls_serial-ref_guid.
                   READ TABLE lt_osset_n INTO ls_osset_n INDEX 1.
                   IF sy-subrc = 0.
                     lt_refobj_n[] = ls_osset_n-refobject[].
                     READ TABLE lt_refobj_n INTO ls_refobj_n INDEX 1.
                     IF sy-subrc = 0.
                       MOVE ls_refobj_n-serial_number TO ls_serial-serial_no.
                       MOVE ls_refobj_n-serial_number TO lv_sernum_n.
                       APPEND ls_serial TO lt_serial.
                     ELSE.
                       READ TABLE lt_refobj INTO ls_refobj INDEX 1.
                       IF sy-subrc = 0.
                         MOVE ls_refobj-serial_number TO ls_serial-serial_no.
                         MOVE ls_refobj-serial_number TO lv_sernum_n.
                         APPEND ls_serial TO lt_serial.
                       ENDIF.
                     ENDIF.
                   ENDIF.
                 ENDIF.
               ENDLOOP.
               SORT lt_serial BY serial_no.
               IF lt_serial[] IS NOT INITIAL.
                 LOOP AT lt_serial INTO ls_serial WHERE serial_no EQ lv_sernum_n.
                   CALL FUNCTION 'CRM_STATUS_READ_OW'
                     EXPORTING
                       iv_guid       = ls_serial-ref_guid
                     IMPORTING
                       et_status_wrk = lt_status
                     EXCEPTIONS
                       not_found     = 1
                       OTHERS        = 2.
                   IF sy-subrc EQ 0.
                     READ TABLE lt_status INTO ls_status WITH KEY object_type = 'BUS2000160' " Complaint Item
                                                                  kind = 'B'
                                                                  user_stat_proc = 'CRMCOM_I'.
                     IF sy-subrc EQ 0.
                       IF ls_status-status EQ 'E0004'.
                         lv_comp = lv_comp + 1.
                       ELSE.
                         lv_ncomp = lv_ncomp + 1.
                       ENDIF.
                     ENDIF.
                   ENDIF.
                 ENDLOOP.
                 IF lv_comp GE 1
                AND lv_ncomp LE 1.
                   IF et_msg_handle[] IS NOT INITIAL.
                     LOOP AT et_msg_handle INTO es_msg_handle.
                       CALL FUNCTION 'BAL_LOG_MSG_DELETE'
                         EXPORTING
                           i_s_msg_handle = es_msg_handle
                         EXCEPTIONS
                           msg_not_found  = 1
                           log_not_found  = 2
                           OTHERS         = 3.
                       IF sy-subrc EQ 0.
    * Implement suitable error handling here
                       ENDIF.
                     ENDLOOP.
                   ENDIF.
                 ENDIF.
                 CLEAR: lv_comp, lv_ncomp.
               ENDIF.
             ENDIF.
           ENDIF.
         ENDIF.

  • How to delete all my personal messages from my iphone..... even after deleting from inbox it is available in the search iphone option that is siri

    how to delete all my personal msg from my iphone..... even after deleting it fom inbox it is available in the siri option

    As stated in your first post, restore your phone as new.

  • How to delete the Table Contents before inserting records into SQL table ?

    Hello Experts,
            I have a scenario where in I have to Pick up some records from SAP RFC & insert into SQL table.
            i know how to do this scenario but the proble with this is before inserting we first have to ZAP the SQL table & insert a new records. One more twist is The Triggering is happening from SAP side with Sender RFC. If this would have been from SQL Side i could have written a Stored Procedure/ Trigger & could have called this before the SENDER JDBC communciation channel picks up the Triggering event from SQL side.
    So how to do this scenarioin XI, First deleting all the Records of SQL table & then inserting the new reocrds. without using the BPM.
    Regards,
    Umesh

    hi umesh,
    you can achieve this by writing SQL query in message mapping level..
    refer this link:
    http://help.sap.com/saphelp_nw04/helpdata/en/b0/676b3c255b1475e10000000a114084/frameset.htm
    regards.

  • How to delete iTunes u content

    Not really sure where the content is being stored. Seemed like when I deleted a course where downloads actually happened, no space was freed up. Very confusing organization of content.

    i answered my own question: you have to delete it from the itunes u icon on your iphone!
    even though it shows up in your videos tab... and you cannot delete videos like you delete images that u take with your phone....

  • How to delete contents from more than 1 table

    How to delete the entire contents from more than 1 table in a single query.
    It is very urgent,
    Thanks in advance
    John

    Goto SE11 ->Open table ->Utility ->data base utility ->delete database table.
    BTW, Do not do it.
    Thanks,
    Ashish

  • How to delete email messages

    How to delete all old email messages that I neglected to delete after reading.  Is there a easier way than editing and then selecting the delete button for each email message?

    There is no easy way. Perhaps you could use your computer or use web mail of your account supports this - these methods would be faster (for IMAP accounts).

  • How to Delete Logic Pro X Additional Content

    Is there Anyone out there who knows how to delete the additional content on Logic pro X once it has been installed.
    These are the following things I have tried:
    I have tried uninstalling Logic pro X - No result - The space the additional content took up is still taken up. (by what I don't know)
    I have read every possible article on the matter - Still No Result -
    I have tried using AppCleaner to delete Logic Pro X - No Result - Logic pro X is deleted but the additional content still remains.
    I even went as far as using my time machine to back up the information on my laptop - to see if it would back up the 50GB worth of date - Guess what - It did back it up. but its no where to be found on my HD.
    The additional content takes up 50GB+ worth of space and for some reason won't GO AWAY!!!
    SOMEONE HELP ME PLEASE!!

    I have read every possible article on the matter - Still No Result -
    A simple google search for " Where is Logic Pro's additional content stored " brought up the info almost instantly.....
    The content is stored in multiple locations...
    Where is Logic pro additional content stored?
    Thanks to CCT & viento10 for the info......

  • Delete only one text message at a time w/o deleting entire conversation?

    Does anyone know how to delete only one text message at a time without having to delete the entire conversation? The only two options I get are "clear conversation" or "cancel."
    HP   Windows XP  

    That's the same option I get too. It seems to me I recall seeing somewhere that you could delete individual messages in a thread but I don't remember where.
    It seems silly to limit deletions to only the entire conversation since with most phones you can delete individual messages.

  • How to delete large amounts of mail

    I NEED more memory on my iPad, and have too many e-mails, and need to know how to get rid of them at once

    Try this and see if it works for you.
    http://www.conferencesthatwork.com/index.php/technology/2014/01/how-to-delete-al l-mail-messages-from-iphoneipad-in-one-step/

  • SRM7 shopping cart item clipboard management - how to delete/remove

    In SRM 7.0, after adding a shopping cart item, in "Item Overview" you can use button "Copy" to "Copy selected item to clipboard".   If there is an item stored in clipboard, the button "Paste" is enabled and user can "Paste clipboard contents".
    My question is how to delete the clipboard content in "Item Overview"?  Unlike clipboard in "Account Assignment", there is a button for user to delete clipboard content.

    Hi K,
    I think this question was auto marked as Answered by SCN.  There is no answer at the moment.
    May be you can open a new thread for the same question.
    Regards,
    Donald

  • How to delete all iPad emails.

    I would like to select all emails and delete at one time

    How to Delete Email on the iPad
    http://ipad.about.com/od/iPad_Guide/ss/How-To-Delete-Email-On-The-Ipad.htm
    How to Mass Delete Emails from iPhone and iPad Inbox (with video)
    http://suiteminute.com/how-to-mass-delete-emails-from-iphone-and-ipad-inbox/
    How to delete ALL mail messages from iPhone/iPad in one step
    http://www.conferencesthatwork.com/index.php/technology/2014/01/how-to-delete-al l-mail-messages-from-iphoneipad-in-one-step/
     Cheers, Tom

  • I get a message Debug Error:[Exception... "Node was not found" code: "8" nsresult: "0x80530008 (NS_ERROR_DOM_NOT_FOUND_ERR)" location: "chrome://ffebayhot/content/lib/Extension.debug.js Line: 366"] using Vista. I don't understand how to delete the "ebay

    Every time I try to use google for a search, I get the following error msg. Debug Error:[Exception... "Node was not found" code: "8" nsresult: "0x80530008 (NS_ERROR_DOM_NOT_FOUND_ERR)" location: "chrome://ffebayhot/content/lib/Extension.debug.js Line: 366"]. I saw the solution provided for MS XP, but not for Vista. Also, while I saw the solution, I need more explicit instructions on how to "delete the ebay extension".
    == This happened ==
    Every time Firefox opened
    == When I try to load google from Firefox, I get the error message, Debug Error:[Exception... "Node was not found" code: "8" nsresult: "0x80530008 (NS_ERROR_DOM_NOT_FOUND_ERR)" location: "chrome://ffebayhot/content/lib/Extension.debug.js Line: 366"]

    Tools->Add-ons->Extensions
    At the top of the Firefox window, click on the Tools menu and select Add-ons. The Add-ons window will appear.
    In the Add-ons window, select the Extensions panel.
    Select the add-on you wish to uninstall.
    Click the Uninstall button. When prompted, click Uninstall to confirm.
    Then restart Firefox.
    Read here:
    [[Uninstalling add-ons|#How to uninstall extensions and themes|Uninstalling extensions]]

  • HT5731 My iPad says I cannot download any more because I am out of memory.  I purchased space in cloud and still get same message.  I do not know how to delete shows to open space.  Can you help?  Thanks.

    My iPad says I cannot download any more because I am out of memory.  I purchased space in cloud and still get same message.  I do not know how to delete shows to open space.  Can you help?  Thanks.

    Your iPad is physically out of storage space. Purchasing space in iCloud dosen't magically give your actual iPad more physical  storage space.
    You need to delete content off of your iPad.
    https://discussions.apple.com/thread/5122738?start=0&tstart=0
    http://m.youtube.com/watch?v=mZdBQoE37FA&desktop_uri=%2Fwatch%3Fv%3DmZdBQoE37FA

Maybe you are looking for

  • MIssing functionality outlook add-on: choosing a partner for an appointment

    Hi, Excuse me for my bad english. in outlook add-on when we link Business partner to activity, its impossible to access quickly to the partner. My customer has a lot of partners (300+), it's very long to choose a partner in the list (we just can slid

  • Blank sender/subject spam - how to get mail to rec as junk?

    I'm getting hammered again in every mailbox with these blank sender/subject/body spam emails. I asked about a year ago and the word was to buy a spam filter software program. I'd rather get a script to do this. I recall I had one which I can't find.

  • Default role in OIM

    Hi, In OIM, when a new user is created, he will be given All Users role.Where this configuration is done in OIM. Please let me know. Thanks.

  • BP Sales area data can't be replicated without the tax classification saved

    Hi Gurus, We're facing a funny problem here. Our project is using CRM 7.0 integrate with ERP 6.0. CRM is acting as a leading system, which means BP would be created from CRM only and flows to ECC. At the very beginning, we were not able to replicate

  • Help on SAP OGSD

    Dear friends, I would like to know how the table /ICO/MO_KLIMIT is getting updated after sales order created. Problem is the updation is not uniform - means it is not updating for all the sales orders. Even if it is updating for all the sales orders,