<?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 User Exits.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2731719#M634271</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt;What are the standard ways to write &amp;amp; implement user exit.&lt;/P&gt;&lt;P&gt;What code one should avoid in user exit?&lt;/P&gt;&lt;P&gt;Can we write Data base commit, Error messages table update etc. in user exit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Sep 2007 07:26:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-06T07:26:14Z</dc:date>
    <item>
      <title>User Exits..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2731719#M634271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SDN,&lt;/P&gt;&lt;P&gt;What are the standard ways to write &amp;amp; implement user exit.&lt;/P&gt;&lt;P&gt;What code one should avoid in user exit?&lt;/P&gt;&lt;P&gt;Can we write Data base commit, Error messages table update etc. in user exit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 07:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2731719#M634271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T07:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2731720#M634272</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;yes you can write messages inside user exits..but lagre commitns and updates are avoidable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exits are for generally samll validations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just check this&lt;/P&gt;&lt;P&gt;you will get every thing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.csee.umbc.edu/help/oracle8/server.815/a42525/ch11.htm#toc126" target="test_blank"&gt;http://www.csee.umbc.edu/help/oracle8/server.815/a42525/ch11.htm#toc126&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vivekanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 07:31:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2731720#M634272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T07:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2731721#M634273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;    There is no standard way to write User Exits, coz if there was a standard way SAP would have done that themselves and it would not have been called User Exits.&lt;/P&gt;&lt;P&gt;    User Exits are meant to provide you with additional functionality, which SAP doesn't provide. So User Exits are most commonly used for:&lt;/P&gt;&lt;P&gt;        - Enhancement to the existing functionality. &lt;/P&gt;&lt;P&gt;        - Populating Custom tables&lt;/P&gt;&lt;P&gt;        - Adding Field Values to Screen Exits&lt;/P&gt;&lt;P&gt;        - Sometimes for extra checks and validation that you need.&lt;/P&gt;&lt;P&gt;   Bottom Line : It allows you the flexibility to customize the standard functionality to meet your specific business needs.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   You should avoid following codes in the user exits :&lt;/P&gt;&lt;P&gt;   -Changes to the Internal Tables ,structures and variables being used by the &lt;/P&gt;&lt;P&gt;    standard program. If need be you can create a copy of the variables you need &lt;/P&gt;&lt;P&gt;    and do your processing.&lt;/P&gt;&lt;P&gt;   - Database commits should be avoided(You can write it but its not advised)&lt;/P&gt;&lt;P&gt;   - Error Messages can be  done, but be careful as to where you place it. &lt;/P&gt;&lt;P&gt;   - As long as it is Custom tables you can update them through User Exits, but &lt;/P&gt;&lt;P&gt;     not standard tables(you are not supposed to do that anywhere except SM30 &lt;/P&gt;&lt;P&gt;     or BDC).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Imran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 07:36:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2731721#M634273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T07:36:41Z</dc:date>
    </item>
  </channel>
</rss>

