HT1338 how to route the mails directly to the folders in MS Office

I need to know how to route the messages to folders from In Box once they arrived in MS Office. I tried by applying rules but its not working.

Hi,
we can check the multiline  present in receiver determination  and specify the condition for both US an UK  receiver systems.
Or   if you are sure that only  two (UK and US) will come , then check the condition for  Say  UK and  check the defualt reciver system in case of failure ,if its US it will go to the default system.
You can also  try out the interface determination condition, please check if below links can help.
How to write Conditions in Interface Determination for 2 IDOCs
Single File to multiple IDoc
Reciever idoc adapter Determination error
Regards,
Srini

Similar Messages

  • How do I stop mail from looping the same emails into inbox?

    How do I stop mail from looping the same emails into the inbox over and over again? It does the same thing with deleted messages that keep showing up again and again in multiples even after deleting them. I have made sure my server settings in all email accounts are set to delete immediately once I delete them on my MacBook Pro/IPhone. This issue has severely compromised the efficiency of Mail on my MacBook. Thanks for any help you're able to give me.

    I have tried that but it does not fix the problem.
    The "card" group is not a previous recipient.
    Although not available for editing in Contacts, it is a valid group showing up in the "To" field of Messages, Mail, or any app using the AddressBook.
    Its associated file is automatically created in:
    ~/Library/ApplicationSupport/AddressBook/Sources/<hexaFolder>/MetaData/<hexa>ABG roup.abcdg
    This is why it also shows up in the Spotlight results...
    If I manually remove this file, it gets recreated...
    If I turn off the syncing through iCloud, the entry gets deleted. If I turn it up, it comes back!

  • On Ios 7 how do you delete songs directly on the iPhone

    on ios 7 how do you delete songs directly on the phone

    i think i stumbled onto a solution.
    the upgrade to os7 brought a bunch of music into my phone i didn't care to hear anymore.
    (free downloads from the itunes twitter feed..some of them are good, most of them i normally delete immediately)
    i had 3 pesky songs that would not allow me to delete.
    every other song in my library gave me the option to delete, just not the ones i never wanted to hear again.
    ..super frustrating when the song keeps starting over everytime you touch it while scrambling for a delete option.
    they were purchases which i'd hidden.
    i plugged to computer and tried to use iTunes to delete but they did not appear.
    all "show all" options for music and video were off.
    itunes match was off.
    all automatic downloads were off.
    "show all music" was off.
    i logged out of my apple ID for several minutes.
    i think this may have given time for my account to resynchronize the items i didn't want to see anymore.
    i've logged back in and they're still gone.
    i don't care if i hear a new eric clapton song again for the rest of the year thank you.

  • My gmail account is no longer available on my iPad 2 in the mail queue at the bottom. How can I reset it?

    This morning when I opened my iPad to check my email, the mail queue at the bottom was blank when I opened it. Upon further tries of trying to reset, it keeps telling me it can verify and that if I save the info submitted, it may not be available to me. How do I go back to yesterday when it worked?

    (1) Download the Windows Installer CleanUp utility installer file (msicuu2.exe) from the following Major Geeks page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page):
    http://majorgeeks.com/download.php?det=4459
    (2) Doubleclick the msicuu2.exe file and follow the prompts to install the Windows Installer CleanUp utility. (If you're on a Windows Vista or Windows 7 system and you get a Code 800A0046 error message when doubleclicking the msicuu2.exe file, try instead right-clicking on the msicuu2.exe file and selecting "Run as administrator".)
    (3) In your Start menu click All Programs and then click Windows Install Clean Up. The Windows Installer CleanUp utility window appears, listing software that is currently installed on your computer.
    (4) In the list of programs that appears in CleanUp, select any Apple Software Update entries and click "Remove", as per the following screenshot:
    (5) Quit out of CleanUp, restart the PC and try another iTunes install using an iTunesSetup.exe (or iTunes64Setup.exe) downloaded from the Apple Website:
    http://www.apple.com/itunes/download/
    Does it go through properly this time?

  • How to send a mail by ckicking the button using java

    hi,
    how to send a mail by clicking the button (like payroll silp in that contain one button if we click that it autometically go through the mail as a attachment) pls frd to me my gmail is [email protected]

    Hi,
    It seems we are doing the homework for you; to make you start with something; look at the sample code below and try to understand it first then put the right values
    to send an email with an attachement.
    import java.awt.BorderLayout;
    import java.awt.event.ActionEvent;
    import java.util.Date;
    import java.util.Properties;
    import javax.activation.DataHandler;
    import javax.activation.FileDataSource;
    import javax.mail.Message;
    import javax.mail.MessagingException;
    import javax.mail.Multipart;
    import javax.mail.Session;
    import javax.mail.Transport;
    import javax.mail.internet.InternetAddress;
    import javax.mail.internet.MimeBodyPart;
    import javax.mail.internet.MimeMessage;
    import javax.mail.internet.MimeMultipart;
    import javax.swing.AbstractAction;
    import javax.swing.Action;
    import javax.swing.JButton;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JTextField;
    public class Main {
          * @param args
         public static void main(String[] args) {
              // Create the frame
              String title = "Frame Title";
              JFrame frame = new JFrame(title);
              // Create a component to add to the frame
              JComponent comp = new JTextField();
              Action action = new AbstractAction("Button Label") {
                   // This method is called when the button is pressed
                   public void actionPerformed(ActionEvent evt) {
                        System.out.println("sending email with attachment");
                        sendEmail();
              // Create the button
              JButton button = new JButton(action);
              // Add the component to the frame's content pane;
              // by default, the content pane has a border layout
              frame.getContentPane().add(comp, BorderLayout.SOUTH);
              frame.getContentPane().add(button, BorderLayout.NORTH);
              // Show the frame
              int width = 300;
              int height = 300;
              frame.setSize(width, height);
              frame.setVisible(true);
         protected static void sendEmail() {
              String from = "me@localhost";
              String to = "me@localhost";
              String subject = "Important Message";
              String bodyText = "This is a important message with attachment";
              String filename = "c:\\tmp\\message.pdf";
              Properties properties = new Properties();
              properties.put("mail.stmp.host", "localhost");
              properties.put("mail.smtp.port", "25");
              Session session = Session.getDefaultInstance(properties, null);
              try {
                   MimeMessage message = new MimeMessage(session);
                   message.setFrom(new InternetAddress(from));
                   message.setRecipient(Message.RecipientType.TO, new InternetAddress(
                             to));
                   message.setSubject(subject);
                   message.setSentDate(new Date());
                   // Set the email message text.
                   MimeBodyPart messagePart = new MimeBodyPart();
                   messagePart.setText(bodyText);
                   // Set the email attachment file
                   MimeBodyPart attachmentPart = new MimeBodyPart();
                   FileDataSource fileDataSource = new FileDataSource(filename) {
                        @Override
                        public String getContentType() {
                             return "application/octet-stream";
                   attachmentPart.setDataHandler(new DataHandler(fileDataSource));
                   attachmentPart.setFileName(filename);
                   Multipart multipart = new MimeMultipart();
                   multipart.addBodyPart(messagePart);
                   multipart.addBodyPart(attachmentPart);
                   message.setContent(multipart);
                   Transport.send(message);
              } catch (MessagingException e) {
                   e.printStackTrace();
    }The sample above is not ideal so you need to go through it and start to ask me some questions if you have
    Let me know if you miss something
    Regards,
    Alan Mehio
    London,UK

  • How can I get Mail to capitalise the first letter of a sentence?

    Hello all,
    this is my first time using apple Support Community.  i am a new apple user and have just got my first MacBookPro (its wonderful).  however, i am having some difficulties. 
    How can i get Mail to capitalize the first letter of a sentence and also capitalize 'i' as 'I' automatically?
    Also, how can i get apps like Pages to do the same? and for that matter typing into internet sites like this one? look at the lack of automatic punctuation!!
    Thank you all for any advice and tips you may have. 
    Paul.

    I don't think whether it's easier or not is really an issue.  The problem is that all of these wonderful technologies are taking away our understanding of how to communicate in writing.  It's not a matter of being lazy and not "wanting" to do it, but rather getting to a point where many people "can't" do it.
    I certainly wasn't pointing any fingers.  I use a calculator (or computer if I happen to be on one at the time) to do the most basic math calculations.  I can be out to lunch with co-workers and we have to pull out a calculator to split a bill 4 ways.  I went through school at a time when calculators were not permitted.  So, at one time, I could have easily done all of that stuff in my head.  So far as math goes, my mind has turned to mush a long time ago.  I doubt I could work my way through a long division problem at this point... even if I sat there and really tried.
    Computers were not generally consumer items when I was growing up.  So I didn't grow up in a world with spell checking.  I have certainly grown to use it though and I'm sure my ability to spell properly has diminished somewhat because of it.  I tend to be less careful when typing something out.  If I'm not sure of the spelling on something, I just let my computer either fix it or give me a suggestion for the corrected spelling.  Fortunately, I grew up having to rely on my own ability to spell, so with that foundation, I tend to do fairly well when it comes to spelling.
    We're at a point now where systems can correct grammar and sentence structure.  I think all of these are great tools to help us out, but they shouldn't be used to take the place of actually knowing how to do things.  Having said that, I'm fairly sure that is exactly what will happen.  Just as today, I rely almost entirely on some form of electronics for everyday math, I'm sure people growing up today with expert systems able to correct everything will rely on those equally.

  • I have a Mac Air. I use the mail application all the time.. The red, yellow, and green buttons disappeared at the top of screen... now i have to force quit mail.. how do it get the buttons back?

    I have a Mac Air. I use the mail application al the time. THe red, yellow, and green buttons disappeard. i have to force-quit now to close mail.. How do i get the buttons back? thanks.

    Mail window may be in the Full Screen mode.
    Move the mouse pointer to the top right corner of the Mail window and hold it there.
    Menu bar should drop down and click the blue double arrow icon.
    Full Screen toggle shortcut:  control + command + F

  • How to focus a row directly when the search found the result....in active w

    how to focus a row directly when the search found the result....in active widget

    Considering that I don't understand what you're talking about - does altering the selection of the widget and requesting the focus help?

  • How do I remove the superscript number from the Mail icon on the Dock?

    I have unsuccessfully  searched all folders and topics on the left side of the Mail page to find one supposed incoming email, as the Mail icon indicates with a numeral One on the Mail Icon in the dock to no avail.  How can I either find this unread email via a shortcut, or remove the superscript "1" from the Mail icon on the Dock? Thanks!

    Hmm, this seems kind of too obvious, but when I look at Mail, in the MAILBOXES sidebar on the left, every mailbox and folder has an oval to the right of its name listing how many unread messages it has.  (Sadly, I have a lot of ovals with big numbers in them!)
    Doesn't one of your ovals have a "1" in it?
    Hope that helps...
    Ivan

  • How can i change the scroll direction of the trackpad? Someone hooked a mouse up to it and it changed the settings and I cant change it back.

    How can i change the scroll direction of the trackpad? Someone hooked a mouse up to it and it changed the settings and I cant change it back.

    >System Preferences>Hardware>Mouse>Point & Click>Scroll Direction.

  • How can i refresh the mail, to see the latest email received from my hotmail account. If i close Mail, the program, and re-open, then I can see the latest mail received. Is there a key combo-short-cut to do this.

    how can i refresh the mail, to see the latest email received from my hotmail account. If i close Mail, the program, and re-open, then I can see the latest mail received. Is there a key combo-short-cut to do this.

    isaackito wrote:
    how can i refresh the mail, to see the latest email received from my hotmail account. If i close Mail, the program, and re-open, then I can see the latest mail received. Is there a key combo-short-cut to do this.
    Mailbox menu>Get New Mail:

  • How do I prevent Mail from Zipping the attachment?

    When I send a .pages file by e-mail, Mail zips the file to .pages.zip.
    The network software at this University blocks .zip. How do I prevent Mail from zipping the file? I tried turning off the "send windows-friendly", but but still zips.

    Assuming this is iWork '08 or earlier, the "documents" are actually packages. A package is really a folder hierarchy. A folder cannot be emailed unless it is archived somehow. Mail does this automatically; most other email programs would be incapable of sending a bare Pages document at all.
    You could use some other non-blocked archive format, like tar or StuffIt. Or maybe you could rename it so that the mail servers don't recognize it as zip. You would have to instruct your recipient to rename it back. I understand that iWork '09 archives documents by default, although they are not named .zip, so that should be no longer an issue.

  • How do you get mail out of the Outbox?

    How do you get mail out of the Outbox?  I've taken pictures and am trying to email them.  The emails are stuck in Outbox.
    lee.ann3

    Thanks Diggie, your response was very close.  I clicked on the email several times.  It came up and gave me the option to Send.  I clicked Send and my recipients received the email.
    I did not have to delete and reinstall my email account.
    Have a good day.
    lee.ann3

  • Could not open gmail on the mail application of the mac book pro. Gmail has two account types, SMTP and Google IMAP. In both cased failure in trying to log on to SMTP and Google IMAP because I have to verify that the username and password are correct.  Ho

    Could not open gmail on the mail application of the mac book pro.
    Gmail has two account types, SMTP and Google IMAP.
    In both cases failure in trying to log on to SMTP and Google IMAP because I have to verify that the username and password are correct.
    How do I verify that? Please help. Thanks.

    Routing gmail through Mail.app:
    imap-http://mail.google.com/support/bin/answer.py?answer=81379&topic=12814
    pop-http://mail.google.com/support/bin/answer.py?answer=13275&topic=12810
    More up-to-date advice here:
    http://www.macworld.com/article/2033842/make-mail-and-gmail-play-nice.html#tk.nl _mwhelp
    Note that you lose privacy when using Gmail (and Yahoo):
    Gmail and Yahoo both scan users' emails. They do algorithmic analysis of your email messages, targeting ads that relate to the content of your messages.

  • IPad- on Yahoo pages the mail icon with the red number indication shows email.  When I tap, it asks me to sign in again. I do. It takes me to yahoo mail but there is nothing.  All the folders are emptied. All mail is either read, trash, or deleted.

    iPad- on all Yahoo pages the mail icon with the red number indication shows email.  When I tap, it asks me to sign in again. I do. It takes me to yahoo mail but there is nothing.  All the folders are emptied. All my mail is either read, trash, or deleted. Also, when I tap on the mail app on iPad home page, gmail is no problem but for yahoo I get error: no password for yahoo. Go to Mail Account Settings and enter password.  I'm stuck. Suggestions?  Thank you.

    Ask and you shell receive.....lol
    Go to your Gmail account in the browser.
    Hit the folder icon that brings up the folder selection.
    Scroll down to the bottom and select desktop version.
    The broswer will refresh and bring up your gmail account as though you were looking on it on the computer.
    The go to the upper right corner and select settings.
    Then go to forwarding and pop/imap
    Go look at pop download
    There you'll find 3 numbered lines
    Go to 1. Status
    And select enable pop for all mail
    Then save the settings
    Once you have done that you can go back to BlackBerry device settings and sync your mail or wait for it to sync it's self.
    Let me know how it works out.
    I just did it and it sync within minutes.

Maybe you are looking for

  • Cannot change frame resolution

    I am unable to render out a different frame size than the original media. The original media is ProRes HQ 1920x1080, but I need to render an NTSC version of the final colored project. All project settings are set correctly and appropriate changes in

  • Set different PO type when convert PR to PO using ME59N

    Hi SAP, This process is for third Party Sales Order, PR will be created after Third party Sales order is save, Then i use ME59N to convert the PR into PO. the problem is, The PR order type is "NB", when convert the PR into PO it will carry PR Order t

  • How to search in OID(LDAP) by createtimestamp?

    I have a code: import javax.naming.directory.BasicAttributes; import javax.naming.Context; import javax.naming.NamingEnumeration; import javax.naming.NamingException; import javax.naming.directory.DirContext; import javax.naming.directory.InitialDirC

  • Manual disk removal?

    I am trying to install XP using boot camp. At one point of the installation I am prompted to insert an XP CD to verify that I qualify for the XP Pro upgrade I am installing. I have an XP Home Edition CD to put in the slot to verify, but I cannot ejec

  • NWDI broken by itself  DC('s)

    Hi I'm also very new to NWDI. For a customer were busy with XSS/ESS. When starting NWDI i've got hunderds of broken by Itself DC's Impoting SC resolved most of them. No I only got one left : ess/tw/addr So the question is how do I figure out to which