<?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 Customizing the VL32N transaction's BACK / EXIT functionality in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/customizing-the-vl32n-transaction-s-back-exit-functionality/m-p/7189258#M1519510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello  All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to  Customizing the VL32N transaction's BACK / EXIT functionality based on codition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirment is  : when user click on BACK / EXIT  of VL32N without saving the changes then it will display a pop-up with the inforamtion '' System  will exit the processing Do you want to save data'', still user click on 'NO' option of the pop-up then it will move the initial screen of VL32N ( as per Standard process ) , instead of it has to move 'SAP easy access ' screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply if anyone have solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Aug 2010 08:39:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-03T08:39:18Z</dc:date>
    <item>
      <title>Customizing the VL32N transaction's BACK / EXIT functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customizing-the-vl32n-transaction-s-back-exit-functionality/m-p/7189258#M1519510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello  All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know how to  Customizing the VL32N transaction's BACK / EXIT functionality based on codition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirment is  : when user click on BACK / EXIT  of VL32N without saving the changes then it will display a pop-up with the inforamtion '' System  will exit the processing Do you want to save data'', still user click on 'NO' option of the pop-up then it will move the initial screen of VL32N ( as per Standard process ) , instead of it has to move 'SAP easy access ' screen .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reply if anyone have solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Aug 2010 08:39:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customizing-the-vl32n-transaction-s-back-exit-functionality/m-p/7189258#M1519510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-03T08:39:18Z</dc:date>
    </item>
    <item>
      <title>Re: Customizing the VL32N transaction's BACK / EXIT functionality</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customizing-the-vl32n-transaction-s-back-exit-functionality/m-p/7189259#M1519511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nandana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What we have to do here is to find out a BAdi, or exit or an enhancement point during this activity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find the BAdi please follow below procedure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to transaction SE24, class name CL_EXITHANDLER, go to methods, double click on method GET_INSTANCE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set a break point at &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD cl_exithandler=&amp;gt;get_class_name_by_interface &lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;instance = instance&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;class_name = class_name&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;exit_name = exit_name&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;no_reference = 1&lt;/P&gt;&lt;P&gt;no_interface_reference = 2&lt;/P&gt;&lt;P&gt;no_exit_interface = 3&lt;/P&gt;&lt;P&gt;data_incons_in_exit_managem = 4&lt;/P&gt;&lt;P&gt;class_not_implement_interface = 5&lt;/P&gt;&lt;P&gt;OTHERS = 6.&lt;/P&gt;&lt;P&gt;CASE sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now run trasaction VL32N, and  after you reach or enter some data in the next screens, press the button BACK/EXIT , your control will break at each BADI(If any), &lt;STRONG&gt;exit name&lt;/STRONG&gt; and &lt;STRONG&gt;instance&lt;/STRONG&gt; will give you the BADI details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is no BAdi during this activity, enter /h just before BACK/EXIT and set &lt;STRONG&gt;BREAK POINT AT&lt;/STRONG&gt;(Menu-&amp;gt; Break pints-&amp;gt; Break points at) statement = CALL , if you can find out the customer exit by this way(if any) you can add your code here. Here also please check whether you are getting Yes/No values throgh the interface of exit function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next part is enhancement point , here problem is you may have to write the same code in PAI of several screens. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the feasiblity of these solutions, hope this will help you to a certain extent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Antony Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Aug 2010 11:57:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customizing-the-vl32n-transaction-s-back-exit-functionality/m-p/7189259#M1519511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-03T11:57:33Z</dc:date>
    </item>
  </channel>
</rss>

