<?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/1264135#M148595</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to find a user exit that is used by a particular SAP screen.  I have used a program that finds all user exits by transaction, but most of the descriptions for those exits vague.  Does anyone have a way of finding the exact user exit(s) for a given screen within an SAP transaction?  I have gone to some various screens, went to its program and performed a find on "call customer," but without luck.  Also, I know there are at least a dozen exits for transaction F-43, but when I go to the main code of function group FKMT and perform the find on "call customer" I get no hits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please lend me some helpful advice.  Your assistance is greatly anticipated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Apr 2006 12:32:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-03T12:32:50Z</dc:date>
    <item>
      <title>User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/1264135#M148595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to find a user exit that is used by a particular SAP screen.  I have used a program that finds all user exits by transaction, but most of the descriptions for those exits vague.  Does anyone have a way of finding the exact user exit(s) for a given screen within an SAP transaction?  I have gone to some various screens, went to its program and performed a find on "call customer," but without luck.  Also, I know there are at least a dozen exits for transaction F-43, but when I go to the main code of function group FKMT and perform the find on "call customer" I get no hits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone please lend me some helpful advice.  Your assistance is greatly anticipated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2006 12:32:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/1264135#M148595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-03T12:32: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/1264136#M148596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;  You can Use the Enhancement &amp;lt;b&amp;gt;F180A001 and FM incl ZXF48U01&amp;lt;/b&amp;gt;, it will stop for you when you check or save in F-43 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2006 12:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/1264136#M148596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-03T12:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/1264137#M148597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jason,&lt;/P&gt;&lt;P&gt;this is a another way for finding user exits..&lt;/P&gt;&lt;P&gt;to find user exits applicable for a given SAP screen. From the SE38 screen, enter the desired screen main program, and click Utilities &amp;gt; Find In Source Code, and "CUSTOMER-FUNCTION" as the text to search for. This will give you a list of the user exits and where they are called from for all screens in the module pool.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Note: format of ABAP statement is CALL CUSTOMER-FUNCTION '009', for example. This is the statement called by a submodule attached to the main program.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Actual related function is EXIT_SAPLCOIH_009, for example. This example refers to customer function 9 in main program SAPLCOIH. Not all user exit functions are names as such, but this is the usual format.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If you are doing data validation and want to set an error message with a field open, you must be sure that the user exit you are using is linked to a calling module in the PAI section of the screen and the field you wish to be open was in the CHAIN statement which caused the PAI module to be invoked.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If you use a customer function which was invoked by a PBO module to validate data, the "MESSAGE" statement will cause the screen to return with the desired message at the bottom, but with all screen fields closed for input.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;When you make changes to the include module for a given customer function, you must regenerate the related function group before you will see the changes included in the screen behaviour.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if useful..&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2006 12:43:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/1264137#M148597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-03T12:43:44Z</dc:date>
    </item>
  </channel>
</rss>

