<?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 exit vs function module exit in sap abap in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079022#M1970697</link>
    <description>&lt;P&gt;I am not understanding the difference between these two. &lt;/P&gt;
  &lt;P&gt;I have one requirement like if so item is tagged with advance receipt, then only it will not all you to delete that line item. &lt;/P&gt;
  &lt;P&gt;For this I have gone to MV45FZZ program and find userexit_check_xvbap_delete and my code. Can anyone suggest me if I am going into wrong way. &lt;/P&gt;</description>
    <pubDate>Wed, 25 Sep 2019 14:59:26 GMT</pubDate>
    <dc:creator>former_member1277403</dc:creator>
    <dc:date>2019-09-25T14:59:26Z</dc:date>
    <item>
      <title>user exit vs function module exit in sap abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079022#M1970697</link>
      <description>&lt;P&gt;I am not understanding the difference between these two. &lt;/P&gt;
  &lt;P&gt;I have one requirement like if so item is tagged with advance receipt, then only it will not all you to delete that line item. &lt;/P&gt;
  &lt;P&gt;For this I have gone to MV45FZZ program and find userexit_check_xvbap_delete and my code. Can anyone suggest me if I am going into wrong way. &lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 14:59:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079022#M1970697</guid>
      <dc:creator>former_member1277403</dc:creator>
      <dc:date>2019-09-25T14:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: user exit vs function module exit in sap abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079023#M1970698</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You are implementing User Exit, which is a valid way.&lt;/P&gt;&lt;P&gt;FM exits are implemented through SMOD/CMOD and can be identified by CALL CUSTOMER-FUNCTION.&lt;/P&gt;&lt;P&gt;More details:&lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.sap.com/questions/4096867/difference-between-customer-exit-and-user-exit.html"&gt;https://answers.sap.com/questions/4096867/difference-between-customer-exit-and-user-exit.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;GK&lt;/P&gt;</description>
      <pubDate>Wed, 25 Sep 2019 15:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079023#M1970698</guid>
      <dc:creator>GK817</dc:creator>
      <dc:date>2019-09-25T15:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: user exit vs function module exit in sap abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079024#M1970699</link>
      <description>&lt;P&gt;Hello &lt;A href="https://answers.sap.com/users/868687/sanjibgangulymca.html"&gt;Sanjib Ganguly&lt;/A&gt;,&lt;/P&gt;&lt;P&gt;Greetings!&lt;/P&gt;&lt;P&gt;Yes implementing USER_EXITS is better in this case. USER-EXITS primarily came into picture for SD Module. Both user exits and Function Exits are features provided by SAP. Considering your current requirement USER_EXITS suits the best. You just need to take care during Upgrade activities.&lt;/P&gt;&lt;P&gt;On a short note on FUNCTION EXITS, they are more encapsulated form of enhancements provided. We cannot implement them as such, we have to wrap them up into a project through predefined enhancements available for them. You can see key words CALL CUSTOMER FUNCTION in any standard programs, these are the external plugins through which your requirement is added.&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Thu, 26 Sep 2019 04:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079024#M1970699</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2019-09-26T04:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: user exit vs function module exit in sap abap</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079025#M1970700</link>
      <description>&lt;P&gt;Thank you. &lt;/P&gt;&lt;P&gt;That means I can write my logic in the userexit "&lt;U&gt;userexit&lt;/U&gt;_check_xvbap_for_delete" And make my code as implicit enhancement with in this user exit. I have worked on this way and it's working. &lt;/P&gt;&lt;P&gt;Suggestions please if my approach is right or wrong please. &lt;/P&gt;</description>
      <pubDate>Sat, 28 Sep 2019 20:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-vs-function-module-exit-in-sap-abap/m-p/12079025#M1970700</guid>
      <dc:creator>former_member1277403</dc:creator>
      <dc:date>2019-09-28T20:17:22Z</dc:date>
    </item>
  </channel>
</rss>

