<?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 Update Debugging in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-debugging/m-p/5568511#M1270331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing an issue with update debugging, let me expalin you the problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am working in 4.6C, I have an output type configured for a PO. When am saving a PO, this output type gets triggered and updated. Now the problem, when am creating a PO and saving in the debuging mode, putting my Update debugging on, having a break point in the code, it does not break at my code, however after am done, I see the NAST update happening. The funny thing is when am changing a PO and saving it, it stops at my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont really understand whats happening...can someone please suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;JM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 May 2009 02:58:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-07T02:58:09Z</dc:date>
    <item>
      <title>Update Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-debugging/m-p/5568511#M1270331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing an issue with update debugging, let me expalin you the problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am working in 4.6C, I have an output type configured for a PO. When am saving a PO, this output type gets triggered and updated. Now the problem, when am creating a PO and saving in the debuging mode, putting my Update debugging on, having a break point in the code, it does not break at my code, however after am done, I see the NAST update happening. The funny thing is when am changing a PO and saving it, it stops at my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont really understand whats happening...can someone please suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;JM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 02:58:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-debugging/m-p/5568511#M1270331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T02:58:09Z</dc:date>
    </item>
    <item>
      <title>Re: Update Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-debugging/m-p/5568512#M1270332</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;All the registered function module (CALL FM in UPDATE TASK) will be executed upon commit work statement is executed. Update debugging will allow you to go into these function modules and see what is happening.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on your information, you may have not put the break point at the correct place during PO creation. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lim...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 03:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-debugging/m-p/5568512#M1270332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T03:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Update Debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/update-debugging/m-p/5568513#M1270333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Johan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are 2 ways to debug an outbound idoc triggered by an output type. One way is to set the output timing to 1, and save the purchase order and then execute RSNAST00 which will take the control to the breakpoint.&lt;/P&gt;&lt;P&gt;You can also debug the idoc with the output timing set as 4.&lt;/P&gt;&lt;P&gt;Here the idoc is triggered in update mode. Hence any breakpoints you may have set before will not reflect. Hence you need to activate update debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below are the steps for the same..&lt;/P&gt;&lt;P&gt;1. Add the output type in purchase order.&lt;/P&gt;&lt;P&gt;2. Enter '/h' to activate debugging in transaction window.&lt;/P&gt;&lt;P&gt;3. Save purchase order.&lt;/P&gt;&lt;P&gt;4. The process enters debugging mode.&lt;/P&gt;&lt;P&gt;5. In Settings tab, select checkbox for Update Debugging.&lt;/P&gt;&lt;P&gt;6. Click F8.&lt;/P&gt;&lt;P&gt;7. The control will appear to go out and re-enter debugging mode. &lt;/P&gt;&lt;P&gt;8. Now from the menu bar, in breakpoints option, choose Breakpoint At Function Module option, and give the name of the function module which is processing the idoc.&lt;/P&gt;&lt;P&gt;9. Once breakpoint set, click F8. &lt;/P&gt;&lt;P&gt;10. The control will now go to the function module. You can then debug the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this information is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arindam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 May 2009 04:06:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/update-debugging/m-p/5568513#M1270333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-07T04:06:59Z</dc:date>
    </item>
  </channel>
</rss>

