<?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: User exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542823#M1657504</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;DO /h and then cancel the GR..Now in debugger settings, mark the update debugging as selected and save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now press F8. Your normal debugging window will close. After this a new debugging session will open. This will be for update debugging.&lt;/P&gt;&lt;P&gt;If it doesn't come directly to your break point, try pressing F8 again..now you will reach your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Feb 2012 09:23:57 GMT</pubDate>
    <dc:creator>Harsh_Bansal</dc:creator>
    <dc:date>2012-02-08T09:23:57Z</dc:date>
    <item>
      <title>User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542819#M1657500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAP Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     for migo cancellation ( Customer Function Exit in the Case of Updating a Mat. Doc ) i found out the Exit called &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;EXIT_SAPLMBMB_001&lt;/STRONG&gt;  i written the code inside this exit &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : w_doc like mkpf-mblnr. 
  w_doc = xmkpf-mblnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;my Requirement is that :&lt;/STRONG&gt;  when i put the break point in this include and after going back to MIGO Transaction and while cancellation of any GR the debugging is  not stopping in this Include.  can u  please let me know how to proceed using the EXIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eagerly waiting for your reply's....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 07:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542819#M1657500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-08T07:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542820#M1657501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This FM is called in the update task. Switch on update debugging prior to pressing 'save' button.&lt;/P&gt;&lt;P&gt;KR&lt;/P&gt;&lt;P&gt;Alfons Eberth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 08:22:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542820#M1657501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-08T08:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542821#M1657502</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;it is mentioned that it is called in the update FM MB_POST_DOCUMENT. This would mean that the exit would be called while update.&lt;/P&gt;&lt;P&gt;So put a breakpoint and turn system debugging and update debuggin on in the debugger and then it would stop at this exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Goutam Kolluru.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 08:34:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542821#M1657502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-08T08:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542822#M1657503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Put a break point in your exit first.&lt;/P&gt;&lt;P&gt;Before click on save or cancellation put /h and enter into debug mode.In settings menu of Debugging mode select the options System debugging and Update debugging and save it.now press F8.&lt;/P&gt;&lt;P&gt;It will trigger your break point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Karuna N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 09:16:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542822#M1657503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-02-08T09:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: User exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542823#M1657504</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;DO /h and then cancel the GR..Now in debugger settings, mark the update debugging as selected and save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now press F8. Your normal debugging window will close. After this a new debugging session will open. This will be for update debugging.&lt;/P&gt;&lt;P&gt;If it doesn't come directly to your break point, try pressing F8 again..now you will reach your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Harsh Bansal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Feb 2012 09:23:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/8542823#M1657504</guid>
      <dc:creator>Harsh_Bansal</dc:creator>
      <dc:date>2012-02-08T09:23:57Z</dc:date>
    </item>
  </channel>
</rss>

