<?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: ABAP Overwrite Enhancement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554423#M21161</link>
    <description>&lt;P&gt;Please move your reply under Uladzislau's answer, by using "Convert into Comment"&lt;/P&gt;</description>
    <pubDate>Tue, 16 Jan 2018 13:26:16 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2018-01-16T13:26:16Z</dc:date>
    <item>
      <title>ABAP Overwrite Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554419#M21157</link>
      <description>&lt;P&gt;Hey Guys,&lt;/P&gt;
  &lt;P&gt;just a simple Question:&lt;/P&gt;
  &lt;P&gt;If I have a SAP Standard class and implement an Overwrite Exit. Is it possible to call the Original implementation of the SAP standard? &lt;/P&gt;
  &lt;P&gt;My customer requests every Enhancement to be deactivated on Demand by editing some Custom Table parameters, and I would like to tie the Activity status to my Enhancement run.&lt;/P&gt;
  &lt;P&gt;I have already implemented this kind of conditional Enhancement in an Web Dynpro Component Overwrite Enhancement by calling me-&amp;gt;method( ) in order to refer to the Original implementation.&lt;/P&gt;
  &lt;P&gt;Thanks!&lt;/P&gt;
  &lt;P&gt;Robin&lt;/P&gt;</description>
      <pubDate>Mon, 15 Jan 2018 21:31:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554419#M21157</guid>
      <dc:creator>robinwennemuth</dc:creator>
      <dc:date>2018-01-15T21:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Overwrite Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554420#M21158</link>
      <description>&lt;P&gt;Hi Robin,&lt;/P&gt;
  &lt;P&gt;I would rather implement before exit. In before exit I can check user condition and execute EXIT command to skip standard method implementation or if needed continue with standard method execution.&lt;/P&gt;
  &lt;P&gt;Regards, Uladzislau&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 01:50:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554420#M21158</guid>
      <dc:creator>uladzislau_pralat</dc:creator>
      <dc:date>2018-01-16T01:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Overwrite Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554421#M21159</link>
      <description>&lt;P&gt;Hey Uladzislau,&lt;/P&gt;
  &lt;P&gt;thanks for your suggestion.&lt;/P&gt;
  &lt;P&gt;Would this work for an explicit Pre-Exit Enhancement for a method? I´d suppose a RETURN or EXIT statement within a Pre-Exit would just leave this procedure, but would not abort the processing of the standard method. &lt;/P&gt;
  &lt;P&gt;Or would this suggestion rather work for implicit enhancements?&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Robin&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 09:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554421#M21159</guid>
      <dc:creator>robinwennemuth</dc:creator>
      <dc:date>2018-01-16T09:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Overwrite Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554422#M21160</link>
      <description>&lt;P&gt;Hi Robin,&lt;/P&gt;
  &lt;P&gt;I used described approach with EXIT statement in implicit pre-method to conditionally bypass standard method implementation.&lt;/P&gt;
  &lt;P&gt;Regards, Uladzislau&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 10:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554422#M21160</guid>
      <dc:creator>uladzislau_pralat</dc:creator>
      <dc:date>2018-01-16T10:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Overwrite Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554423#M21161</link>
      <description>&lt;P&gt;Please move your reply under Uladzislau's answer, by using "Convert into Comment"&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 13:26:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554423#M21161</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-01-16T13:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Overwrite Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554424#M21162</link>
      <description>&lt;P&gt;Within a pre-method, EXIT does not prevent the standard method from executing (because a pre-method is coded in its own method, so EXIT (or preferrably RETURN) will only exit the pre-method). Within a pre-method, the only way to prevent the enhanced method from executing is the triggering of a brutal stop (like the triggering a class-based exception); of course the consequence is huge and often it's not advisable to do it.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 13:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554424#M21162</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-01-16T13:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP Overwrite Enhancement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554425#M21163</link>
      <description>&lt;P&gt;You may implement the implicit enhancement point at the beginning of the method (whirlpool icon + context menu to firstly display the implicit points and secondly create implementation). As the code is inserted directly in the body of the method, the RETURN statement (EXIT being recommended only for leaving loops) will leave the enhanced method.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Jan 2018 13:38:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-overwrite-enhancement/m-p/554425#M21163</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-01-16T13:38:27Z</dc:date>
    </item>
  </channel>
</rss>

