<?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: FORM Vs FUNCTION EXITS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/form-vs-function-exits/m-p/2327198#M511560</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;In FORM exits you will directly modifying standard sap code..For example..SD USER exits..go to the include MV45AFZZ....check for the user exits in there..they all will be form exits..This require access key to add code to the user exit...and doesn't require project activation in CMOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function exits..are function modules exit..where you don't require an access key to modify the code..But requires a project activation in CMOD for the enhancement for the code to trigger..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jun 2007 05:20:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-08T05:20:32Z</dc:date>
    <item>
      <title>FORM Vs FUNCTION EXITS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form-vs-function-exits/m-p/2327197#M511559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am a little confused on FORM &amp;amp; FUNCTION EXITS...can anyone provide me what exactly is the differnce between these two. How we go about using these two in various scenarioes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 05:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form-vs-function-exits/m-p/2327197#M511559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T05:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: FORM Vs FUNCTION EXITS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form-vs-function-exits/m-p/2327198#M511560</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;In FORM exits you will directly modifying standard sap code..For example..SD USER exits..go to the include MV45AFZZ....check for the user exits in there..they all will be form exits..This require access key to add code to the user exit...and doesn't require project activation in CMOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function exits..are function modules exit..where you don't require an access key to modify the code..But requires a project activation in CMOD for the enhancement for the code to trigger..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 05:20:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form-vs-function-exits/m-p/2327198#M511560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T05:20:32Z</dc:date>
    </item>
    <item>
      <title>Re: FORM Vs FUNCTION EXITS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form-vs-function-exits/m-p/2327199#M511561</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;&amp;lt;b&amp;gt;FORM EXITS&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Form exits/Userxits allow us to add our own functionality to SAP standard program&lt;/P&gt;&lt;P&gt;without  modifying it . These are implemented in the form of subroutines and hence are also known as FORM EXITs. The userexits are generally collected in includes and attached to the standard program by the SAP.&lt;/P&gt;&lt;P&gt;    All Userexits start with the word USEREXIT_...&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;FORM USEREXIT_..&lt;/P&gt;&lt;P&gt;z..&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;The problem lies in finding the correct userexit and how to find it if one exists for the purpose. Once the correct userexit is found the necessary&lt;/P&gt;&lt;P&gt;customer code is inserted in the customer include starting with the z..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;FUNCTION EXITS&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are used to add functionality through ABAP code . These start from the word EXIT_programname_NNN ending in a 3 digit number. No access code is required to implement any tupe of exit including function exits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The function exits are called from the standard SAP program in the form&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;of ABAP statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION 'NNN' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; This is in contrast to USEREXITs where PERFORM statement is used to call&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the required userexit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; To implement the FUNCTION EXITs first of all the project is created and a suitable enhancement package is selected and from its compnents &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;ravish&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;plz dont forget to reward points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        ravish goyal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jun 2007 05:21:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form-vs-function-exits/m-p/2327199#M511561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-08T05:21:29Z</dc:date>
    </item>
  </channel>
</rss>

