<?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 exits in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478194#M558091</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;If you doesn't find any function user exit you can add your code using the enhancement as of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implicit Enhancement Option :&lt;/P&gt;&lt;P&gt;Available are various common places examples-&lt;/P&gt;&lt;P&gt;End of executable program, Include Function group, Begin/End of form routine;End of structure; End of Private/Public/Protected Section of a local class&amp;#133;&amp;#133;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explicit Enhancement Option :&lt;/P&gt;&lt;P&gt;At specific source code places (explicitly by SAP)&lt;/P&gt;&lt;P&gt;Belong to specific Enhancement spot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Muthu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Jun 2007 14:01:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-26T14:01:51Z</dc:date>
    <item>
      <title>user exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478190#M558087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;How can I write user exits, function exits?&lt;/P&gt;&lt;P&gt;For example for a coming values from a textbox from sap standard application, I need to write an user-exit but how?&lt;/P&gt;&lt;P&gt;How can I read this textbox value and then search the structure type internal table?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 13:18:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478190#M558087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T13:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: user exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478191#M558088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for a standard sap program, how can I add my own codes?&lt;/P&gt;&lt;P&gt;How can I create subsreens at the end of standard screen?&lt;/P&gt;&lt;P&gt;How can I use cmod?&lt;/P&gt;&lt;P&gt;How can I test the result?&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;User exit is a trouble for me at these days.&lt;/P&gt;&lt;P&gt;Thanks for all of you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 13:40:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478191#M558088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T13:40:27Z</dc:date>
    </item>
    <item>
      <title>Re: user exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478192#M558089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deniz, generally the user exits is provided for SAP Standar, then your can not create user exits...&lt;/P&gt;&lt;P&gt;If you need to coming values from a textbox and applying validations then you must use field-exits.&lt;/P&gt;&lt;P&gt;For this must use transaction CMOD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 13:51:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478192#M558089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T13:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: user exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478193#M558090</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 think the below information will clarify you doubts. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION EXITS&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;   The function exits are called from the standard SAP program in the form&lt;/P&gt;&lt;P&gt;of ABAP statement &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;the required userexit.&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 the function exit to be implemented is selected and on double clicking it the exit code will appear in ABAP EDITOR(se38) where a Z include will be found and the customer code should be entered in this include.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;ADDING A DEFAULT SOLD-TO-PARTY in Sales Order Creation&lt;/P&gt;&lt;P&gt;    To show a default sold-to-party in this field when the user creates a sales order (VA01) we can use a function exit .This function exit is located&lt;/P&gt;&lt;P&gt;in enhancement no V45A0002 . Before we can choose the exit we have to &lt;/P&gt;&lt;P&gt;create a project in CMOD after that enter V45A0002 in the enhancement field and click on the components . In the components you will see the&lt;/P&gt;&lt;P&gt;exit EXIT_SAPMV45A_002 . This exit is used for our purpose.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  Double clicking on this exit will takes us to function builder (SE37) . This&lt;/P&gt;&lt;P&gt;function exit has one exporting parameters and two importing parameters, we are interested in exporting parameter which is  E_KUNNR&lt;/P&gt;&lt;P&gt;of type KNA1-KUNNR i.e if we move the desired customer name to this&lt;/P&gt;&lt;P&gt;structure(E_KUNNR) it will be shown in the field as the default value when we create the sales order.&lt;/P&gt;&lt;P&gt; This function also contains a customer include ZXVVA04 . This include&lt;/P&gt;&lt;P&gt;will be used to write our custom code .&lt;/P&gt;&lt;P&gt;  Double clicking on this include and it will prompt us that this include does not exists do you want to create this object ,select yes and the include will be created .In this include we can write our own code that will fill the field E_KUNNR.&lt;/P&gt;&lt;P&gt; e.g. E_KUNNR = 301.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Activate the include and Activate the project. Now when ever the SALES ORDER will be created , sold-to-party field will come up with a predefined&lt;/P&gt;&lt;P&gt;customer .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 13:53:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478193#M558090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T13:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: user exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478194#M558091</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;If you doesn't find any function user exit you can add your code using the enhancement as of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Implicit Enhancement Option :&lt;/P&gt;&lt;P&gt;Available are various common places examples-&lt;/P&gt;&lt;P&gt;End of executable program, Include Function group, Begin/End of form routine;End of structure; End of Private/Public/Protected Section of a local class&amp;#133;&amp;#133;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Explicit Enhancement Option :&lt;/P&gt;&lt;P&gt;At specific source code places (explicitly by SAP)&lt;/P&gt;&lt;P&gt;Belong to specific Enhancement spot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Muthu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jun 2007 14:01:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2478194#M558091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-26T14:01:51Z</dc:date>
    </item>
  </channel>
</rss>

