<?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: Difference  between user exit and customer exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803449#M914759</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;customer exits comes under enhancements but user exits comes under modification,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customer eixs dont need access key but user exits need access key while coding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customer exits are function module exits but user exits are subroutiene exits&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;PRASANTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2008 10:39:22 GMT</pubDate>
    <dc:creator>prasanth_kasturi</dc:creator>
    <dc:date>2008-05-15T10:39:22Z</dc:date>
    <item>
      <title>Difference  between user exit and customer exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803446#M914756</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;      Experts,&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;          Could anyone please tell me the Difference  between user exit and customer exit in details,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 10:35:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803446#M914756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T10:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Difference  between user exit and customer exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803447#M914757</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;Difference between user exits &amp;amp; customer exits: &lt;/P&gt;&lt;P&gt;User exit - A user exit is a three character code that instructs the system to access a program during system processing. &lt;/P&gt;&lt;P&gt;SXX: S is for standard exits that are delivered by SAP.   XX represents the 2-digit exit number. &lt;/P&gt;&lt;P&gt;UXX: U is for user exits that are defined by the user.  XX represents the 2-digit exit number &lt;/P&gt;&lt;P&gt;Customer exit - The R/3 enhancement concept allows you to add your own functionality to SAP&amp;#146;s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.     *-- Mani &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;The following document is about exits in SAP :- &lt;/P&gt;&lt;P&gt;The R/3 enhancement concept allows you to add your own functionality to SAP&amp;#146;s standard business applications without having to modify the original applications.  &lt;/P&gt;&lt;P&gt;SAP creates user exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks. &lt;/P&gt;&lt;P&gt;Types of Exits  &lt;/P&gt;&lt;P&gt;There are several different types of user exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons. &lt;/P&gt;&lt;P&gt;Menu Exits &lt;/P&gt;&lt;P&gt;Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications. &lt;/P&gt;&lt;P&gt;SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item&amp;#146;s text when activating the item in an add-on project. &lt;/P&gt;&lt;P&gt;Screen Exits &lt;/P&gt;&lt;P&gt;Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen&amp;#146;s flow logic. &lt;/P&gt;&lt;P&gt;Function Module Exits  &lt;/P&gt;&lt;P&gt;Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits.  &lt;/P&gt;&lt;P&gt;When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated.  &lt;/P&gt;&lt;P&gt;Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs.  &lt;/P&gt;&lt;P&gt;These calls have the following syntax:  &lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION &amp;#145;001&amp;#146;. &lt;/P&gt;&lt;P&gt;Field Exits &lt;/P&gt;&lt;P&gt;Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.  Example: The data element BBBNR identifies a company&amp;#146;s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100.  &lt;/P&gt;&lt;P&gt;The field exit concept lets you create a special function module that contains this logic.  &lt;/P&gt;&lt;P&gt;You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number.  &lt;/P&gt;&lt;P&gt;In 4.6c, you can use "RSMODPRF" program to create field exits. &lt;/P&gt;&lt;P&gt;An example of a user exits :- &lt;/P&gt;&lt;P&gt;MODULE user_exit_0001 INPUT  &lt;/P&gt;&lt;P&gt;    CASE okcode. &lt;/P&gt;&lt;P&gt;        WHEN 'BACK OR EXIT'. &lt;/P&gt;&lt;P&gt;            CASE sy-dynnr. &lt;/P&gt;&lt;P&gt;                    WHEN '100'. &lt;/P&gt;&lt;P&gt;                         SET SCREEN 0. &lt;/P&gt;&lt;P&gt;                         LEAVE SCREEN. &lt;/P&gt;&lt;P&gt;                    WHEN '200'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                         SET SCREEN 100. &lt;/P&gt;&lt;P&gt;                         LEAVE SCREEN. &lt;/P&gt;&lt;P&gt;             ENDCASE. &lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 10:36:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803447#M914757</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T10:36:29Z</dc:date>
    </item>
    <item>
      <title>Re: Difference  between user exit and customer exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803448#M914758</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 10:36:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803448#M914758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T10:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Difference  between user exit and customer exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803449#M914759</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;customer exits comes under enhancements but user exits comes under modification,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customer eixs dont need access key but user exits need access key while coding&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customer exits are function module exits but user exits are subroutiene exits&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;PRASANTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 10:39:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803449#M914759</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-05-15T10:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Difference  between user exit and customer exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803450#M914760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;User exit - A user exit is a three character code that&lt;/P&gt;&lt;P&gt;instructs the system to access a program during system&lt;/P&gt;&lt;P&gt;processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SXX: S is for standard exits that are delivered by SAP. XX&lt;/P&gt;&lt;P&gt;represents the 2-digit exit number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UXX: U is for user exits that are defined by the user. XX&lt;/P&gt;&lt;P&gt;represents the 2-digit exit number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customer exit - The R/3 enhancement concept allows you to&lt;/P&gt;&lt;P&gt;add your own functionality to SAP&amp;#146;s standard business&lt;/P&gt;&lt;P&gt;applications without having to modify the original&lt;/P&gt;&lt;P&gt;applications. SAP creates customer exits for specific&lt;/P&gt;&lt;P&gt;programs, screens, and menus within standard R/3&lt;/P&gt;&lt;P&gt;applications. These exits do not contain any functionality.&lt;/P&gt;&lt;P&gt;Instead, the customer exits act as hooks. You can hang your&lt;/P&gt;&lt;P&gt;own add-on functionality onto these hooks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following document is about exits in SAP :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The R/3 enhancement concept allows you to add your own&lt;/P&gt;&lt;P&gt;functionality to SAP&amp;#146;s standard business applications&lt;/P&gt;&lt;P&gt;without having to modify the original applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP creates user exits for specific programs, screens, and&lt;/P&gt;&lt;P&gt;menus within standard R/3 applications. These exits do not&lt;/P&gt;&lt;P&gt;contain any functionality. Instead, the customer exits act&lt;/P&gt;&lt;P&gt;as hooks. You can hang your own add-on functionality onto&lt;/P&gt;&lt;P&gt;these hooks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types of Exits&lt;/P&gt;&lt;P&gt;There are several different types of user exits. Each of&lt;/P&gt;&lt;P&gt;these exits acts as hooks where you can attach or "hang"&lt;/P&gt;&lt;P&gt;your own add-ons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Menu Exits&lt;/P&gt;&lt;P&gt;Menu exits add items to the pulldown menus in standard SAP&lt;/P&gt;&lt;P&gt;applications. You can use these menu items to call up your&lt;/P&gt;&lt;P&gt;own screens or to trigger entire add-on applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP creates menu exits by defining special menu items in the&lt;/P&gt;&lt;P&gt;Menu Painter. These special entries have function codes that&lt;/P&gt;&lt;P&gt;begin with "+" (a plus sign). You specify the menu item&amp;#146;s&lt;/P&gt;&lt;P&gt;text when activating the item in an add-on project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen Exits&lt;/P&gt;&lt;P&gt;Screen exits add fields to screens in R/3 applications. SAP&lt;/P&gt;&lt;P&gt;creates screen exits by placing special subscreen areas on a&lt;/P&gt;&lt;P&gt;standard R/3 screen and calling a customer subscreen from&lt;/P&gt;&lt;P&gt;the standard screen&amp;#146;s flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Module Exits&lt;/P&gt;&lt;P&gt;Function module exits add functions to R/3 applications.&lt;/P&gt;&lt;P&gt;Function module exits play a role in both menu and screen exits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you add a new menu item to a standard pull down menu,&lt;/P&gt;&lt;P&gt;you use a function module exit to define the actions that&lt;/P&gt;&lt;P&gt;should take place once your menu is activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function module exits also control the data flow between&lt;/P&gt;&lt;P&gt;standard programs and screen exit fields. SAP application&lt;/P&gt;&lt;P&gt;developers create function module exits by writing calls to&lt;/P&gt;&lt;P&gt;customer functions into the source code of standard R/3&lt;/P&gt;&lt;P&gt;programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These calls have the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION &amp;#145;001&amp;#146;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Exits&lt;/P&gt;&lt;P&gt;Field exits allow you to create your own programming logic&lt;/P&gt;&lt;P&gt;for any data element in the Dictionary. You can use this&lt;/P&gt;&lt;P&gt;logic to carry out checks, conversions, or business-related&lt;/P&gt;&lt;P&gt;processing for any screen field. Example: The data element&lt;/P&gt;&lt;P&gt;BBBNR identifies a company&amp;#146;s international location number.&lt;/P&gt;&lt;P&gt;You might want to set up your R/3 System so that all&lt;/P&gt;&lt;P&gt;international location numbers are larger than 100.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 10:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803450#M914760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T10:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: Difference  between user exit and customer exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803451#M914761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is User Exits and Customer Exits?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Difference between user exits &amp;amp; customer exits:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User exit - A user exit is a three character code that instructs the system to access a program during system processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SXX: S is for standard exits that are delivered by SAP.   XX represents the 2-digit exit number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UXX: U is for user exits that are defined by the user.  XX represents the 2-digit exit number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customer exit - The R/3 enhancement concept allows you to add your own functionality to SAP&amp;#146;s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.     *-- Mani&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following document is about exits in SAP :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The R/3 enhancement concept allows you to add your own functionality to SAP&amp;#146;s standard business applications without having to modify the original applications. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP creates user exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types of Exits &lt;/P&gt;&lt;P&gt;There are several different types of user exits. Each of these exits acts as hooks where you can attach or "hang" your own add-ons.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Menu Exits&lt;/P&gt;&lt;P&gt;Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item&amp;#146;s text when activating the item in an add-on project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen Exits&lt;/P&gt;&lt;P&gt;Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen&amp;#146;s flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function Module Exits &lt;/P&gt;&lt;P&gt;Function module exits add functions to R/3 applications. Function module exits play a role in both menu and screen exits. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you add a new menu item to a standard pull down menu, you use a function module exit to define the actions that should take place once your menu is activated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function module exits also control the data flow between standard programs and screen exit fields. SAP application developers create function module exits by writing calls to customer functions into the source code of standard R/3 programs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These calls have the following syntax: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION &amp;#145;001&amp;#146;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Exits&lt;/P&gt;&lt;P&gt;Field exits allow you to create your own programming logic for any data element in the Dictionary. You can use this logic to carry out checks, conversions, or business-related processing for any screen field.  Example: The data element BBBNR identifies a company&amp;#146;s international location number. You might want to set up your R/3 System so that all international location numbers are larger than 100. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field exit concept lets you create a special function module that contains this logic. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You assign the special function module to the data element BBBNR. You then assign the module to any programs and screens in which users can add new international location numbers. When you activate your field exit, the system automatically triggers your special routine whenever a user enters a company location number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In 4.6c, you can use "RSMODPRF" program to create field exits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;An example of a user exits :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE user_exit_0001 INPUT 
    CASE okcode.
        WHEN 'BACK OR EXIT'.
            CASE sy-dynnr.
                    WHEN '100'.
                         SET SCREEN 0.
                         LEAVE SCREEN.
                    WHEN '200'.
******************************************************************************
**** Note that you can write any code that satisfy your needs.                                                     ****
**** But in this case, this was wrote as a sample code for reference sake.                                    ****
**** And you can test it.                                                                                ****
****************************************************************************** 
                         SET SCREEN 100.
                         LEAVE SCREEN.
             ENDCASE.
      ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 10:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803451#M914761</guid>
      <dc:creator>p291102</dc:creator>
      <dc:date>2008-05-15T10:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Difference  between user exit and customer exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803452#M914762</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;User exit: A user exit is a three character code that instructs the system to access a program during system processing. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SXX: S is for standard exits that are delivered by SAP. XX represents the 2-digit exit number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UXX: U is for user exits that are defined by the user. XX represents the 2-digit exit number &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customer exit: The R/3 enhancement concept allows you to add your own functionality to SAP&amp;#146;s standard business applications without having to modify the original applications. SAP creates customer exits for specific programs, screens, and menus within standard R/3 applications. These exits do not contain any functionality. Instead, the customer exits act as hooks. You can hang your own add-on functionality onto these hooks.&lt;/P&gt;&lt;P&gt;1. Previously there were only user-exits.&lt;/P&gt;&lt;P&gt;2. Then came the concept of customer-exits.&lt;/P&gt;&lt;P&gt;3. user exits were nothing but subroutines&lt;/P&gt;&lt;P&gt;FORM/PERFORM&lt;/P&gt;&lt;P&gt;called from standard programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. The FORM defintion was placed inside&lt;/P&gt;&lt;P&gt;an empty include file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. So It was called EVERYTIME.&lt;/P&gt;&lt;P&gt;and we need to MODIFY/REPAIR the&lt;/P&gt;&lt;P&gt;standard include .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Then it came with concept of customer-exit&lt;/P&gt;&lt;P&gt;7. It consists of calling a FUNCTION MODULE,&lt;/P&gt;&lt;P&gt;which is called only if &lt;/P&gt;&lt;P&gt;the user-exit is ACTIVATED (other wise not called)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, the code in put inside&lt;/P&gt;&lt;P&gt;a pre-defined Z include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. Functionality of both is same, howerver&lt;/P&gt;&lt;P&gt;we can note the following important differences&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a) Customer exit is called only if activated.&lt;/P&gt;&lt;P&gt;(hence, it does not waste resources)&lt;/P&gt;&lt;P&gt;b) in customer exit, REPAIR does not happen&lt;/P&gt;&lt;P&gt;to the standard include.&lt;/P&gt;&lt;P&gt;Exits are basically the hooks whcih SAP has provided to add your own code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please can anyone give me exact user/customer exits, which will be called after saving the document...&lt;/P&gt;&lt;P&gt;document is saved after the below routine..&lt;/P&gt;&lt;P&gt;SAPMV45A&lt;DEL&gt;&amp;gt;MV45AF0C_CHANGE_DOCUMENT_CREAT&lt;/DEL&gt;&amp;gt;CALL FUNCTION 'SD_XVBLB_CHANGES'&lt;/P&gt;&lt;P&gt;Transaction Code - VA02 Change Sales Order&lt;/P&gt;&lt;P&gt;Exit Name Description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SDTRM001 Reschedule schedule lines without a new ATP check&lt;/P&gt;&lt;P&gt;V45A0001 Determine alternative materials for product selection&lt;/P&gt;&lt;P&gt;V45A0002 Predefine sold-to party in sales document&lt;/P&gt;&lt;P&gt;V45A0003 Collector for customer function modulpool MV45A&lt;/P&gt;&lt;P&gt;V45A0004 Copy packing proposal&lt;/P&gt;&lt;P&gt;V45E0001 Update the purchase order from the sales order&lt;/P&gt;&lt;P&gt;V45E0002 Data transfer in procurement elements (PRreq., assembly)&lt;/P&gt;&lt;P&gt;V45L0001 SD component supplier processing (customer enhancements)&lt;/P&gt;&lt;P&gt;V45P0001 SD customer function for cross-company code sales&lt;/P&gt;&lt;P&gt;V45S0001 Update sales document from configuration&lt;/P&gt;&lt;P&gt;V45S0003 MRP-relevance for incomplete configuration&lt;/P&gt;&lt;P&gt;V45S0004 Effectivity type in sales order&lt;/P&gt;&lt;P&gt;V45W0001 SD Service Management: Forward Contract Data to Item&lt;/P&gt;&lt;P&gt;V46H0001 SD Customer functions for resource-related billing&lt;/P&gt;&lt;P&gt;V60F0001 SD Billing plan (customer enhancement) diff. to billing plan&lt;/P&gt;&lt;P&gt;No of Exits: 15&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;These r the main differences between user exits and customer exits&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) user exits r subroutines where as customer exits r function modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) user exits r not upgraded where as customer exits r will upgrade&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) customer exits r used for creating and additional fields or menu items to stadard tcode where as user exits r used for enabling or disabling the fields on the standrd screen or concatenating the key fields,it is not used adding an additional componenats to stadard tcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4) customer exits r reusable where as user exits r not reusable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Userexits --&amp;gt; implemented in subroutines -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; modifications --&amp;gt; fails in upgrades.&lt;/P&gt;&lt;P&gt;2. Customer exits --&amp;gt; implemente using func modules --&amp;gt; enhancement --&amp;gt; doesnot fail in upgrades&lt;/P&gt;&lt;P&gt;Customer exits: *&lt;/P&gt;&lt;P&gt;Implemented as Function Modules within z includes. Anybody can change it and no access key is required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User Exit:&lt;/P&gt;&lt;P&gt;Implemented as subroutines within includes (any include except y or z includes). You need access for the specific include and then you can any subroutine (user exit) within that Include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BADIs are the enhanced version of user exits where the same logic is implemented via classes and object (OOP)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enchancement point is the latest once introduces with ECC6.0 . Not very sure about that but you can change it without any access key.&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;Sarada&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 10:44:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/difference-between-user-exit-and-customer-exit/m-p/3803452#M914762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T10:44:11Z</dc:date>
    </item>
  </channel>
</rss>

