<?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: Implict enhancement inside user exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349290#M1639943</link>
    <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;adiforsap24&lt;/SPAN&gt; I find that programming in OOPS in SAP makes my life much happier. Been doing it since 2000.&lt;/P&gt;&lt;P&gt;Perhaps you could consider a different career if SAP makes you unhappy.&lt;/P&gt;</description>
    <pubDate>Mon, 27 Dec 2021 08:31:57 GMT</pubDate>
    <dc:creator>matt</dc:creator>
    <dc:date>2021-12-27T08:31:57Z</dc:date>
    <item>
      <title>Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349277#M1639930</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 have requirement where my client is deciding whether to use implict enhancement inside an exit like MV45AFZZ. We are validating whether this is a right approach. Can you guys tell me the pro and cons of the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A few things we have been debating so far are like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. One developer does not need to wait for the object to be released by another developer while using enhancement. but if we get the key for MV45AFZZ, then we will have to wait for every developer to complete his task and move the development before another developer can touch the same exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. While point 1 is a clear advantage, the same time one developer might not be aware of what someone else is doing on the same object which might cause issues related to regression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Can some one tell me if there are any performance related issues between the two?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. If there are multiple implementations under the same subroutine, do these get executed in the same order or do they follow the BAdi approach and can get executed in any order?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide any other things that you can think of as well...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Nov 2011 18:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349277#M1639930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-19T18:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349278#M1639931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is not the best approach to be followed, there are other ways of doing it. For example you can create a subroutine program which will include subroutine with the parameters you need and you can write the logic inside that. This subroutine program and routine is stored in a custom table against the actual user exit name (MV45AFZZ), In the user exit you will write a select query to this custom table and to get the actual program and routine name and you will use that variable to pass it to the statement which calls this subroutine using PERFORM dynamic statement. You can have a field for priority and also you can have other attributes depending on your requirement. This can be used inside any kind of enhancements to separate the logic and to avoid regression testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answer for your queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. One developer does not need to wait for the object to be released by another developer while using enhancement. but if we get the key for MV45AFZZ, then we will have to wait for every developer to complete his task and move the development before another developer can touch the same exit.&lt;/P&gt;&lt;P&gt;---&amp;gt;&lt;STRONG&gt;This advantage can be achieved by different ways as mentioned above, also, this is a rare scenario and project development plan can be prepared in a way that it does need two developers working on the same object&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;2. While point 1 is a clear advantage, the same time one developer might not be aware of what someone else is doing on the same object which might cause issues related to regression.&lt;/P&gt;&lt;P&gt;---&amp;gt;&lt;STRONG&gt;If both are writing the logics which are dependent on each other then definitely they should be combined together&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;3. Can some one tell me if there are any performance related issues between the two?&lt;/P&gt;&lt;P&gt;---&amp;gt;*Yes, there could be performance issue but not that very high unless you bring in alot of such enhancements *&lt;/P&gt;&lt;P&gt;4. If there are multiple implementations under the same subroutine, do these get executed in the same order or do they follow the BAdi approach and can get executed in any order?&lt;/P&gt;&lt;P&gt;---&amp;gt; They will be executed in the same order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Nov 2011 20:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349278#M1639931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-19T20:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349279#M1639932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prasanna, Thanks for the reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would you be able to elaborate the point where you have mentioned about performance? How does having multiple enhancements impact performance?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vikram.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Nov 2011 21:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349279#M1639932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-19T21:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349280#M1639933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me re frame my answer, it won't affect the performance at a significant level. But i was trying to say is IMPLICIT ENHANCEMENTS are not recommended by SAP.. &lt;/P&gt;&lt;P&gt;The performance is only about loading the enhancement programs when you call VA01 transaction which will be least significant that you would notice. &lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Prasanna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Nov 2011 22:20:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349280#M1639933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-19T22:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349281#M1639934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any pros or cons that someone else can think of?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vikram.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2011 19:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349281#M1639934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-20T19:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349282#M1639935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Implicit enhancements since they function through BADI (new CLASSes / methods added to memory call stack) may make a little addition to memory requirements also. Although it would still be negligible considering how large the SAPMV45A program is with all its tables and variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for pros, I like the idea of using implicit enhancements in MV45AF* user exits as it would definitely standardized the way coding will be done and of course multiple projects can make their changes and if one project gets delayed they can simply inactivate their enhancement implementation when the other goes live.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Though this will still not preclude coordination between competing teams, coordination that is required not just for resolving coding conflicts but also coordination during parallel testing in the QA environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Moreover, implicit enhancement options appear only at particular position like after FORM and before ENDFORM etc. This will be bit restrictive. If strictly direct coding in MV45AF* includes is prohibited then we can overcome this as SAP allows multiple enhancement implementations for each enhancement option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Having said that, I have conveniently managed multiple teams modifying MV45AFZZ and MV45AFZB in one of my previous projects. Idea was to create multiple blank includes and put them in various forms of MV45AFZZ and MV45AFZB and transport them to production. A blank include doesn't impact anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The key here is to have all the blank includes transported to production before any project uses them. Later when needed we assign the blank includes separately to each competing project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a project gets delayed and won't go live whereas another is tested and ready for go live. The project going live can safely do their transport with only their include containing their changes, whereas the other include remains in dev and test.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we want to inactivate coding of a particular project we can simply comment out the INCLUDE statement. This is similar to making an enhancement implementation inactive.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Nov 2011 19:33:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349282#M1639935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-20T19:33:12Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349283#M1639936</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;Please create a badi definition( not implicit enhancement) with required methods and call it inside the exit.. I have read an article in SDN which demonstrates this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here its is [Implementing a badi in an enhancement project|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0456c54-0901-0010-f0b3-cd765fb99702?QuickLink=index&amp;amp;overridelayout=true] - Here the badi is implemented in a customer exit and you can also follow this approach for an user exit. Read the part under &lt;STRONG&gt;Historic Problem&lt;/STRONG&gt; you will get the answer to your questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For execuitng the badi implementation in the order read [Need to control sequence of calls of Business Add In|http://www.google.co.in/url?sa=t&amp;amp;rct=j&amp;amp;q=badi%20sorter&amp;amp;source=web&amp;amp;cd=3&amp;amp;ved=0CDUQFjAC&amp;amp;url=http%3A%2F%2Fwww.sdn.sap.com%2Firj%2Fscn%2Findex%3Frid%3D%2Flibrary%2Fuuid%2Fe0d2f214-b1a5-2a10-f3a0-98c95afcf281%26overridelayout%3Dtrue&amp;amp;ei=G-LJTvDuH8XoOenOiLUL&amp;amp;usg=AFQjCNHyBqBKxEiBsvoxIke3nvsPLHdjhQ&amp;amp;sig2=ggqKb76zqoZ8F03NkbcGwQ&amp;amp;cad=rja]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kesav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshav.T on Nov 21, 2011 10:23 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2011 04:38:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349283#M1639936</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-11-21T04:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349284#M1639937</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keshav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot. The idea of implementing a BAdi would solve the problem to a big extent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikram.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 02:57:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349284#M1639937</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-22T02:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349285#M1639938</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vikram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;2. While point 1 is a clear advantage, the same time one developer might not be aware of what someone else is doing on the same object which might cause issues related to regression.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not sure how implementing the BAdI helps you resolve this problem? Also it adds an overhead of controlling the sequence of BAdI implementations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMHO the article referenced by Keshav was published for a release(4.6c) which did not have Enhancement framework. If you're working for Release &amp;gt; 6.0, i think you should use implicit enhancements rather than creating a custom BAdI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually we've created implicit enhancement(s) in the standard FI validation program RGGBR00 for plugging in our user-exits. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know your thoughts!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 06:06:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349285#M1639938</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-11-22T06:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349286#M1639939</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nothing related to the question from OP.  Just want to point out something on your quote&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;Actually we've created implicit enhancement(s) in the standard FI validation program RGGBR00 for plugging in our user-exits. &lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do we really need to have an implicit enhacement for standard validation program RGGBR000 ? AFAIK, you can copy the standard one to Z program and assign the customized program using transaction code GCX2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Vinod&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S : Applogies for taking this thread to a different direction...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Vinod Kumar on Nov 22, 2011 12:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 06:43:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349286#M1639939</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-22T06:43:12Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349287#M1639940</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;AFAIK, you can copy the standard one to Z program and assign the customized program using transaction code GCX2.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for not mentioning the reason explicitly &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i remember correctly there is a comment in the program where it is mentioned to copy it to implement the user-exits. Even in my previous project(ECC5.0), we followed the same approach&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then came ECC6.0 &amp;amp; along with it brought fancy "implict" enhancement points. So why bother copy the program? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You get one less custom object to worry about, actually. Let me know your thoughts!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS: Actually it was me who hijacked the thread. But if it is for a constructive discussion, i don't mind &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 07:34:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349287#M1639940</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2011-11-22T07:34:25Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349288#M1639941</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;You get one less custom object to worry about, actually&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Completely agree with you.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my earlier project, the instruction from project lead was "Touch SAP standard objects/implicit enhacement only if there is no alternative".  GCX2 was the alternative for me add new user exists for FI validation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Nov 2011 07:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349288#M1639941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-22T07:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349289#M1639942</link>
      <description>&lt;P&gt;One disadvantage I know is in that case always use retrieve version mechanism to get back previous state.&lt;/P&gt;&lt;P&gt;If ever any of non trained abaper used a copy paste operation with any intention to retrieve some old code,your enhancement implementations will be lost as enhancement implementations will not come in clipboard.&lt;/P&gt;&lt;P&gt;Further it bring more work to you during upgrades if SENH is needed to adjust those.&lt;/P&gt;&lt;P&gt;I have seen this practice been adopted in some earlier clients I worked with but frankly speaking I am strongly against total oops and the way sap is organizing it.&lt;/P&gt;&lt;P&gt;Sap is not making life of people easier but more and more miserable with every day.&lt;/P&gt;</description>
      <pubDate>Sat, 25 Dec 2021 15:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349289#M1639942</guid>
      <dc:creator>former_member755692</dc:creator>
      <dc:date>2021-12-25T15:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: Implict enhancement inside user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349290#M1639943</link>
      <description>&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;adiforsap24&lt;/SPAN&gt; I find that programming in OOPS in SAP makes my life much happier. Been doing it since 2000.&lt;/P&gt;&lt;P&gt;Perhaps you could consider a different career if SAP makes you unhappy.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Dec 2021 08:31:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/implict-enhancement-inside-user-exit/m-p/8349290#M1639943</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2021-12-27T08:31:57Z</dc:date>
    </item>
  </channel>
</rss>

