<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: user/customer exit after receiving e-mail in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202846#M1521519</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For a similar req, we used an Inbound exit class to process mails incoming to SAP.&lt;/P&gt;&lt;P&gt;Once the email id was created, you need to do a config in SCOT. &lt;/P&gt;&lt;P&gt;Settings -&amp;gt; Inbound processing. Here you link the email id to the class (Z_CL_xxx). &lt;/P&gt;&lt;P&gt;This class is a singleton class and must implement the Interface IF_INBOUND_EXIT_BCS (it has to implement the methods CREATE_INTANCE and PROCESS_INBOUND method of this interface).&lt;/P&gt;&lt;P&gt;Then you can define a method of your own for futher processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Liz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Aug 2010 14:14:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-26T14:14:09Z</dc:date>
    <item>
      <title>user/customer exit after receiving e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202843#M1521516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to process the mail after receiving it. Is there any user/customer that can be used after receiving an e-mail? Is there any alternative way?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- ferudun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 06:45:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202843#M1521516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-24T06:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: user/customer exit after receiving e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202844#M1521517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should be asking this question in the development forum where you will get a better response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check SO50, click on column "Exit Name" where you will find various class examples used for processing emails.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check [Inbound Distribution|http://help.sap.com/erp2005_ehp_04/helpdata/EN/6c/69c2e3418d11d1896e0000e8322d00/frameset.htm] -&amp;gt; Exits for Inbound Distribution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nelis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Aug 2010 07:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202844#M1521517</guid>
      <dc:creator>nelis</dc:creator>
      <dc:date>2010-08-24T07:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: user/customer exit after receiving e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202845#M1521518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have examined PROCESS_INBOUND method of class CL_RMPS_INCOMING_MAIL. I found that there is RMPS_POST_DEFATTR badi call. I have implemented the badi and insert endless loop in methods SET_DEFAULTS_MAIL_SMTP and SET_DEFAULTS_MAIL_BOR. I sent an e-mail but the methods I have implemented were not reached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have traced the incoming mail and there were the following lines:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IBND_PROC_POST_DECR	G	Start of Exit Processing&lt;/P&gt;&lt;P&gt;EXIT_PROCESSING	G	No Exits Found&lt;/P&gt;&lt;P&gt;IBND_PROC_POST_DECR	G	End of Exit Processing&lt;/P&gt;&lt;P&gt;IBND_PROC_POST_DECR	G	Try to Find Internal Recipients&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is missing or wrong in my work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tahnks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- ferudun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 11:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202845#M1521518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-26T11:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: user/customer exit after receiving e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202846#M1521519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;For a similar req, we used an Inbound exit class to process mails incoming to SAP.&lt;/P&gt;&lt;P&gt;Once the email id was created, you need to do a config in SCOT. &lt;/P&gt;&lt;P&gt;Settings -&amp;gt; Inbound processing. Here you link the email id to the class (Z_CL_xxx). &lt;/P&gt;&lt;P&gt;This class is a singleton class and must implement the Interface IF_INBOUND_EXIT_BCS (it has to implement the methods CREATE_INTANCE and PROCESS_INBOUND method of this interface).&lt;/P&gt;&lt;P&gt;Then you can define a method of your own for futher processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Liz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Aug 2010 14:14:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202846#M1521519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-26T14:14:09Z</dc:date>
    </item>
    <item>
      <title>Re: user/customer exit after receiving e-mail</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202847#M1521520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a look at the following blog - [Receiving E-Mail and processing it with ABAP - Version 610 and Higher|http://www.sdn.sap.com/irj/scn/weblogs?blog=/pub/wlg/795] &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt; &lt;B&gt;[original link is broken]&lt;/B&gt;;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nelis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 05:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-customer-exit-after-receiving-e-mail/m-p/7202847#M1521520</guid>
      <dc:creator>nelis</dc:creator>
      <dc:date>2010-08-27T05:59:59Z</dc:date>
    </item>
  </channel>
</rss>

