E-Mailing ERS through T-Code MRRL using a specific E-Mail Address

Hello Everyone:
Wondering if anyone knows a solution to an issue we are coming across.  I tried searching using different terms, but couldn't find an answer.
By default system uses the first e-mail address saved in Vendor Master to e-mail ERS; whereas, we would like to use the 3rd e-mail address (for example) instead.  Is there a BADI, User-Exit, or Enhancement Spot that I can utilize?  Do you know which program, form, function module, etc. MRRL uses to get e-mail address from Vendor Master?
Thanks in advance and if you have any questions, please let me know.
Thanks,

Hi Naveen:
Enhancement can be placed at the end of Form check_comm_type of Include LSZAFF05.  Please see the example below.  In this case, this enhancement is limited only to T-Codes MRRL and MR90.
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""$"$\SE:(1) Form CHECK_COMM_TYPE, End                                                                                                                         A
*$*$-Start: (1)---------------------------------------------------------------------------------$*$*
enhancement 1  zei_emad4ers.    "active version
** E-Mail Address determination for Evaluated Receipt Settlement (ERS).
   if sy-tcode = 'MRRL' or sy-tcode = 'MR90'.
      read table <lt_comm_table>
           assigning <ls_comm_table>
           index 3.   " Third E-Mail Address stored in Vendor Master
      if sy-subrc <> 0.
         message a890 with 'LT_COMM_TABLE' raising internal_error.
      endif.
      ascf ev_comm_values ls_comtypes-table_type <ls_comm_value>.
      <ls_comm_value> = <ls_comm_table>.
      ev_comm_type = cs_strategy-comm_type.
      cs_strategy-status = 'F'.
   endif.
endenhancement.
*$*$-End:   (1)---------------------------------------------------------------------------------$*$*
Hope this helps, but if you have any questions, please let me know.
Thanks,

Similar Messages

  • I want to clean up my icloud account but I can not delete my mail storage and I don't using icould for my mails?

    I want to clean up my icloud account but I can not delete my mail storage and I don't using icould for my mails so there's nothing in the trash.

    Which email provider do you use if not iClouf?

  • Mail box behaviour is not okay using gmail. All mails in INBOX gets replicated in Trash. This is a recent phenomenon. Not clear where the problem lies - in Gmail or in new OS in MAC.

    I use MAC Mail box for my gmail account. In the last one month or so, my gmail behaviour is erratic.  When I tyrpe mails and send, a spate of intermediate version gets stored as draft in TRASH forcing these to be manually deleted.
    Another new issue: All INBOX Mails appear now in TRASH also.  If I delete, Trash contents, I lost all mail in INBOX also. I re-created my INBOX content from Archive Mail box. Then all mails appear in TRASH folder alaso.
    I am not sure where the problem lies - Is it an issue of Gamil, or new Maverick OS that I use in my MACPRO.  This was never before say one or two months before.
    The situation is distrubing and please advice whether I should reset any configuration.
    Regards
    Venkat

    I removed all mails sitting in Trash this time by using DELETE command; and then again clicked "REBUILD".  Now the Trash is empty.   I hope the problem is resolved for now. Thanks for the tips given instantly. Venkat

  • I have been having problems with e-mails coming through to my 3g iphone recently, my e-mail provider recommended diabling the SSL as a default option but im not sure where to find this on the phone can anyone help?told

    Please can you advise how to disable the SSL on my iphone, i am not sure where the setting is.
    Thanks
    Tania

    Go to Settings/Mail, Contacts, Calendars.  Tap the name of the email account. If you don't see a bar labeled "Advance" near the bottom,  Tap Account.  Tap Advanced.   Under Incoming Settings, there should be an option to Use SSL.  If it is ON, tap it to turn it off.

  • Tax code is not picked up while doing ERS with T. Code. MRRL

    Hi Experts,
          I have got one Scheduling Agreement of certain material and based on goods receipt quantity user is performing ERS with T. Code MRRL. but when we are seeing different invoice documents generated by ERS with T. Code MIR4 for the same Scheduling Agreement, we are finding in some invoice document(In Basic data tab) didn't pick Tax Code and some invoice documents have picked Tax code.
    Following things are already maintained.
    1) Scheduling agreement is having tax code maintained.
    2) ERS field is ticked in Scheduling agreement
    3) Vendor is ticked for ERS
    4) GR based IV is ticked in Scheduling agreement
         Can some body suggest why this is happening

    Hi.,
    have u maintained the info record & tax code in info record for that particular material.
    please check it.
    Regards,
    Satpal

  • User Exit for changing RBKP-BVTYP in t-Code MRRL

    Hi ,
    We have to change Partner bank type field (RBKP-BVTYP) while creating invoice through t-code MRRL. i tried to find out the user exit or BADI for this
    purpose, but i could not.
    i found below user exits and badi but here i was unable to change the value. there were other exits but there also it was not possible to change the value.
    Enhancement MRMH0001 - component - EXIT_SAPLMRMH_001 and EXIT_SAPLMRMH_002
    here only limited change to RBKP is permitted.
    I tried with BADI INVOICE_UPDATE but it is not allowed there also.
    Can we do it with some configuration or substitution rule ?  if yes then how?
    thnaks in advance
    rajpal

    Hi Emir,
    BADI BADI_SD_SALES_ITEM now changed to enhancement spot.
    In SE18: enter Enhancement spot - BADI_SD_SALES_ITEM.
    Inside enhancement spot BADI_SD_SALES_ITEM four BADI definition were exist.
    I think BADI definition MSR_SD_SALES is use full for you (This BADI definition is not reserver for SAP intrnal use.
    And above enhancement spot also not reserverd for sap internal use.
    Just try to implementation BADI definition MSR_SD_SALES and use method CHANGE_BILLING_BLOCK_ITEM.
    BR,
    Vijay

  • Only 274 mails are coming when using pop3 with java mail

    Only 274 mails are coming from GMAIL when using pop3 with java mail. but there are more than 3000 mails.
    I'm not getting the reason, code is given below:
    public static void main(String[] args) {
            // SUBSTITUTE YOUR ISP's POP3 SERVER HERE!!!
    //        String host = "pop.bizmail.yahoo.com";
    //        final String user = "[email protected]";
    //        final String password = "xxx";
            String host = "pop.gmail.com";
            final String user = "gauravjlj";
            final String password = "xxx";
            String subjectSubstringToSearch = "Test E-Mail through Java";
            try {
                 Properties prop = new Properties();
                prop.setProperty("mail.pop3.socketFactory.class",
                                            "javax.net.ssl.SSLSocketFactory");
                prop.setProperty("mail.pop3.socketFactory.fallback", "false");
                prop.setProperty("mail.pop3.port", "995");
                prop.setProperty("mail.pop3.socketFactory.port", "995");
                prop.put("mail.pop3.host", host);
                prop.put("mail.store.protocol", "pop3");
                Session session = Session.getDefaultInstance(prop);
                Store store = session.getStore();
                System.out.println("your ID is : "+ user);
                System.out.println("Connecting...");
                store.connect(host, user, password);
                System.out.println("Connected...");
                // Get "INBOX"
                Folder fldr = store.getFolder("INBOX");
                fldr.open(Folder.READ_ONLY);
                int count = fldr.getMessageCount();
                System.out.println(count  + " total messages");
                // Message numebers start at 1
                for(int i = 1; i <= count; i++) {
                                            // Get  a message by its sequence number
                    Message m = fldr.getMessage(i);
                    // Get some headers
                    Date date = m.getSentDate();
                    Address [] from = m.getFrom();
                    String subj = m.getSubject();
                    String mimeType = m.getContentType();
                    System.out.println(date + "\t" + from[0] + "\t" +
                                        subj + "\t" + mimeType);
                // Search for e-mails by some subject substring
                String pattern = subjectSubstringToSearch;
                SubjectTerm st = new SubjectTerm(pattern);
                // Get some message references
                Message [] found = fldr.search(st);
                System.out.println(found.length +
                                    " messages matched Subject pattern \"" +
                                    pattern + "\"");
                for (int i = 0; i < found.length; i++) {
                    Message m = found;
    // Get some headers
    Date date = m.getSentDate();
    Address [] from = m.getFrom();
    String subj = m.getSubject();
    String mimeType = m.getContentType();
    System.out.println(date + "\t" + from[0] + "\t" +
    subj + "\t" + mimeType);
    Object o = m.getContent();
    if (o instanceof String) {
    System.out.println("**This is a String Message**");
    System.out.println((String)o);
    else if (o instanceof Multipart) {
    System.out.print("**This is a Multipart Message. ");
    Multipart mp = (Multipart)o;
    int count3 = mp.getCount();
    System.out.println("It has " + count3 +
    " BodyParts in it**");
    for (int j = 0; j < count3; j++) {
    // Part are numbered starting at 0
    BodyPart b = mp.getBodyPart(j);
    String mimeType2 = b.getContentType();
    System.out.println( "BodyPart " + (j + 1) +
    " is of MimeType " + mimeType);
    Object o2 = b.getContent();
    if (o2 instanceof String) {
    System.out.println("**This is a String BodyPart**");
    System.out.println((String)o2);
    else if (o2 instanceof Multipart) {
    System.out.print(
    "**This BodyPart is a nested Multipart. ");
    Multipart mp2 = (Multipart)o2;
    int count2 = mp2.getCount();
    System.out.println("It has " + count2 +
    "further BodyParts in it**");
    else if (o2 instanceof InputStream) {
    System.out.println(
    "**This is an InputStream BodyPart**");
    } //End of for
    else if (o instanceof InputStream) {
    System.out.println("**This is an InputStream message**");
    InputStream is = (InputStream)o;
    // Assumes character content (not binary images)
    int c;
    while ((c = is.read()) != -1) {
    System.out.write(c);
    // Uncomment to set "delete" flag on the message
    //m.setFlag(Flags.Flag.DELETED,true);
    } //End of for
    // "true" actually deletes flagged messages from folder
    fldr.close(true);
    store.close();
    catch (MessagingException mex) {
    // Prints all nested (chained) exceptions as well
    mex.printStackTrace();
    catch (IOException ioex) {
    ioex.printStackTrace();
    Please tell me.
    Thanks                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Is it possible that GMail only allows access to untagged emails via POP3? Or only to emails from the last x days?
    POP3 is the older email retrieval protocol (IMAP4 is the more current one) and only has very limited support for folders (or anything but a single inbox, really). It's quite common that POP3 only allows access to a subset of all emails stored by a provider.

  • Sender Mail Adapter - S/MIME - How to use it?

    Hi guys,
    I am trying to figure out how to use the S/MIME security parameter of the Sender Mail Adapter in PI 7.1.
    Could anyone point me to some useful documentation/examples/blogs ?
    Or perhaps explain what steps are involved when configuring this parameter?
    We are pulling emails from an Microsoft Exchange server.
    Many thanks,
    Aldo

    First of all one sender mail adapter has to be tight with a specific sender email address.
    The email has to be decrypted as whole, you cannot decrypt parts of it.
    Then you store certificates to secure store in J2EE server and point to it in send agreement, this should be equal to HTTPS setup
    Check security guide:
    http://help.sap.com/saphelp_nwpi71/helpdata/EN/f7/c2953fc405330ee10000000a114084/frameset.htm

  • Can my husband and I use the same e-mail address/AppleID for our 2 phones, our iMac, and our Macbook?

    Can my husband and I use the same e-mail address/AppleID for our 2 phones, our iMac, and our Macbook?
    We share an e-mail account and would like to use the same e-mail address for both our phones, as well as our computers at home. Is this possible?
    We both have itunes and apple ID's of our own right now, but since getting married, we are deleting these e-mail accounts and sharing one. How can we make this work?

    You may use the same Apple ID for iTunes and App Store purchases, but using different iCloud Apple IDs is recommended.
    If you use the same iCloud account on your iPhones it will sync all of your contacts, reminders, and notes automatically and it could be a pain. I don't know exactly how you would want to have the iCloud accounts set up on the Macs, because I don't know exactly how you use them. (I am assuming you share?). But you can do whatever you like, you can even keep the same iCloud accounts, etc but you may want to disable the syncing of certain items, because reminders for ones phone popping up on the others automatically would probably get annoying, but that is just me.

  • Using Adapter-specific attributes in Mail adapter

    Hi,
    I try to use adapter-specific attributes in my Mail adapter. I set the "Use Adapter-Specific Message Attributes" indicator, but I do not get a result in the mapping and also in the SXMB_MONI the attributes are not visible.
    The documentation also refers to Variable Transport Binding indicator:<a href="http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm">http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm</a>
    Could this be the problem? I cannot find this indiciator! Does anyone know where I can find this indicator?
    Regards,
    Torsten

    Hi,
    The values for the parameters, set using adapter specific message attributes are available at runtime in the path http://sap.com/xi/XI/System/Mail.
    We need to write UDF's that can extract the values from this path.
    For Ex:
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters() .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create(
        “http://sap.com/xi/XI/System/File”,
        “FileName”);
    String valueOld = conf.get(key);
    if (valueOld != null) {
        String valueNew = valueOld.replaceAll(“input”,”output”);
        conf.put(key, valueNew);
    If you check Dynamic configuration in sxmb_moni, you would be able to find the values for all the attributes that have been set in the adapter.
    Regards,
    Smitha.

  • Using Thunderbird and not Mail App

    I was wondering which app does a Mac use when opening jpegs, gif's etc in the Mail app ? I want to use Thunderbird as my mail reader, but do not know which app that will allow me to open the same files in TB. I am using OSX 10.5. Thanks in advance.

    Mail doesn't use anything special. It does it on its own. I would assume Thunderbird would do the same.
    Perhaps there is a preference setting to turn on inline images.

  • I have both "mail" and "gmail" I don't use "mail" but it keeps coming up - how can I delete it?

    How do I get rid of "mail?"  I only use gmail

    I'm not sure what does "mail" mean, though If you mean you're using gmail by browser and you don't want to use Mail.app which come up when you login, get rid of Mail.app from System Preferences > Accounts > Login Items.
    Or if you're using Gmail with Mail.app and you don't use other accounts, open Mail.app then, Preferences > Account and delete accounts you don't need.

  • Can't open mail after installing update with 10.6.8 says my mail is out of date

    Please help - new to Macs and I installed automatic update of 10.6.8 - 4 days ago and now I can't open up mail  - it says "You can't use this version of Mail with this version of Mac OS X. You tried to open Mail version 4.5 (1084/1085) in Applications/ Mail.
    So I went to  Applications, says this message again. So I   used my discs that  came with the computer adn installed again  Applications - no luck.
    I had luckily  backed up 2 days before this update - so went to Time Machine - did restore - now good still - can't  open mail. CLick on Iconand get same messgae .
    Please help. Thank you

    rainbowmum wrote:
    Thank you for the very clear basic instructions—helpful for a newbie.…Also my first screen shot !! I see that it does not have .App next to it
    Most likely because you have Finder's preferences->Advanced->Show all filename extensions unchecked. Check it, log out, and back in and all the apps should display the .app extension.
    Now, back to your problem. If you installed the Security Update 2012-004, it failed to update Mail to 4.6; thus, your problem. Manually DL it from http://support.apple.com/kb/DL1586 and reinstall it.

  • Mail IMAP after 10.5.2 can't read ANY mails in boxes with non-ascii names

    I have Mail with IMAP that connects to a regular MAC OS X Tiger server running IMAP.
    After upgrading to 10.5.2 on the client, Mail can no longer read ANY mails at all in any mailbox whose path contains a non-ascii character!
    Hence: If a box is called 'Övrigt', it only lists the mails in the mail box, but it will not show any of the contents of any of the mails! Hence, I cannot access any of these mails! Catastrophic!
    I have to downgrade to 10.5.1, unless someone knows of a workaround.

    Same problem here (or at least in part). Some .mac folders did no longer show any messages, while they were there and could be seen online and with Thunderbird. After your remark I changed the name of a folder which contained a "´" and now it works. It is really strange because there is another folder with a "¨" in it which does not work (I will test if the name change works with this folder as well in a minute) whilst there is another one with such name which works fine. The update really messed up Mail and in Dutch we just use such characters so Mail without supporting them will be rather useless for me...

  • Can I use my existing E-mail address to retrieve my password reset through security questions

    Can I use my existing E-mail address to retrieve my password reset through security questions instead of through E-mail. When I try retrieving my new Apple password through reset through security questions?  On the Apple id, it will not allow me to do so becasue I forgot my security answers to the question. I'm naming one or two of the wrong vechiles which is what the questions ask me for for security questions.
    For icloud do you reccommend that I keep that same E-mail address or create a new one for my iCloud mail aside from my G-mail address name?
    I asked support community for the very first time to reset my security questions and it wanted me to create a new user name for iCloud when I already have *****l for my original Apple id.
    <Email Edited By Host>

    TheresaEW,
    I’d recommend contacting Apple directly to resolve your security question issue.

Maybe you are looking for

  • Logic Pro X won't record from USB or builtin audio devices

    I have a M-Audio Fast Track and I've overcome the bugs regarding audio input and Mavericks by using a new mac and upgrading to Logic Pro X.  Now I have a new issue which I think is unrelated. I can hear the guitars in Logic Pro X when I turn the moni

  • JavaBeans can interface with OpenOffice

    Hi, I ask you another question: any of you have created or used a JavaBeans can interface with OpenOffice?? I modified the java classes and finally managed to create a document. Odt OpenOffice Writer and launch from Eclipse. If I am not using the lib

  • Transfer Order Change  & Confirmation

    Hi, I have a requirement to confirm the transder order from RF transaction for Picking. The requirement is for some reason the  material is not present in the source bin proposed by the transfer oder, the user must be able to select a function key, w

  • How to start oracle policy manager

    Hello all, I don't know how start the oracle policy manager on Linux Plataform, I have installed Oracle 9.2.0.4 on RHEL3, thanks for your help

  • Contact E-mail property

    I need to display the page group Contact E-mail property from a UI template. What table is it in?