<?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 where to put my code in standard sap code? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-to-put-my-code-in-standard-sap-code/m-p/4874380#M1139406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I put my code in any part(implicit enhancement option) of a stardard sap code(va01)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, I need to move some fields from vbak to vbap in transaction va01.&lt;/P&gt;&lt;P&gt;I founded the user exit but I need to use a new badi.&lt;/P&gt;&lt;P&gt;Is it an obligation to use this user exit? or with the new enhancement framework, where can I move this fields without using the user exit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Dec 2008 18:47:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-22T18:47:26Z</dc:date>
    <item>
      <title>where to put my code in standard sap code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-to-put-my-code-in-standard-sap-code/m-p/4874380#M1139406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can I put my code in any part(implicit enhancement option) of a stardard sap code(va01)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, I need to move some fields from vbak to vbap in transaction va01.&lt;/P&gt;&lt;P&gt;I founded the user exit but I need to use a new badi.&lt;/P&gt;&lt;P&gt;Is it an obligation to use this user exit? or with the new enhancement framework, where can I move this fields without using the user exit?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Dec 2008 18:47:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-to-put-my-code-in-standard-sap-code/m-p/4874380#M1139406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-22T18:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: where to put my code in standard sap code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-to-put-my-code-in-standard-sap-code/m-p/4874381#M1139407</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;You can use user exit MV45AFZZ for moving field VBAK &amp;amp; VBAP.&lt;/P&gt;&lt;P&gt;^ VBAK - routine USEREXIT_MOVE_FIELD_TO_VBAK&lt;/P&gt;&lt;P&gt;^ VBAP - routine USEREXIT_MOVE_FIELD_TO_VBAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 03:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-to-put-my-code-in-standard-sap-code/m-p/4874381#M1139407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T03:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: where to put my code in standard sap code?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/where-to-put-my-code-in-standard-sap-code/m-p/4874382#M1139408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Can I put my code in any part(implicit enhancement option) of a stardard sap code(va01)?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; For example, I need to move some fields from vbak to vbap in transaction va01.&lt;/P&gt;&lt;P&gt;&amp;gt; I founded the user exit but I need to use a new badi.&lt;/P&gt;&lt;P&gt;&amp;gt; Is it an obligation to use this user exit? or with the new enhancement framework, where can I move this fields without using the user exit?&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi Rafael,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just want to share my opinion on this.&lt;/P&gt;&lt;P&gt;In general, the priority will always like this:&lt;/P&gt;&lt;P&gt;1. Try to find BADI or Enhancement Spot to meet your requirement first.&lt;/P&gt;&lt;P&gt;2. If no BADI can fulfil your requirement, search for any user exit/screen exit/subroutine exit or any other exit provided by SAP.&lt;/P&gt;&lt;P&gt;3. If above options still can not fulfil requirement given, make use of implicit enhancement with extra careful because you can change the expected behaviour of SAP code with your additional code.&lt;/P&gt;&lt;P&gt;4. The last and final option is modify SAP standard code which is not recommended. You need to do a careful assessment on your requirement to see if this requirement really have to be implemented or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That're my consideration when choosing enhancement approach and i believe it is the above opinion still valid until now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Dec 2008 04:38:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/where-to-put-my-code-in-standard-sap-code/m-p/4874382#M1139408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-23T04:38:26Z</dc:date>
    </item>
  </channel>
</rss>

