<?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: watch point in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902208#M682542</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;watch point can be set on any field or itab of the current report...&lt;/P&gt;&lt;P&gt;you can create a watchpoint for perticular value...&lt;/P&gt;&lt;P&gt;so after creating watchpoint on F8 debugger will stop at the location where it gets the desired value in the field...&lt;/P&gt;&lt;P&gt;if you have not set any value in watchpoint.. it'l stop wherever that field changes its value...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Oct 2007 11:23:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-19T11:23:07Z</dc:date>
    <item>
      <title>watch point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902206#M682540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone plz suggest how watchpoint wrks in debugging .?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 11:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902206#M682540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T11:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: watch point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902207#M682541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can for instance add a watchpoint with GX_VBELN = '0000003434'.&lt;/P&gt;&lt;P&gt;The debugger wil stop then, when the variable GX_VBELN is getting this value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;hans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 11:18:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902207#M682541</guid>
      <dc:creator>h_senden2</dc:creator>
      <dc:date>2007-10-19T11:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: watch point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902208#M682542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;watch point can be set on any field or itab of the current report...&lt;/P&gt;&lt;P&gt;you can create a watchpoint for perticular value...&lt;/P&gt;&lt;P&gt;so after creating watchpoint on F8 debugger will stop at the location where it gets the desired value in the field...&lt;/P&gt;&lt;P&gt;if you have not set any value in watchpoint.. it'l stop wherever that field changes its value...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 11:23:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902208#M682542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T11:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: watch point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902209#M682543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;watch point is field specific&lt;/P&gt;&lt;P&gt;we can see how the current value is changing&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 11:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902209#M682543</guid>
      <dc:creator>paruchuri_nagesh</dc:creator>
      <dc:date>2007-10-19T11:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: watch point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902210#M682544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       The purpose of watch point is to know when the value of the field is changing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example in the debugging mode, there might be 100 of records. you want to keep a break point when a field (say vbeln = 1000). Then you can go for break point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to create a breakpoint, in the debugging mode, click on create watch point icon. &lt;/P&gt;&lt;P&gt;give the field name, comparison operator and value (if needed). and press ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when there is a change in the given field, the debugger stopps at that point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if usefull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Niyaz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 11:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902210#M682544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T11:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: watch point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902211#M682545</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;  For example in ur internal table you have 1000 of records and if you want to check the record which is in between and you want to skip all the records then you can create the watch point by giving that field name and value. Then the debugger will go and stop at that particular record from that record you can continue further.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 11:54:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902211#M682545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T11:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: watch point</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902212#M682546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;though nt get a fully satisfied answer still i hope can manage it..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Oct 2007 12:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watch-point/m-p/2902212#M682546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-19T12:07:58Z</dc:date>
    </item>
  </channel>
</rss>

