Sap XI -How to Archive/Delete Msg in XI sys?  large interface Msg size.

Hi XI/PI experts. We have XI 3.0 SP 19 with archiving setup for 14 days for all interfaces.
Question we have an interface that processes 4 MB message every 20 minutes thru XI. 
We don't want to keep the message in XI or archived in a off-line system more that 24 hours.
Can I remove  4MG msg from XI  and how ? But keep the others interfaces at  14 days.

Hi Yeswanth,
In Interface Determination choose your two Inbound Interfaces i.e your two idoc types and choose corresponding Interface mappings.Now under condition ,click on it, it will shown to you Condition Editor. On Left Operand you can aaccess the source message strucutre(Here you can choose the filed, on which field do you want to put the condition), On Operator you can use equals,not equals e.t.c, On Right Operand you can give your constant values.
Cheers
Veera

Similar Messages

  • How to archive and delete messages in SXMB_MONI

    Hi all,
    We are working on SAP XI Development environment wherein we have File to IDoc scenario running twice daily and creating many messages.
    How to archive and then delete these messages ?
    Does accumalation of past messages affect the speed and performance of the system?
    Thanks in advance.
    Ajay

    Ajay,
    For step by step procedure of how to archieve and delete messages in XI go through the urls:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/402fae48-0601-0010-3088-85c46a236f50
    Delete Messages SXMB_MONI
    http://help.sap.com/saphelp_nw04/helpdata/en/0e/80553b4d53273de10000000a114084/frameset.htm
    Too many questions on Archive/Delete messages.
    ---Satish

  • How can I delete multiple received email msgs. at once (and empty all Trash msgs. at once)?

    With iOS7 I can't select,mark and delete all received msgs. at once as I could in some earlier versions. I can select all but only can delete them one at a time by tapping the trash barrel.  How can it delete at once all the selected (red dot) inbox msgs, and them delete them from the Trash since that's where they end up?  Thanks!

    As long as they are in a continuous range, select the first, then hold SHIFT and click on the last. All in between will be selected. You can also use CTRL-click to add or remove individual songs from the selection. When you are ready you can delete the selection.
    You might find iTunes Folder Watch useful if your missing files are scattered randomly through the library.
    tt2

  • Any suggestions how can I delete or archive items with DocTitle as *.html ?

    Any suggestions how can I delete or archive items with DocTitle as *.html ? These are the email templates checked in by Fusion Apps, and all I know are the DocTitles.
    Archive servervice seems a better way to delete items at same time keep a backup. but not sure what's the correct way to setup/use the "aExportQuery" parameter. Seems it's been ignored from the ADD_ARCHIVE and EXPORT_ARCHIVE idccommands, codes listed below.
    @Properties LocalData
    IdcService=ADD_ARCHIVE
    IDC_Name=CommonDomain_ucm11g_cs
    aArchiveName=archive_test
    aArchiveDescription=this is an archive test
    aCopyWebDocuments=0
    aDoReplace=0
    aExportQuery=Standard Query ValuePanel UseExportDate 0 AllowExportPublished 0 AllRevisions 1 LatestRevisions 0 NotLatestRevisions 0 MostRecentMatching 0 CurrentIndex 0 Clauses dDocTitle:contains:.html CustomQuery dDocTitle%LIKE%'#%.html#%' IsCustom 0
    @end
    @Properties LocalData
    IdcService=EXPORT_ARCHIVE
    aArchiveName=archive_emt
    IDC_Name=CommonDomain_ucm11g_cs
    aExportQuery=Standard Query ValuePanel UseExportDate 0 AllowExportPublished 0 AllRevisions 1 LatestRevisions 0 NotLatestRevisions 0 MostRecentMatching 0 CurrentIndex 0 Clauses dDocTitle:contains:.html CustomQuery dDocTitle%LIKE%'#%.html#%' IsCustom 0
    dataSource=RevisionIDs
    aDoDelete=1
    @end
    <<EOD>>

    You could use the Archiver app. You can use that app as-needed or set it up so that all items are setup to delete once they're checked in.
    -ryan

  • How to reuse deleted personnel number in sap

    Dear All.
    how to reuse deleted personnel number in sap
    please help me
    Regards,
    Baqar Iqbal

    Iqbal
    We can reuse the deleted number
    Say once u have deleted all the information relaed to the pernr . Go to PA04  in the current no status give the deleted no and hire an employee in PA40
    Note : this will applicable only in cretain cased so i would like to know in which context u want this

  • Recently my iPhone 4s receives "phantom" SMS messages with the sender "unkown" dated 1/1/70. I delete the MSG and it appears again, and idea how to permantely delete them? I have reset my phone also.

    Recently my iPhone 4s receives "phantom" SMS messages with the sender "unkown" dated 1/1/70. I delete the MSG and it appears again, and idea how to permantely delete them? I have reset my phone also. Haven't done a hard reset.

    Same issue with my girlfriend's iPhone 4.
    I also started a thread at  https://discussions.apple.com/thread/3611603
    if you find any solution yourself let me know and ill do the same

  • How can i delete readed msg from inbox

    i am developing blog application using struts. how can i delete msg from inbox folder.
    i am using following code to read mail. how to delete messages :?
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.Folder;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Store;
    public class MainClassSimple {
    public static void main(String[] args) throws Exception {
    Properties props = new Properties();
    String host = "hostname.com";
    String username = "[email protected]";
    String password = "password";
    String provider = "pop3";
    Session session = Session.getDefaultInstance(props, null);
    Store store = session.getStore(provider);
    store.connect(host, username, password);
    Folder inbox = store.getFolder("INBOX");
    if (inbox == null) {
    System.out.println("No INBOX");
    System.exit(1);
    inbox.open(Folder.READ_WRITE);
    Message[] messages = inbox.getMessages();
    for (int i = 0; i < messages.length; i++) {
    System.out.println("Message " + (i + 1));
    //messages.writeTo(System.out);
    Address address[] =messages[i].getFrom();
    for (int j = 0; j < address.length; j++) {
              getMailAddress(address[j].toString());
    messages = inbox.expunge();
    //System.out.println(messages[0].isExpunged());
    inbox.close(false);
    store.close();
    private static void getMailAddress(String address) {
         int i = address.indexOf("<");
         address = address.substring(i+1, address.length()-1);
         System.err.println(address);

    i am developing blog application using struts. how can i delete msg from inbox folder.
    i am using following code to read mail. how to delete messages :?
    import java.util.Properties;
    import javax.mail.Address;
    import javax.mail.Folder;
    import javax.mail.Message;
    import javax.mail.Session;
    import javax.mail.Store;
    public class MainClassSimple {
    public static void main(String[] args) throws Exception {
    Properties props = new Properties();
    String host = "hostname.com";
    String username = "[email protected]";
    String password = "password";
    String provider = "pop3";
    Session session = Session.getDefaultInstance(props, null);
    Store store = session.getStore(provider);
    store.connect(host, username, password);
    Folder inbox = store.getFolder("INBOX");
    if (inbox == null) {
    System.out.println("No INBOX");
    System.exit(1);
    inbox.open(Folder.READ_WRITE);
    Message[] messages = inbox.getMessages();
    for (int i = 0; i < messages.length; i++) {
    System.out.println("Message " + (i + 1));
    //messages.writeTo(System.out);
    Address address[] =messages[i].getFrom();
    for (int j = 0; j < address.length; j++) {
              getMailAddress(address[j].toString());
    messages = inbox.expunge();
    //System.out.println(messages[0].isExpunged());
    inbox.close(false);
    store.close();
    private static void getMailAddress(String address) {
         int i = address.indexOf("<");
         address = address.substring(i+1, address.length()-1);
         System.err.println(address);

  • How i can delete purchase requistion  item from sap smartforms

    how i can delete purchase requistion  item from sap smartforms.

    Hello,
    Smartforms are printable documents,u cannot delete from smratforms.
    U have to handle this in the print program.
    Regards

  • How do I delete emails instead if archiving them

    How do I delete emails instead of archiving them?

    go to settings/mail contacts etc tap on your email account name then make sure archive messages is off

  • How do I delete my iCloud archive file.

    I can't open my iCloud archive file. I was told I need to delete it and then restore a new file. If I can't open this file how can I delete it?

    I can't open my iCloud archive file. I was told I need to delete it and then restore a new file. If I can't open this file how can I delete it?

  • How can we delete prospects from SAP CRM

    Hello All,
    How can we delete prospects from SAP CRM in back ground for a list of selected BP's.
    Thanks,
    Raj.

    Hi Raj,
    You can use tx BUPA_DEL to delete the BP's you don't need anymore.
    Cheers,
    Heber Olivar

  • How do I delete ebooks in Archives on iPod Touch 2nd Gen

    The ebooks I've downloaded are listed in my iPod Touch 2nd Gen Archives.  Since they are mostly Library books they cannot be read again.
    1.  How do I delete these books?
        I do not have Wi-Fi, but use the Library to download books.
        I sync my iPod Touch 2nd Gen with my iMac Snow leopard OSX 10.6.8
      My current downloads are through Kindle software (Amazon), others with Eucalyptus...
      Bringing up my acct through iTunes and clicking Kindle... NONE of the many books in ARCHIVE on iPod Touch are listed in the iTunes Kindle icon, nor is the Eucalyptus icon shown in this box.  However, Eucalyptus is shown in the list of software icons.
    It's no big deal if this Archived Listing on iPod Touch Gen 2 is not taking up any memory, but if it is, I'd like these books to be deleted.
    Thank you for your advice.  Frances

    That answer is where the problem comes in....
    They are NOT AUDIO books, they are just plain normal e-books, for reading.
    They do not show up on any lists on iTunes.
    I would suppose that only someone who downloads ebooks from the Library would know
    how to delete books from the Archives on iPod 2nd Gen.  Audio books are handled differently.
    Thank you for trying.  Frances

  • How can i delete or archive idoc with status 30,02,51

    I try to delete idoc with Sara and also running program RSEXARCA with.
    When create variant and i want to choose the status i can't find the status 30, 02, 51.
    How can I delete thus idocs with this status?
    Thanks
    Menashe.

    Yes. WE11 Would do.
    But, one request.
    Next time when  you post a query related to Idocs, post it in Data Transfers section. If you do so you will get very quick reply compared to the response you get in ABAP General Section.
    Thanks,
    Babu Kilari

  • TS3899 How do I delete email from my iphone 4. I have 258 msgs and 2 in trash? want to delete all. Thx

    How do I delete email from my iphone4.  I have 258 messages and 2 in trash. I want them all gone. THX

    http://www.brighthub.com/mobile/iphone/articles/85897.aspx

  • PI 7.1 Archiving - Delete

    hi Team,
    We have PI 7.1 production environment and planning to implement ARCHIVING & DELETE for Integration Engine, Adapter Engine and Business Process Engine based messages.
    I had referred to 'How to arhive & delete' doc that highly available in SDN but few question after going through the doc.
    1. If a interface flagged for ARCHIVING then all messages in complete message status gets automatically Archived
    2. And if interface not flagged for ARCHIVING then all messages of those interfaces gets automatically Deleted
    Ofcourse on these both the cases, the corresponding action takes place only provided the retention period candition meets.
    1. But Wondering, How about the messages that NOT successfully processed? Somewhere in SDN i red the NOT completetly proccessed messages require to be first 'Cancelled' and then they get marked for ARCH so that it gets archived! So in this case, both 'Synchronous" and "Asynchronous" not completely proccessed messages have to be marked for 'Cancel' before they get Archived?
    2. Keeping this aside how the not completely processed archving, Why we need to archive the messages that are not completely proccessed in PRODUCTION environment?
    3. In regards to 'NOT Completely processed' messages, I agree to certain extend that "All these have to be removed" from Database so that we gain disk space that helps improve the performance also? Please share your knowledge.
    4. Either Archiving or Delete mechanism has any dependance or functional variations on Synchronous and Asysnchronous?
    I highly appriciate all those add their knowledge here to clarify
    Regards
    Sekhar

    Dear Sekhar,
    let me go through your questions step by step...
    1. But Wondering, How about the messages that NOT successfully processed? Somewhere in SDN i red the NOT completetly proccessed messages require to be first 'Cancelled' and then they get marked for ARCH so that it gets archived! So in this case, both 'Synchronous" and "Asynchronous" not completely proccessed messages have to be marked for 'Cancel' before they get Archived?
    This is almost correct. Canceling is required for asynchonous messages in error state only. By canceling a message its state changes from error to final and this it is allowed to be archived. In contrast synchronous messages are final right when processing fails.
    Please note: archiving applies to asynchronous messages only. It is a general decision by SAP to not archive synchronous messages.
    2. Keeping this aside how the not completely processed archving, Why we need to archive the messages that are not completely proccessed in PRODUCTION environment?
    Once an asynchronous message enters the central Intergation Server(IS) or the local Integration Engine(IE) XI/PI takes over responsibility for this message. Canceling a message means a serious violation of the EO/EOIO protocol. This violation needs to be documented in productive environments for the purpose of tracebility.
    3. In regards to 'NOT Completely processed' messages, I agree to certain extend that "All these have to be removed" from Database so that we gain disk space that helps improve the performance also? Please share your knowledge.
    I am not quite sure that I got the point. For each message entering the IS/IE SAP has to provide a guided procedure to reorganize this message. For successfully processed messages this is done by standard house-keeping jobs for archivng and deletion. For messages in error state there are basically two ooptions:
    (1) restert message after error has been fixed;
         -   if message processing is sucessful this time, we are back to normal
         -   if message processing fails again, we are in the very same siutation as before
    (2) cancel messages; this males the message 'final' and then it is treated like sucessfully processed messages.
    Thus, this is all about defining an end point in the lifecycle of each message.

Maybe you are looking for

  • Not recognized by computer, is it dead?

    Plugged my granddaughters first generation shuffle into my Macbook to put on new music and charge it up. She said there had been some problems with it, so when a message came up saying it was corrupted and gave me the option of restoring it, I did, s

  • Security role with alias KeystoreAdministrator does not exist.

    i have a error trying to start  the java engine of a Solution Manager 4.0 SR2 on AIX with ibm jdk SR9 the next log is about the std_server0.out i do not how to create the alias because i can not connect using Visual Administrator because the server n

  • Adding two generic number types

    Hi all, As a small exercise I am trying to devise a generic maths class that can add two numbers together either Integer, Float and Double types. I have written the following code class Test { public static void main(String args[]) {      MathClass<I

  • Adobe Connect + Present

    Is there a special offer for educational organization if we are looking to use a great volume of Adobe Presenter, Connect, etc? thanks

  • Mi Iphone 5 takes pictures blurred

    Hi community i few weeks ago my iphone 5 have been taken pictures blurred, i dont know how to fix it, if anyone can help me ???, i restore my iphone with the original settings i deleted everything but the problem still there, any ideas??