RSXMB_DELETE_MESSAGES

Hi everybody,
I am going to delete not only successful(status = 03) xml message  but also all messages.
I know i can delete message by using standard program 'RSXMB_DELETE_MESSAGES’  only successful message.
I want to delete all xml messages by modifing standard program.
Could you give me a teach?
Thanks regards
Jeong Bok.
*& Report  RSXMB_DELETE_MESSAGES                                       *
REPORT  rsxmb_delete_messages  .
DATA: persist                TYPE REF TO cl_xms_persist.
DATA: oref                   TYPE REF TO CX_XMS_syserr_PERSIST.
DATA: text                   TYPE string.
DATA: dellines               TYPE i.
DATA: state                  TYPE sxmsflag.
DATA: lv_msgtext(72)         TYPE c.
runmode = D2
=> D = deletion cycle
=> 2 = second job of deletion cycle
CONSTANTS: gc_runmode(2)     VALUE 'D2'.
Test run. Send no messages to screen.
PARAMETERS test_run TYPE c      DEFAULT '' NO-DISPLAY.
AUTHORITY-CHECK OBJECT 'S_XMB_AUTH'
         ID 'SXMBAREA' FIELD 'MESSAGE'
         ID 'ACTVT' FIELD '65'.
IF sy-subrc <> 0.
  MESSAGE e304(xms_adm).
ENDIF.
CALL FUNCTION 'ENQUEUE_E_SXMSSWITCH'
  EXPORTING
    mode_sxmsjinfo = 'U'
    runmode        = 'C'
  EXCEPTIONS
    foreign_lock   = 1
    system_failure = 2
    OTHERS         = 3.
IF sy-subrc <> 0.
job conflict - cannot run reorg and copy job parallel
  MESSAGE e360(xms_adm).
ENDIF.
update job info
CALL FUNCTION 'SXMB_UPDATE_JOB_INFO'.
check for conflict jobs
CALL FUNCTION 'SXMB_CHECK_JOB_INFO'
  EXPORTING
    runmode         = gc_runmode
  EXCEPTIONS
    invalid_mode    = 1
    job_conflict    = 2
    copy_job_failed = 3
    OTHERS          = 4.
CASE sy-subrc.
  WHEN '0'.
ok - set enqueue
    CALL FUNCTION 'ENQUEUE_E_SXMSSWITCH'
      EXPORTING
        mode_sxmsjinfo = 'S'
        runmode        = 'R'
        _scope         = '1'
      EXCEPTIONS
        foreign_lock   = 1
        system_failure = 2
        OTHERS         = 3.
  WHEN '3'.
*copy job failed, other reorg job running?
    CALL FUNCTION 'ENQUEUE_E_SXMSSWITCH'
      EXPORTING
        mode_sxmsjinfo = 'V'
        runmode        = 'R'
      EXCEPTIONS
        foreign_lock   = 1
        system_failure = 2
        OTHERS         = 3.
    IF sy-subrc = 1.
other reorg job running - means reorg job can run
      CALL FUNCTION 'ENQUEUE_E_SXMSSWITCH'
        EXPORTING
          mode_sxmsjinfo = 'S'
          runmode        = 'R'
          _scope         = '1'
        EXCEPTIONS
          foreign_lock   = 1
          system_failure = 2
          OTHERS         = 3.
    ELSE.
no other reorg-job running -> check once more
if copy-job is running
      CALL FUNCTION 'ENQUEUE_E_SXMSSWITCH'
        EXPORTING
          mode_sxmsjinfo = 'U'
          runmode        = 'C'
        EXCEPTIONS
          foreign_lock   = 1
          system_failure = 2
          OTHERS         = 3.
      IF sy-subrc <> 0.
job conflict - cannot run reorg and copy job parallel
        MESSAGE e360(xms_adm).
      ELSE.
the reason for failed copy-job is unknown, have to quit
        MESSAGE e361(xms_adm).
      ENDIF.
    ENDIF.
  WHEN OTHERS.
job conflict
    MESSAGE e360(xms_adm).
ENDCASE.
set begin of job
CALL FUNCTION 'SXMB_SET_JOB_INFO'
  EXPORTING
    runmode              = gc_runmode
    start                = '1'
    end                  = '0'
    status               = '0'
  EXCEPTIONS
    invalid_mode         = 1
    date_info_not_unique = 2
    job_info_missing     = 3
    OTHERS               = 4.
COMMIT WORK.
CLEAR: text.
state = '1'.             " assume that no errors will occur
CREATE OBJECT persist.
TRY.
    CALL METHOD persist->delete_msg
      IMPORTING
        ex_dellines = dellines.
  CATCH CX_XMS_syserr_PERSIST INTO oref.
    text  = oref->get_text( ).
    state = '0'.             " error occured
ENDTRY.
set end of job
CALL FUNCTION 'SXMB_SET_JOB_INFO'
  EXPORTING
    runmode              = gc_runmode
    start                = '0'
    end                  = '1'
    status               = state
  EXCEPTIONS
    invalid_mode         = 1
    date_info_not_unique = 2
    job_info_missing     = 3
    OTHERS               = 4.
COMMIT WORK.
IF test_run IS INITIAL.
  IF state = '1'.
    MESSAGE i351(xms_adm) WITH dellines.
  ELSE.
    MESSAGE e100(xms_adm) WITH text.
  ENDIF.
ELSE.
  IF state = '1'.
    MESSAGE i351(xms_adm) WITH dellines INTO lv_msgtext.
  ELSE.
    MESSAGE e100(xms_adm) WITH text     INTO lv_msgtext.
  ENDIF.
  WRITE: / lv_msgtext.
ENDIF.

Hi Jeong,
We have faced a similar problem.
I would suggest not to go another way:
Try getting all background jobs to work. After that XI will work like a charm.
Very important to get the archiving right. After that all delete jobs will work as they should.
Good luck
Dimitris

Similar Messages

  • RSXMB_DELETE_MESSAGES - what does this do?

    Hello there
    I am trying to delete messages out of XI using the standard job that runs RSXMB_DELETE_MESSAGES.  Runs successfully saying "72,909 XML messages deleted".  Good news, but I can't find evidence of this.  When I look back through SXMB_MONI -> Monitor for processed XML messages I can still old XML messages and can drill down into display XML message versions.
    Could someone please explain what the program RSXMB_DELETE_MESSAGES does and how it does?  Tried SAP Help, and although it says to run archive/deletion jobs through SXMB_ADM, I am still confused as to how it works.
    Thanks for your help.
    Nic

    Hi
    There is two way to handle XML messages. Either Archiving or  Deletion.
    You have executed  Deletion job & this job has deleted the XML Messages from XI
    For information read OSS Note : 872388
    Read this guide
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/80553b4d53273de10000000a114084/frameset.htm
    XI archiving and deletion of processed XML msgs

  • RSXMB_DELETE_MESSAGES failed

    I tried to delete away messages from the persistence layer. However, each time when i tried to run the job, it fails immediately and came up with the error "Complete unfinished copy job first" and i went to Job Overview (in SXMB_ADMIN) and click on "rerun copy job" but it seems to be taking forever to complete. It has been running for 70k+ seconds (i.e. >12 hrs).
    Could someone advise if this is normal? Did i miss out something or didn't do anything?

    Hi,
    In this case you should try to manually confirm the messages (in SXMB_MONI - Cancel Processing of messages with Error CTRL F8) and then run all the deletion jobs again. Sometimes this helps - but I also have several messages that wouldn't disappear after that treatment.
    You have to cancel them first, either manually or via a report. Please see Note 872388 and 820149 for details.
    Thanks
    Swarup

  • How to delete / cancel messages in PI adapter engine

    Hello expert,
    we have a scenario File (EOIO) --> PI --> ABAP. Today the file we received is big (>100mb), apparently PI can't handle it, and we got error
    Transmitting the message to endpoint http://host:port/sap/xi/engine?type=entry using connection File_http://sap.com/xi/XI/System failed, due to: com.sap.engine.interfaces.messaging.api.exception.MessagingException:
    Error transmitting the message over HTTP. Reason: java.io.IOException: Error writing to server.
    seems like PI adapter engine got problem while delivering the huge message to ABAP integration engine. In RWB message monitoring, the message is set to Error. Unfortunately the file has been picked up many times, thus the huge message is stuck in adpater engine. In RWB message monitoring, I can see the message listed many times and status is HOLDING because the previous message can not be delivered to Intergration engine. I want to delete/cancel all the messages, I tried in RWB message monitoring to cancell the messages, however after cancelling one message, it crashed the PI system and cause a reboot.
    My question is; Is there some place in NWA (net weaver admin) to force all the messages to be deleted? (Because deleting/cancel in RWB message monitoring does not work because it causes system crash).
    Thanks
    Jayson

    Hi Team,
    I couldn't able to delete old message's from one of Q system, Persistence layer is 584 % filled, after triggering delete job(RSXMB_DELETE_MESSAGES) and Persistence layer has come to 384% and further I couldn't able to delete old messages.I executed program "
                                                                                                          RSXMB_CHECK_MSG_QUEUE" and manage  to delete few entries.Could you please suggest how to reduce fill level to below 100%
    Switch Procedure (for Persistence Tables) Deactivated
    Number of Table Entries                                                           
    3.185.992
    Maximum Number of Table Entries                                                   
    830.000
    Current Fill Level in %                                                           
    384
    Threshold value for fill level for executing a switch run in %                    
    60
    Number of Logically Deleted Table Entries                                         
    0
    Decline of Fill Level in % Following Deletion                                     
    384
    Delete or archive processed XML messages
    Job log overview for job:    SAP_BC_XMB_DELETE_001 / 06302000
    Date       Time     Message text                                                                               Message class Message no. Message
    13.03.2013 06:39:55 Job started                                                                                     00           516          S
    13.03.2013 06:39:55 Step 001 started (program RSXMB_DELETE_MESSAGES, variant &0000000000034, user ID SAPBATCH)      00           550          S
    13.03.2013 06:39:55 Value for parameters DELETION-RELATED_OBJECTS-ASYNC: 1                                        XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-RELATED_OBJECTS-ROWS: 100                                       XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-RELATED_OBJECTS-IDX5_DELAYED: 0                                 XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-ROWS_PER_LOOP-DELETE: 100                                       XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION-ASYNC: 007                                     XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION-SYNC: 007                                      XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION_ERROR-SYNC: 007                                XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION-IDX5: 007                                      XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION_UNIT-ASYNC: D                                  XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION_UNIT-SYNC: D                                   XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION_ERROR_UNIT-SYNC: D                             XMS_ADM        375          S
    13.03.2013 06:39:55 Value for parameters DELETION-PERSIST_DURATION_UNIT-IDX5: D                                   XMS_ADM        375          S
    13.03.2013 07:27:58 0 XML messages deleted                                                                        XMS_ADM        351          I
    13.03.2013 07:27:59 Step 002 started (program RSXMB_TABLE_SWITCH, variant &0000000000034, user ID SAPBATCH)         00           550          S
    13.03.2013 07:28:00 Job finished                                                                                    00           517          S

  • How to delete the messages from SXMB_MONI which are already cancelled .

    Hi All,
    The messages were earlier in System error(Red flag) state so i cancelled it manually.
    I want to know how to delete the messages from sxmb_moni which are already cancelled manually using ctrl+f8.
    if not possible , then i want to see them in earlier state i.e.., in System error(Red flag).
    can any tell me the procedure of doing it.
    thanks
    Sai.

    Hi AmitSri,
    Thanks for u r reply,
    What is retention period, where can i find this option.
    And i don't have authorizations to sxmb_adm --> configure delete procedure
                                                                             --> Define interfaces for archiving and retention period.
    and to RSXMB_DELETE_MESSAGES in se38 , i don't have authorizations to run
    Is there any way to delete the messages or make them to System error( Red flag) which are manually cancelled.
    Thanks
    Sai.
    Edited by: sai_SHA on Aug 17, 2011 12:29 AM

  • XI Adapter ? No messages in the adapter engine in RWB

    Hi Guys,
    I have the scenario SOAP-PROXY. I have configured XI Adapter on the receiver side. I have used xml spy to post the messages directly to the IS. I could not see any messages in the adapter engine in RWB.
    I have seen the messages processed successfully in the integration engine under RWB.
    can anybody explain why i could not see any messages in the adapter engine ? Is It normal with the xi adapter on the receiver side ?
    Thanks,
    Raj
    Message was edited by:
            raj reddy

    Raghu.
    I've done the following:
    1. I've executed SE38 tx code.
    2. I've entered the "RSXMB_DELETE_MESSAGES" report as "Program"
    3. As the "RSXMB_DELETE_MESSAGES" report does not have a selection screen, it must be executed with default parameters. So, I selected "Program -> Execute -> Background".
    4. There are no available variants, so I clicked on the "Execute immed." button.
    5. The job starts. I can monitor it on the SM37 tx code.
    6. It only deleted 20 messages.
    What I get from this, is that the "RSXMB_DELETE_MESSAGES" report cannot delete the big part of the messages since them are marked as "Archivable" and not as "Archived".
    what do you think of it??
    regards
    Carlos.

  • Outbound status to delete XML messages in PI

    Hi,
    we are using a deletion process in PI wiith the pg RSXMB_DELETE_MESSAGES but the XML messages with a outbound status = 1 cannot be deleted. It seems that the pg SXMS_REFRESH_ADAPTER_STATUS permits to change the status to 6 but does not work for me.
    So, I need guidance. For information, we condigured the deletion period (10 days).
    Thank you

    Hi Pascal,
    You should try to manually confirm the messages (in SXMB_MONI - Cancel Processing of messages with Error CTRL F8) and then run all the deletion jobs again.
    Please see Note 872388 and 820149 for details. Following is the relevant portion from 872388:
    "Check if there are asynchronous messages in error status.
    Asynchronous messages in error status are neither deleted nor archived.
    This behaviour is different to erroneous synchronous messages which get
    deleted after their retention period (see step 5) has expired).
    Asynchronous erronous messages, however, must be cancelled and then be
    archived. You can either use transaction SXMB_MONI, search for erronous
    messages and manually cancel them. Or you can use the report provided by
    SAP: RSXMB_CANCEL_MESSAGES. Should you decide (for non-productive
    systems only) that you would like to delete these manually cancelled
    messages, please use note 820149."
    Regards
    joel

  • Unable to delete the messages in PI

    Hi Experts
    We are planning to delete the messages in PI. So I have specified the retention period and started the deletion jobs
    1. SAP_BC_XMB_DELETE_<client> (Deletion job for XML messages)
    2.  SAP_BC_XMB_HIST_DELETE_<client> (Deletion job for history entries) 
    But when i scheduleted the jobs I am getting the a error message
    Job started
    Step 001 started (program RSXMB_DELETE_MESSAGES, variant &0000000000001, user ID XXXXXXX)
    Table container currently being copied; no other a
    Job cancelled after system exception ERROR_MESSAGE
    Job started
    Step 001 started (program RSXMB_DELETE_HISTORY, variant &0000000000001, user ID XXXXXXXX
    0 XML messages deleted
    Job finished
    Can you please help me to resolve the issue
    Thanks & Regards
    Anand

    hi,
    Just deregister and re reigster your queues once again,
    <b>SXMB_ADM -> Manage Queues -> Register the Queues.</b>You can restart  the messages manually.
    But, this problem is beacuse of the load and so would suggest  tuning of your XI server.
    Check this document for the same,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/70ada5ef-0201-0010-1f8b-c935e444b0ad
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/7fdca26e-0601-0010-369d-b3fc87d3a2d9
    Regards,
    Bhavesh

  • Message stuck in adapter engine with status Hold, how to delete those

    Hi,
    In Dev system around 6 lac messages are stuck in ;holding' state. How can I delete them. Is there is any standard proge which can delete all these messages.
    Can I delete messages of IE with status 'recorded'?
    Regards,
    Krishna

    Hi,
    see this wiki
    RSXMB_ARCHIVE_MESSAGES Archive XML Messages
    RSXMB_CANCEL_NOT_REST_MESSAGES Cancel XI Messages With Errors That Cannot Be Restarted
    RSXMB_DELETE_ARCHIVED_MESSAGES Delete Archived XML Messages
    RSXMB_DELETE_MESSAGES Delete XML Messages from the Persistency Layer marked for DEL
    RSXMB_CANCEL_MESSAGES Mass cancellation of error messages - XI
    RSXMB_SHOW_REORG_STATUS & RSXMB_SHOW_STATUS provide an overview for all XML messages in XI persistency layer.
    RSXMB_MESSAGE_STATISTICS2 which provides the processing statistics. This report basically analyzed the history table.
    RXWF_XI_UNSED_MSGS report helps in converting messages states other than 003 to final state i.e. 003.
    SXMS_REFRESH_ADAPTER_STATUS report helps in converting message sates like 001/008 into final state.
    http://wiki.sdn.sap.com/wiki/display/XI/PIArchivingConceptual+Overview

  • Switch or Simple procedure to  Delete the job?

    Hi
    I want to delete all the data which are less than 6 months I have changed the staus from del to arch for those data which need to archived .I am really confused on selecting the delete procedure whether to select simple or switch
    in my data base there are more than 500000 to be delete
    The simple deletion procedure deletes all XML messages flagged for deletion or archiving from the database tables in records.
    it is saying will delete all the records which are flagged for archiving also
    in switch it is taking copy of the table to another i want to reduce the space from my data base
    Kindly suggest me how can i achive my goal
    Thanks
    Jayaraman
    Edited by: Jayaraman P on Jun 21, 2010 4:05 PM

    Hi,
    Messages having status ARCH will not be deleted by the deletion job. only the messages having status DEL will be deleted by deletion job RSXMB_DELETE_MESSAGES.
    This message status can be checked by the status of ITFACTION of SXMSPMAST table.
    The type of deletion procedure simple or table swith has no effect on the messages that will be selected for deletion.
    The messages that has the flag ARCH can be deleted only by the ARCHIVE job. Archive job has two steps it first archive those messages in to file system RSXMB_ARCHIVE_MESSAGE and then delete by RSXMB_DELETE_ARCHIVED_MESSAGES.
    Please check the note Note 872388 - Troubleshooting Archiving and Deletion in PI for further assistance.
    Thanks,
    Francis
    Edited by: Francis M. A. on Jun 21, 2010 5:13 PM

  • Deleting XI Messages - Abap dump in Delete job

    Hi all,
    I would like to know if we could directly delete xml messages without archiving. We are working on a sandbox system.
    I tried to schedule a delete job  ARCDEL_Delete_20080612115401 / 11540100.
    It cancelled giving an abap dump CALL_FUNCTION_NOT_FOUND.
    the abap dump is as follows:
        The function module " " is called,
        but cannot be found in the library.
        Error in the ABAP Application Program
        The current ABAP program "ARCDEL_DELETE_PARA" had to be terminated because it
         has
        come across a statement that unfortunately cannot be executed.
    Any idea why a function module with no name is called?
    Thank you.
    Regards,
    Raghavan

    Hi Raghvan,
    There are few ABAP report for that
    RSXMB_DELETE_MESSAGES
    RSXMB_DELETE_ARCHIVED_MESSAGES
    check this blog for reference :
    /people/gourav.khare2/blog/2007/12/21/mass-cancellation-of-error-messages--xi
    Sachin

  • Cannot Delete Messages in XI (PI)

    HI,
    We are using SAP NetWeaver PI v7.00 SP15.  Our PSAPSR3DB tablespace is growing and we can't delete the messages.  If I run RSXMB_SHOW_REORG_STATUS it shows 615,086 asynchronous messages not in retention period (can be deleted). There are only 1314 messages in the retention period.  There are 113,759 messages without errors to be flagged. 
    If I run RSXMB_DELETE_MESSAGES through TCODE SXMB_ADM I get these results:
    07.10.2008 13:10:21 Job started
    07.10.2008 13:10:21 Step 001 started (program RSXMB_DELETE_MESSAGES, variant &0000000000027, user ID DBARBOUR)
    07.10.2008 13:10:34 0 XML messages deleted
    07.10.2008 13:10:34 Step 002 started (program RSXMB_TABLE_SWITCH, variant &0000000000027, user ID DBARBOUR)
    07.10.2008 13:10:34 Job finished
    I'm working through Note 872388 Troubleshooting Archiving and Deletion in XI 3.0 / PI 7.0 and others, but nothing is working.
    I've even tried using the http screen suggested in 807615, but still can't get rid of the old messages.  My configuration is set to 'simple" (without table switch?) so it's somewhat puzzling the deletion job tries the switch, although I'm not sure if that's signifigant.
    Can someone help me out here?

    David,
    I had similar issues, but note 872388 solved my problems. I am also running without table switch.
    -Regards

  • Change status for 18 million messages in the Integration Engine

    Hello there!
    I have the following situation and I wonder that maybe you could help. Currently I have more than 18 million messages for the BC_XMB object in the Integration Engine for a BI System (connected to a PI system).
    The problem here is that the archiving/deletion jobs in this BI system are faulty since maybe a couple of years ago and all of these messages are marked as "Archivable":
    What I'm trying to do here is to change the status for these 18 million messages from "can be archived" to "to be deleted" since there is no way that I can archive this 18 million messages (filesystem capacity). I've been looking many option but I cannot figure out how to do it.
    Maybe, if you know an alternative way to do this, I will be very pleased to hear it.
    Thanks a lot in advance.
    Carlos

    Raghu.
    I've done the following:
    1. I've executed SE38 tx code.
    2. I've entered the "RSXMB_DELETE_MESSAGES" report as "Program"
    3. As the "RSXMB_DELETE_MESSAGES" report does not have a selection screen, it must be executed with default parameters. So, I selected "Program -> Execute -> Background".
    4. There are no available variants, so I clicked on the "Execute immed." button.
    5. The job starts. I can monitor it on the SM37 tx code.
    6. It only deleted 20 messages.
    What I get from this, is that the "RSXMB_DELETE_MESSAGES" report cannot delete the big part of the messages since them are marked as "Archivable" and not as "Archived".
    what do you think of it??
    regards
    Carlos.

  • Table SXMSPMAST - Remaining entries

    Hi experts,
    I have launched report RSXMB_DELETE_MESSAGES in order to delete entries in SXMSPMAST with an 'ITFACTION' = 'DEL'.
    It worked fine, but I still have many entries left with 'DEL' status that won't get deleted.
    Most of the entries left have MSGTYPE = A, QOSMODE = EO and MSGSTATE = 3.
    Do you have an idea why there are still entries left with ITFACTION = DEL after having launched RSXMB_DELETE_MESSAGES.
    Any help would be greatly appreciated.
    Thanks a lot,
    Jamal

    Thanks a lot to both of you
    Actually Michal, I think it comes from this from the note :
    Check if there are message with missing qRFC entries. This happens if a user deletes queue entries using transaction SMQ2 instead of (correctly) canceling messages via transaction SXMB_MONI. Messages without queue entries can neither be restarted, nor deleted or archived. SAP has delivered a report to help you cleaning up this type of message status. Please use the report that is described in detail in Note 688147. Keep in mind that deletion of qRFC entries is not recommended at all in an SAP environment. It creates inconsistencies between the tables TRFCQIN and TRFCQSTATE / TRFCQDATA and the XI tables SXMSPMAST which causes the problems for archiving / deletion. Use Note 779664 to check for inconsistencies in the tRFC tables.
    So I prefer not to touch since not recommmended
    Thanks again,
    Jamal

  • Delete Successfull Message but error or schedule  status in outbound ?

    Hi XI Expert,
    I have problem to delete the xml message with status Processed Sucessfully but got error / schedule status in outbound message. I can cancel this type of message, so this message will be persistent forever in my database.
    could you advise how to cancel this message so the deletion job will remove automatically.
    Thank you and Best Regards
    Fernand

    Hi All,
    I already set PESIST_DURATION for DELETION and also running RSXMB_DELETE_MESSAGES.
    but then those message with Status = Success but having error / schedule status still in database, i can't even cancel the message.
    so any idea how to cancel or delete this type of message.
    Best Regards
    Fernand

Maybe you are looking for

  • Looking for an external hard drive for my ibook...

    I know there are a lot of posts related to external hard drives, but I have very specific needs that haven't been answered as far as I can tell. I run Tiger 10.4.11 on my 1.33 ghz ibook (which WON'T DIE) and need a hard drive that: 1) is Mac-friendly

  • What are the pros and cons using ospf as the PE/CE protocol

    pros and cons using ospf as the PE/CE Protocol

  • Filter on PTManagerExtAttAbs.INSERTWITHCOSTASSIGNMENT (BUS7011)

    Hello, Can anyone tell me how to create a filter in BD64 for PTManagerExtAttAbs.INSERTWITHCOSTASSIGNMENT. The standard delivery of SAP is that an idoc is always created upon release. So no filter values available in BD64. But what we need is that is

  • How to back up from Photoshop Elements 8 to Revel

    My photos were backed up from PSE 8 to the Elements backup on photoshop.com.  Now they have been automatically moved to Revel.  How do I back up more photos from PSE 8 to Revel?  When I try to do a backup from PSE 8 it connects to the old photoshop.c

  • Reduce image size ( un-enlarge )

    I have a digital image of a house. I want to make a Christmas tree ornament that will have a picture of just the front door. The door in a 4x6 print is about 3x4. I want to reduce that to about 2x3. I am only able to print on 4x6 paper, so I want to