Deleting message from Message Handler

Hello,
I want to delete some message that are getting displayed on ECM UI from SAP in the BADI HRECM00_CONSISTENCY.
There are several methods available for adding and getting messages from message handler in class CL_HRPA_MESSAGE_LIST
but there is no method for deleting message from message handler.
Please let me know if any one of you have any idea,how to delete messages from message handler.
Message handler has reference to CLASS CL_HRPA_MESSAGE_LIST in the BADI.
Thank you
Arvind

Hello
In the BADI the messages are not coming in internal table but are in class instance (message_handler).I have got the messages in internal tabe now.But after deleting it this needs to be again added in message handler in such a way that old one are removed and new one are added only.
This is required as message handler will be carrying the message to ECM user interface where it will be displayed.
Currently all the message are going to UI,my requirement is to send only my message to UI.
Thank you
Arvind

Similar Messages

  • Fetching Message from message class into variable

    hello all,
    can anyone please tell me that how can i fetch the message from message class?
    because i have to take that message in one variable and have to pass it in function module.
    regards saurabh.

    Hi,
    DATA : MESSAGE TYPE STRING.
    Select TEXT from t100 into MESSAGE where SPRSL = 'EN' ARBGB = 'YOUR_MESSAGE_CLASS'
    msgnr = 'YOUR_MSGNR'
    or if you want all the messages to fetch in a single query to avoid performance issue
    Select * from t100 into itab where SPRSL = 'EN' ARBGB = 'YOUR_MESSAGE_CLASS'
    Cheerz
    Ram

  • Remove message from message determination in billing docs

    I want to generate an SD billing document ONLY if another message is not determined to the some document.
    I'm determining the billing message type to be printed by Sales Organization.
    I started to send Electronic Invoices to some partners, and I want to Not generate the ZRD0 message to the document if another message (ZRDI EDI document)exists (is determined) for that document.
    Is there any easy way to do this? Is there any user-exit in SD billing document where I can test the existence of a message and delete other message from NAST?
    Thank you
    Best regards

    Hi,
      in the IMG, you can define a requirement in the access sequence related to your document (where your output type is determined). This requirement is in fact a piece of code where you define whether you want to generate the output or not.
    It's a kind of user-exit during the output determination. As you have there access to fields of KOMKBV3, you should be able to check NAST with correct parameters.
    I think you can try this...

  • How to send message from Message Driven Bean  to JMS client?

    In my project I have JMS client, two QueueConnectionFactory and Message Driven Bean. Client send message to MDB through the first QueueConnectionFactory , in one's turn MDB send message to client through the second Queue Connection Factory . I already config my Sun AppServer for sending message in one way, and sending message from MDB to the second QueueConnectionFactory. But on my Client there is an error : �JNDI lookup failed: javax.naming.NameNotFoundException: No object bound to name java:comp/env/jms/MyQueue2� (jms/MyQueue2 � this is the name of my Queue). So it couldn't get this message.
    P.S.
    Thank you for help!!!

    What is the name of the second queue?is the connection factory on the local?Yes the connection factory is on the local. The name of my first queue is jms/MYQueue and the name of another one is jms/MyQueue2.

  • ABAP: extract messages from message class

    Hello all,
    I have a message class and now I need to extract some messgae from it and pass them to some methods. For instance, to a pop up window.
    How do I extract messages from that class?
    Thank you.
    Regards,
    Georgy

    Hi Georgy,
      Are you trying to use a confirmation window with a standard "Ok" and "Cancel" button. Then you can do something like this:
    method onactionpopup4_1 .
      data: l_cmp_api          type ref to if_wd_component,
            l_window_manager   type ref to if_wd_window_manager,
            l_popup            type ref to if_wd_window,
            l_text             type string_table,
            l_api              type ref to if_wd_view_controller.
      l_cmp_api        = wd_comp_controller->wd_get_api( ).
      l_window_manager = l_cmp_api->get_window_manager( ).
      insert `Data where changed` into table l_text.    "#EC *
      insert `Do you want to save?`        into table l_text.    "#EC *
      l_popup = l_window_manager->create_popup_to_confirm(
                    text            = l_text
                    button_kind     = if_wd_window=>co_buttons_yesnocancel
                    message_type    = if_wd_window=>co_msg_type_question
                    window_title    = 'Test: Popup to confirm'
                    window_position = if_wd_window=>co_center )."#EC *
      l_api = wd_this->wd_get_api( ).
      l_popup->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_yes
                   action_name       = 'YES'
                   action_view       = l_api
                   is_default_button = abap_true ).
      l_popup->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_no
                   action_name       = 'NO'
                   action_view       = l_api
                   is_default_button = abap_false ).
      l_popup->subscribe_to_button_event(
                   button            = if_wd_window=>co_button_cancel
                   action_name       = 'CANCEL'
                   action_view       = l_api
                   is_default_button = abap_false ).
      l_popup->open( ).
    endmethod.
    Or else if you have your own pop-up window, then you can just declare a message area and report a message there using the code that I had written in my last post.
    Regards,
    Satyajit.

  • Resend 'successful' messages from message monitering

    Hi All
    I have a situation where i have to resend some of the messages which are successfully processed by XI.
    In message monitoring, when i select the required message and click on 'resend' button, i get this message: 'Unable to schedule 1 of 1 messages for processing; update the status'.
    The status of the message is 'Successful'. Do i have to update/change it ??
    When i select the message and click on 'update' button, i get the following message 'Message editor can only be used for asynchronous XI messages that can be restarted'.
    Now, how can i resend those messages?
    Please help!
    Many Thanks
    Chandra

    Hi,
    Check this
    Michal Krawczyk's Blog
    /people/michal.krawczyk2/blog/2005/11/09/xi-restarting-successfully-processed-messages
    Regards
    Seshagiri

  • SQL Question : get latest message from messages table

    Hi,
    I have a table messages and i need to get the latest message by userto where userfrom='a'
    MESSAGES
    userfrom,userto,timestampsend,subject
    a ................b.............xx16h00mn.........hi
    a.................b.............xx16h01mn.........hi2
    a.................b.............xx16h02mn.........hi3
    a.................c.............xx16h00mn.........hi4
    a.................c.............xx16h01mn.........hi4
    d.................c.............xx16h01mn.........hi6
    The result i excpected is ;
    a b xx16h02mn , hi3
    a c xx16h01mn , hi4
    But i don t found the good SQL request.
    Anyone can help me?
    Thanks

    Thanks for your help, but i want the latest messages sent by user for each differents conversation with another user, so
    If we have this table
    MESSAGES
    userfrom,userto,timestampsend,subject
    a.................c .............xx16h00mn "hello0"
    a.................b .............xx16h01mn "hello1"
    c.................a,.............xx16h02mn "hello2"
    a.................b.............xx16h03mn "hello3"
    c.................b.............xx16h04mn "hello4"
    The result was a c hello0
    But the expected result will be
    a.................c .............xx16h00mn "hello0"
    a.................b.............xx16h03mn "hello3"
    Have you any idea?

  • All messages are gone after deleting some text messages iOS8

    Hi guys!
    I've got a quiet annoying issue. Don't know if that is the hardware or software problem. I've replaced my 6 plus because of camera problems, and after that each time I try to delete ANY message from message app, app just crushed, and each time you're opening it it shows you empty inbox plus "new iMessage" window. That's not the end. Closing the app doesn't solve the problem. All of contact are gone in the same time so iMessage, phone call stop working. The only solution is restart the phone. Open the message app, close it again and open. But all of deleted messages are restored...
    Any ideas how to solve the problem?
    Erase content and restore from backup doesn't work, plus new update has been released today - still the same problem.
    Thanks for the answers!
    Adam.

    Hello Adam,
    Thanks for using Apple Support Communities.
    Given your previous troubleshooting, the next step for this issue is to reinstall iOS.  If that doesn't work, then the next step is to restore to factory settings.  To reinstall please follow the directions outlined below.
    Make sure that you have iTunes 12 or later on your computer.
    Put your device in recovery mode.
    When you get the option to restore or update, select Update. This will reinstall iOS without erasing your data.
    If your iPhone, iPad, or iPod touch doesn't respond or doesn't turn on - Apple Support
    Use iTunes to restore your iPhone, iPad, or iPod to factory settings - Apple Support
    Have a good one,
    Alex H.

  • Cancel System Error Messages from RWB

    Hi All,
    I have nearly 3000 messages those were got System Error in Integration Engine process, but when i check messages in SXMB_MONI all are success and written to target folders also.There is no problem absolutely.
    Now i just want to cancel those System Error messages from RWB--Message Monitor to keep system green and do not want to see those system error messages again.
    Iam not able to cancel those messages from RWM, it is saying that User and pwd incorrect but iam providing correct one only.
    I went to details of that system error message from Message Monitor, i took message id and filtered with that in SXMB_MONI. i got the message with error state.Iam able to cancel that from MONI but not from RWB which is fine and disappearing from RWB list.
    the thing is i can't copy each and every message id by opening details button for every message
    How can i proceed for this. please advice me
    REgards

    Hi Ravi,
    For example iam able to see system error message in RWB--Message Monitor under Integration Engine at 9:30
    when i execute SXMB_MONI for the same time and see, there is no error message for that able to see success.
    When i took message id from RWB--message monitor and filter that in MONI means it is showing me the error message.
    I can able to cancel it from MONI which is fine. but this way i have 3000 messages in RWB--Message monitor under IE.
    How to copy and paste then filter those error messages in MONI???this is pain process to copy each and every one by one
    Iam not able to get those if i filter with the status group as System Error manual Restart Possible criteria
    Regards

  • Read message form message class

    HI All
    i want to read message from message class (SE91) into my variable
    there is a way to get it without raise a message?
    just to read it to some variable and proceed with the program flow .
    Regards
    James

    Hi James,
    You can capture the message of SE91 with function module 'FORMAT_MESSAGE' .
    Example:
    CALL FUNCTION 'FORMAT_MESSAGE'
    EXPORTING
    id     = i_message-msgid
    lang = i_message-msgspra
    no   = i_message-msgnr
    v1   = i_message-msgv1
    v2   = i_message-msgv2
    IMPORTING
    msg = g_msg
    EXCEPTIONS
    OTHERS = 0.
    Regards,
    Moqeeth.

  • How do i delete all messages from my email?

    I had a server problem over the weekend and all of my email messages that i got from day #1 are reloading as new, unread mail. How can i delete them all(thousands). I'm using outlook and have not been able to sync my Inbox. Contacts and all else is fine.???

    Check your account settings with Outlook for removing or deleting messages from the server when downloaded by Outlook.
    The iPhone's email client includes the same settings, as do all email clients for a POP account.
    I would handle this with Outlook. Delete and recreate the account with Outlook, and before checking the account for new message with Outlook, select remove or deleted messages from the server when downloaded for the account preferences with Outlook.
    All messages available on the server will be downloaded again by Outlook, and removed from the server when doing so. You can mass delete all messages from Outlook.
    When deleting and recreating the account with the iPhone's Mail client, none of these messages will be downloaded by the iPhone's Mail client after being removed from the server when downloaded by Outlook.
    Or since you likely have webmail access for this account using a browser, you can mass delete all messages available on the server via webmail access. After deleting the messages from the server, delete and recreate the account with the iPhone's Mail client.
    An IMAP account is much easier in this regard, which is designed to be accessed with multiple email clients on different computers or devices.
    A POP account is designed to be accessed with a single email client on one computer or device.

  • Failed to handle capwap control message from controller

    Hello,
    I am struggling in associating a 1242 AP's with WLC's.
    Show version of the AP:
    Cisco IOS Software, C1240 Software (C1240-K9W8-M), Version 12.4(25e)JAM2, RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 1986-2013 by Cisco Systems, Inc.
    Compiled Mon 29-Jul-13 11:32 by prod_rel_team
    ROM: Bootstrap program is C1240 boot loader
    BOOTLDR: C1240 Boot Loader (C1240-BOOT-M) Version 12.3(7)JA1, RELEASE SOFTWARE (fc1)
    AP0019.56b0.855e uptime is 9 minutes
    System returned to ROM by power-on
    System image file is "flash:/c1240-k9w8-mx.124-25e.JAM2/c1240-k9w8-mx.124-25e.JAM2"
    Show inventory of the AP:
    AME: "AP1240", DESCR: "Cisco Aironet 1240 Series (IEEE 802.11a/g) Access Point"
    PID: AIR-LAP1242AG-E-K9, VID: V01, SN: FCZ10408384
    When trying to attach it to a WLC 5508 running 6.0.199.4, the AP keeps on downloading image and power cycling.
    When trying to attach it to a WLC 5508 running 7.4.110.0, the AP shows the following message :
    Jan 30 08:24:56.372: %CAPWAP-3-ERRORLOG: GOING BACK TO DISCOVER MODE
    *Jan 30 08:24:56.373: %DTLS-5-SEND_ALERT: Send FATAL : Close notify Alert to 10.71.142.7:5246
    *Jan 30 08:24:56.427: %LWAPP-3-CLIENTERRORLOG: LWAPP LED Init: incorrect led state 255
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to administratively down
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to administratively down
    *Jan 30 08:24:56.447: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:56.484: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:57.445: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:57.473: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:57.478: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Jan 30 08:24:58.466: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:58.473: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:58.503: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:58.508: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:58.513: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Jan 30 08:24:59.503: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:59.508: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:59.532: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:00.532: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:06.483: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *Jan 30 08:25:07.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.565: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.567: %CAPWAP-5-SENDJOIN: sending Join Request to 10.71.142.7
    *Jan 30 08:25:08.598: %CAPWAP-3-ERRORLOG: Invalid event 10 & state 5 combination.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: CAPWAP SM handler: Failed to process message type 10 state 5.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to handle capwap control message from controller
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to process encrypted capwap packet from 10.71.142.7 Jan 30 08:24:56.372: %CAPWAP-3-ERRORLOG: GOING BACK TO DISCOVER MODE
    *Jan 30 08:24:56.373: %DTLS-5-SEND_ALERT: Send FATAL : Close notify Alert to 10.71.142.7:5246
    *Jan 30 08:24:56.427: %LWAPP-3-CLIENTERRORLOG: LWAPP LED Init: incorrect led state 255
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to administratively down
    *Jan 30 08:24:56.445: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to administratively down
    *Jan 30 08:24:56.447: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:56.484: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:57.445: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:57.473: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:57.478: %LINK-5-CHANGED: Interface Dot11Radio0, changed state to reset
    *Jan 30 08:24:58.466: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:24:58.473: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to down
    *Jan 30 08:24:58.503: %LINK-6-UPDOWN: Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:58.508: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:58.513: %LINK-5-CHANGED: Interface Dot11Radio1, changed state to reset
    *Jan 30 08:24:59.503: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio0, changed state to up
    *Jan 30 08:24:59.508: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to down
    *Jan 30 08:24:59.532: %LINK-6-UPDOWN: Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:00.532: %LINEPROTO-5-UPDOWN: Line protocol on Interface Dot11Radio1, changed state to up
    *Jan 30 08:25:06.483: %CAPWAP-3-ERRORLOG: Go join a capwap controller
    *Jan 30 08:25:07.000: %CAPWAP-5-DTLSREQSEND: DTLS connection request sent peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.565: %CAPWAP-5-DTLSREQSUCC: DTLS connection created sucessfully peer_ip: 10.71.142.7 peer_port: 5246
    *Jan 30 08:25:08.567: %CAPWAP-5-SENDJOIN: sending Join Request to 10.71.142.7
    *Jan 30 08:25:08.598: %CAPWAP-3-ERRORLOG: Invalid event 10 & state 5 combination.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: CAPWAP SM handler: Failed to process message type 10 state 5.
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to handle capwap control message from controller
    *Jan 30 08:25:08.599: %CAPWAP-3-ERRORLOG: Failed to process encrypted capwap packet from 10.71.142.7
    Any idea ?
    Many thanks !

    here is the debug output:
    login as: groupwls
    (Cisco Controller)
    User: groupwls
    Password:************
    Your password does not meet the strong password requirements.For added security,                                                                              set a new password that meets these requirements. To prevent this message from                                                                              showing again, disable the strong password feature.
    (Cisco Controller) >debug pm pki enable
    (Cisco Controller) >debug capwap events enable
    (Cisco Controller) >*spamApTask2: Jan 30 09:46:38.639: 00:19:07:c6:39:60 DTLS connection not found, creating new connection for 10:64:94:52 (2134) 10:71:142:8 (5246)
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 0, ID cert >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 1, ID cert >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCID: comparing to row 2, ID cert >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCertFromCID: called to get cert for CID 155224fa
    *spamApTask2: Jan 30 09:46:38.640: sshpmGetCertFromCID: comparing to row 0, certname >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 1, certname >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 2, certname >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 3, certname >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 4, certname >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 5, certname >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 0, certname >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 1, certname >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCertFromCID: comparing to row 2, certname >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 0, ID cert >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 1, ID cert >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetCID: comparing to row 2, ID cert >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: called to get key for CID 155224fa
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: comparing to row 0, certname >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: comparing to row 1, certname >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: comparing to row 2, certname >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.641: sshpmGetSshPrivateKeyFromCID: match in row 2
    *spamApTask2: Jan 30 09:46:38.883: sshpmGetIssuerHandles: locking ca cert table
    *spamApTask2: Jan 30 09:46:38.883: sshpmGetIssuerHandles: calling x509_alloc() for user cert
    *spamApTask2: Jan 30 09:46:38.883: sshpmGetIssuerHandles: calling x509_decode()
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: C=US, ST=California, L=San Jose, O=Cisco Systems, CN=C1240-001956b0855e, [email protected]
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles:   O=Cisco Systems, CN=Cisco Manufacturing CA
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: Mac Address in subject is 00:19:56:b0:85:5e
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: Cert Name in subject is C1240-001956b0855e
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetIssuerHandles: Cert is issued by Cisco Systems.
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: called to get cert for CID 2f6d981f
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 0, certname >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 1, certname >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 2, certname >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 3, certname >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 4, certname >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.887: sshpmGetCertFromCID: comparing to row 5, certname >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.887: ssphmUserCertVerify: calling x509_decode()
    *spamApTask2: Jan 30 09:46:38.898: ssphmUserCertVerify: user cert verfied using >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: ValidityString (current): 2014/01/30/09:46:38
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: ValidityString (NotBefore): 2006/10/05/13:05:43
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: ValidityString (NotAfter): 2016/10/05/13:15:43
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetIssuerHandles: getting cisco ID cert handle...
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: called to evaluate
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 0, CA cert >bsnOldDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 1, CA cert >bsnDefaultRootCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 2, CA cert >bsnDefaultCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 3, CA cert >bsnDefaultBuildCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 4, CA cert >cscoDefaultNewRootCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 5, CA cert >cscoDefaultMfgCaCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 0, ID cert >bsnOldDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 1, ID cert >bsnDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.898: sshpmGetCID: comparing to row 2, ID cert >cscoDefaultIdCert<
    *spamApTask2: Jan 30 09:46:38.906: sshpmFreePublicKeyHandle: called with 0x2c058e50
    *spamApTask2: Jan 30 09:46:38.906: sshpmFreePublicKeyHandle: freeing public key
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 Allocated index from main list, Index: 312
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 DTLS keys for Control Plane are plumbed successfully for AP 10.64.94.52. Index 313
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 DTLS Session established server (10.71.142.8:5246), client (10.64.94.52:2134)
    *spamApTask2: Jan 30 09:46:40.169: 00:19:07:c6:39:60 Starting wait join timer for AP: 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:40.199: 00:19:07:c6:39:60 Join Request from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:40.200: 00:19:07:c6:39:60 Deleting AP entry 10.64.94.52:2134 from temporary database.
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Join Version: = 117730816
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Join resp: CAPWAP Maximum Msg element len = 87
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Join Response sent to 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 CAPWAP State: Join
    *spamApTask2: Jan 30 09:46:40.201: 00:19:07:c6:39:60 capwap_ac_platform.c:1225 - Operation State 0 ===> 4
    *apfReceiveTask: Jan 30 09:46:40.201: 00:19:07:c6:39:60 Register LWAPP event for AP 00:19:07:c6:39:60 slot 0
    *apfReceiveTask: Jan 30 09:46:40.201: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.202:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.202: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.202:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.202: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.202:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.203: 00:19:07:c6:39:60 Register LWAPP event for AP 00:19:07:c6:39:60 slot 1
    *apfReceiveTask: Jan 30 09:46:40.203: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.203:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.203: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.203:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *apfReceiveTask: Jan 30 09:46:40.203: WARP IEs: (12)
    *apfReceiveTask: Jan 30 09:46:40.203:      [0000] dd 0a 00 c0 b9 01 00 00 00 08 01 01
    *spamApTask2: Jan 30 09:46:41.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:41.022: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:41.022: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:41.022: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:41.023: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:44.028: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:44.029: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:47.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:47.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:50.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:50.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:53.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:53.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 Configuration Status from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 CAPWAP State: Configure
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 Updating IP info for AP 00:19:07:c6:39:60 -- static 0, 10.64.94.52/255.255.255.0, gtw 10.64.94.254
    *spamApTask2: Jan 30 09:46:56.021: 00:19:07:c6:39:60 Updating IP 10.64.94.52 ===> 10.64.94.52 for AP 00:19:07:c6:39:60
    *spamApTask2: Jan 30 09:46:56.022: 00:19:07:c6:39:60 Setting MTU to 1485
    *spamApTask2: Jan 30 09:46:59.019: 00:19:07:c6:39:60 DTLS keys for Control Plane deleted successfully for AP 10.64.94.52
    *spamApTask2: Jan 30 09:46:59.026: 00:19:07:c6:39:60 DTLS connection closed event receivedserver (10:71:142:8/5246) client (10:64:94:52/2134)
    *spamApTask2: Jan 30 09:46:59.026: 00:19:07:c6:39:60 Entry exists for AP (10:64:94:52/2134)
    *spamApTask2: Jan 30 09:46:59.026: 00:19:07:c6:39:60 apfSpamProcessStateChangeInSpamContext: Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 0
    *apfReceiveTask: Jan 30 09:46:59.026: 00:19:07:c6:39:60 Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 0
    *spamApTask2: Jan 30 09:46:59.027: 00:19:07:c6:39:60 apfSpamProcessStateChangeInSpamContext: Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 1
    *apfReceiveTask: Jan 30 09:46:59.027: 00:19:07:c6:39:60 Deregister LWAPP event for AP 00:19:07:c6:39:60 slot 1
    *spamApTask2: Jan 30 09:46:59.028: 00:19:07:c6:39:60 No AP entry exist in temporary database for 10.64.94.52:2134
    *spamApTask0: Jan 30 09:46:59.127: 00:19:07:c6:39:60 Received LWAPP DISCOVERY REQUEST to 44:2b:03:b4:39:cf on port '13'
    *spamApTask3: Jan 30 09:46:59.128: 00:19:07:c6:39:60 Discovery Request from 10.64.94.52:2135
    *spamApTask3: Jan 30 09:46:59.128: 00:19:07:c6:39:60 Join Priority Processing status = 0, Incoming Ap's Priority 1, MaxLrads = 50, joined Aps =0
    *spamApTask3: Jan 30 09:46:59.128: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask3: Jan 30 09:46:59.129: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask0: Jan 30 09:46:59.129: 00:19:07:c6:39:60 Discarding discovery request in LWAPP from AP supporting CAPWAP
    *spamApTask0: Jan 30 09:47:28.995: 00:19:07:c6:39:60 Received LWAPP DISCOVERY REQUEST to 44:2b:03:b4:39:cf on port '13'
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discovery Request from 10.64.94.52:2134
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Join Priority Processing status = 0, Incoming Ap's Priority 1, MaxLrads = 50, joined Aps =0
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2134
    *spamApTask2: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2134
    *spamApTask0: Jan 30 09:47:28.996: 00:19:07:c6:39:60 Discarding discovery request in LWAPP from AP supporting CAPWAP
    *spamApTask0: Jan 30 09:47:58.856: 00:19:07:c6:39:60 Received LWAPP DISCOVERY REQUEST to 44:2b:03:b4:39:cf on port '13'
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discovery Request from 10.64.94.52:2135
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Join Priority Processing status = 0, Incoming Ap's Priority 1, MaxLrads = 50, joined Aps =0
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask3: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discovery Response sent to 10.64.94.52:2135
    *spamApTask0: Jan 30 09:47:58.857: 00:19:07:c6:39:60 Discarding discovery request in LWAPP from AP supporting CAPWAP
    *sshpmLscTask: Jan 30 09:48:10.688: sshpmLscTask: LSC Task received a message 4

  • Nokia Messaging not deleting emails from Gmail ser...

    When I access my gmail account via Nokia Messaging on my E72, any emails that I delete using my nokia are not deleted from my gmail account - instead they are being transferred to my All Mail folder, which is where I keep email that I have ARCHIVED, not email that I have deleted, so it's messed up my archived mail and also means that when I access my gmail via POP in Outlook, items that I have previously 'deleted' on my mobile have to be downloaded and sorted through again. Is there a way to change this behaviour? At the moment the gmail app is a better option.

    Unfortunately this didn't work for me (E75). I created an extra label. I also subscribed in imap to this folder. When I want to delete a message, I move it to this folder / label. Every now and then I delete all these mails from gmail on my PC.
    Suyogmh wrote:
    This is well known behavior of Gmail and not problem with Nokia Messaging as such.
    Gmail has different way of handling emails with labels instead of folders. So "All Mails" means all mails except Spam and Trash. Check following link for more details.
    http://mail.google.com/support/bin/answer.py?hl=en &answer=77657
    Check if following settings are in order in Gmail - settings - forwarding and POP/IMAP in web browser.
    Status: IMAP is enabled
    Auto-Expunge : Do not automatically expunge messages
    When a message is expunged from the last visible IMAP folder:  Immediately delete the message forever
    Folder Size Limits: Do not limit the number of messages in an IMAP folder
    Now head over to email.nokia.com and login with your username/pwd
    Under My Email Addresses, for your gmail account , click edit settings
    Now in "Mail folders to sync" Please ensure that you select "All Mail" , "Spam" and " Trash"
    You can also select other labels , max upto 10.
    Click Save changes and log out.
    Now in your Nokia Phone, Open Nokia Messaging and Sync again.
    Go to Gmail and these new labels should appear there.
    If you want to delete a message from all folders, move it to the [Gmail]/Trash folder.
    If you delete a message from [Gmail]/Spam or [Gmail]/Trash, it will be deleted permanently.
    So I know it's little extra effort but we can do it. I hope you find this useful.If yes, don't forget to give me Kudos 

  • How can I delete saved messages from my iphone 5s to be able to update it?

    I have needed to update my Iphone 5s from the past 2 updates but it says that I have 4.2 GB of saved messages.  I don't know where to go to delete them.  I delete regular messages from my phone daily so I'm not sure what is being saved and where.
    Thanks!

    You would need to set up your mail account as a POP account instead of IMAP.
    I'm not sure if Hotmail/msn offers that -

  • How do you delete voicemail messages from iphone 5s

    I'm trying to delete voicemail messages from iphone 5s.  Based on visiting previous discussions on this subject, I've tried "resetting network settings" and "turning airport mode ON, deleting messages, then turning airport mode OFF" -- to no avail. I'm receiving an alert that I've reached capacity...please assist. I run my business on my iPhone and right now I'm missing opportunities.
    Thanks in advance for your expediency.

    From the iPhone User Manual:

Maybe you are looking for