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

Similar Messages

  • 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

  • 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.

  • 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?

  • 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

  • Resending the Mesage in Message Monitoring is failed again & again

    H i !  All
    In Scenario Idoc to File , the connectivity between XI server & FTP  was down , Now is up ,
    a message is failed , now again i am  re-sending the message from Message Monitoring , showing the belolw error , FTP Connection is UP now  , in SXMB_MONI  message is processed
    Exception caught by adapter framework: An error occurred while connecting to the FTP server '10.10.100.205:21'. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 /STORES/102/sapoutbound: The system cannot find the path specified. '. For details, contact your FTP server vendor.
    what can be the reason ???
    Thanks
    Abhishek

    The prolem is stil the same .....
    today more than 300 mesages get prossed . I can see on FTP , but 23 messages get failed ....using same communication channel ....
    I am putting the details
    Sucessed messges
    Write to FTP server "10.10.100.205", directory "\STORES\0019\sapoutbound",   file "ZINV01_ZINVMSG_001920090705-172939-687.XML"
    failed messages
    Exception caught by adapter framework: An error occurred while connecting to the FTP server '10.10.100.205:21'. The FTP server returned the following error message: 'com.sap.aii.adapter.file.ftp.FTPEx: 550 /STORES/193/sapoutbound: The system cannot find the path specified. '. For details, contact your FTP server vendor.
    Thanks
    Abhishek
    Edited by: Abhishek Agrahari on Jul 6, 2009 8:00 AM

  • 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.

  • Resend AS2 messages from the Seeburger Workbench

    Hello,
    We have a EDI integration scenario where we are sending an asynchronous AS2 message via the Seeburger EDI adapter. As part of sending the message, we also request a synchronous MDN.
    In cases where we have successfully sent the message but not received an MDN back (due to an error in the target system), is it possible to resend the original message from the Seeburger Workbench?
    Thanks
    Manish

    Hi,
    no it's not possible. The adapter will try to re-send the message a couple of times and then will mark the message as failed.
    I think you can re-send it from RWB if you have the right authorizations.
    Horia

  • Resend Message from Seeburger message monitoring

    Hi friends,
    I want to know that is there any possiblity of resending the message from Seeburger message monitoring tool.
    One of the messages failed due to a problem in sender ID.
    I want to resend this message. is it possible ?
    Note: Message send out successfully from communcation channel to AS2 adapter.
    Thanks
    Sunil.

    Hi Sunil,
       Please let me know what error you can see in Seeburger Workbench.
    In My view you can see the below type of error with State u201CError on send, will be retriedu201D
    If Any Message failed in AS2 Adapter may be due to any reason
    1. Wrong Sender/ Receiver ID
    2. Wrong URL
    3. Firewall rules are not in place
    4. Partner Production site is down and you are unable to connect to him
    Messages with above errors will appear with Success Flag in SXMB_MONI. But they will be caught by Seeburger Adapter and will be in the Error Status in SEEBURGER WORK BENCH
    The only way to find/restart those messages is go to Runtime Work Bench Messages Monitoring --> Messages form Component (Adapter Engine) ---> System Error Status.
    Any Message which failed in Seeburger Level can be seen only in Runtime Workbench.
    Regards,
    Rama.

  • TS4026 Sometimes after I have deleted received messages from my iPad they are resend so they appear again in my inbox.  Can this be prevented?

    Sometimes after I have deleted received messages from my iPad they are resend so they appear again in my inbox.  Can this be prevented?

    Downloading (using iOS or computer) past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not all media formats are available in all countries (see: iTunes in the Cloud and iTunes Match Availability by Country - http://support.apple.com/kb/HT5085); apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this).  Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list (e.g., ringtones, audiobooks), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.
    Select the iTunes Store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.
    Reading the limitations mentioned in the first paragraph I would never trust Apple to permanently keep a copy of your purchases.  Once you get them on your iPad immediately download them to your computer and then also to your backup drive.

  • Dear Sir/Madam,  I have purchased a full copy of Adobe Acrobat Standard  software on  11th of August 2014 (Order number: 8796780459).  I accidently deleted that file, and tried to download it from the Adobe site with no success - Got a message directing t

    Dear Sir/Madam,
    I have purchased a full copy of Adobe Acrobat Standard  software on  11th
    of August 2014 (Order number: 8796780459).
    I accidently deleted that file, and tried to download it from the
    Adobe site with no success - Got a message directing to [email protected] that elaborates that the file is available for 60 days only. Webhelp at digitalriver has directed me to you
    Please help me get a working link for download.

    Since you don't give us any details like your operating system or Acrobat version, I can only direct you to a general download page https://helpx.adobe.com/download-install.html

  • Do you copyemail from a PC running windows live mail? I have attempted to use Thunderbird and was successful in converting the live mail files to Mbox format but when I tried to import these files to the Mac only one message from each file was shown.

    I am having a problem trying to migrate some old email messages from a PC running Windows live mail.
    I downloaded Thunderbird to the PC and imported the email messages and folders into Thunderbird and was able to create Mbox files for all the folders and messages. I  copied these files to a usb stick and then tried to export the folders and messages to my iMac running Lion. It appeared  to copy the folders to the Mac but only one message per folder was placed on the computer. Does anyone have any ideas on how I should proceed to copy these email messages over? Thanks.

    I am having a problem trying to migrate some old email messages from a PC running Windows live mail.
    I downloaded Thunderbird to the PC and imported the email messages and folders into Thunderbird and was able to create Mbox files for all the folders and messages. I  copied these files to a usb stick and then tried to export the folders and messages to my iMac running Lion. It appeared  to copy the folders to the Mac but only one message per folder was placed on the computer. Does anyone have any ideas on how I should proceed to copy these email messages over? Thanks.

Maybe you are looking for

  • FLV image falls behind audio

    Hi all, I have a client who wants video with an alpha channel overlaying other images in an iPad application. AFAIK this can only be done with FLV video files but the video files have pretty poor performance in the sense that often the audio starts a

  • I-photo unexpectedly crashing on start-up.

    I get an error saying i-photo has unexpectedly shut down with an error box asking me to send information to apple. As soon as I press any of the buttons Cancel, ignore or send to apple the application shuts down Anyone out there know what is wrong?

  • Service entry and Acceptance without service PO

    Hi, Is it possible to create Service entry sheet and service Acceptance without service PO ? if yes Please suggest the Steps. Regards, Rani

  • Supervisor field at PA vs Chief setup at OM

    Our Client did not have the chief setup at the Orgunits. Instead the managers  are setup at the Infotype 001 ( PA0001) by the Supervisor field ( MSTBR). They maintained the Supervisor field from year 2002 and they have all their external interfaces l

  • Using Java Media Framework (JMF) in Eclipse

    Hey all, I want to use JMF to have a video shown in my GUI application in Eclipse and have no idea where to start, I know the basics of GUI and how to show pictures etc but otherwise i don't know anything about videos... Any help would be hugely appr