<?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: Watchpoint + Class Attributes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571050#M1859214</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mauricio.&lt;/P&gt;&lt;P&gt;I tried your code and followed your instructions but my watchpoints works correctly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Sep 2014 12:05:50 GMT</pubDate>
    <dc:creator>SimoneMilesi</dc:creator>
    <dc:date>2014-09-02T12:05:50Z</dc:date>
    <item>
      <title>Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571048#M1859212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm trying to create a watchpoint for a private attribute in one of my classes, but I'm not sure why I'm not being able to do it. Take a look in the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;REPORT&lt;/SPAN&gt; zwatchpoint_test&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;CLASS&lt;/SPAN&gt; lcl_watchpoint &lt;SPAN style="color: #0000ff;"&gt;DEFINITION&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;PUBLIC&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;SECTION&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;METHODS&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;stop&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;PRIVATE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;SECTION&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;DATA&lt;/SPAN&gt;: t_sbook &lt;SPAN style="color: #0000ff;"&gt;TYPE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TABLE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;OF&lt;/SPAN&gt; sbook&lt;SPAN style="color: #800080;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wa_sbook &lt;SPAN style="color: #0000ff;"&gt;LIKE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;LINE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;OF&lt;/SPAN&gt; t_sbook&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;ENDCLASS&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #808080;"&gt;&lt;EM&gt;"lcl_watchpoint DEFINITION&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;CLASS&lt;/SPAN&gt; lcl_watchpoint IMPLEMENTATION&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;METHOD&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;stop&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;SELECT&lt;/SPAN&gt; *&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; sbook&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;INTO&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TABLE&lt;/SPAN&gt; me-&lt;SPAN style="color: #800097;"&gt;&amp;gt;&lt;/SPAN&gt;t_sbook&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;LOOP&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;AT&lt;/SPAN&gt; me-&lt;SPAN style="color: #800097;"&gt;&amp;gt;&lt;/SPAN&gt;t_sbook &lt;SPAN style="color: #0000ff;"&gt;INTO&lt;/SPAN&gt; me-&lt;SPAN style="color: #800097;"&gt;&amp;gt;&lt;/SPAN&gt;wa_sbook&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;WRITE&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'Breakpoint Here!'&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDLOOP&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;ENDMETHOD&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #808080;"&gt;&lt;EM&gt;"stop&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;ENDCLASS&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #808080;"&gt;&lt;EM&gt;"lcl_watchpoint IMPLEMENTATION&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;DATA&lt;/SPAN&gt;: watchpoint &lt;SPAN style="color: #0000ff;"&gt;TYPE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;REF&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;TO&lt;/SPAN&gt; lcl_watchpoint&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;START-OF-SELECTION&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;CREATE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;OBJECT&lt;/SPAN&gt; watchpoint&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; watchpoint-&lt;SPAN style="color: #800097;"&gt;&amp;gt;&lt;/SPAN&gt;stop&lt;SPAN style="color: #800097;"&gt;(&lt;/SPAN&gt; &lt;SPAN style="color: #800097;"&gt;)&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want to do is set a watchpoint for attribute "WA_SBOOK", whenever field WA_SBOOK-PASSNAME reaches some value (ex.: 'Amelie Buchholm').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steps to reproduce my issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Copy-paste this sample code into SE38&lt;/LI&gt;&lt;LI&gt;Put a breakpoint at line WRITE 'Breakpoint Here'&lt;/LI&gt;&lt;LI&gt;Execute&lt;/LI&gt;&lt;LI&gt;Clear the breakpoint&lt;/LI&gt;&lt;LI&gt;Try to create a watchpoint for WA_SBOOK-PASSNAME = 'Amelie Buchholm' (or whatever name that exists in SBOOK table)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(If you don't have data in SBOOK on your system, run program &lt;SPAN style="color: #333333; font-family: Arial, Helvetica, 'Microsoft YaHei', Meiryo, 'Malgun Gothic', sans-serif;"&gt;SAPBC_DATA_GENERATOR )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What am I missing? &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/994/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt; I keep getting the 'area of validity varies', even if I try to set the watchpoint as an object attribute...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 11:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571048#M1859212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-02T11:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571049#M1859213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It works (at least creating the watchpoint works) as long as you don't try to impose an additional condition on it...&lt;/P&gt;&lt;P&gt;Looks like it has something to do with the fact that the free conditions are assumed to have global variables in them, while you are using an object attribute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get more strange behavior whenever I first define the watchpoint on an object (says WATCHPOINT CREATED), navigate to the right tab in de debugger to watch my ...-points, and try to change the watchpoint by (only then!) adding a condition: I get the message WATCHPOINT CREATED, but the watchpoint is actually deleted...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I don't think what you want to achieve is possible to be honest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 11:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571049#M1859213</guid>
      <dc:creator>fred_verheul</dc:creator>
      <dc:date>2014-09-02T11:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571050#M1859214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mauricio.&lt;/P&gt;&lt;P&gt;I tried your code and followed your instructions but my watchpoints works correctly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 12:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571050#M1859214</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2014-09-02T12:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571051#M1859215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Problem is I really wanted to impose a condition to the Watchpoint. Thanks for the try anyway!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe this is something related the AS ABAP version? I'm in 7.31 ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 12:11:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571051#M1859215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-02T12:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571052#M1859216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Simone, could you please confirm if you're in an AS ABAP with version greater than 7.31 ? Maybe this thing only works in 7.4+ .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried 2 different systems (7.31 / 7.02) and the error persists.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 12:12:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571052#M1859216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-02T12:12:45Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571053#M1859217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah, me too (SP10).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Sep 2014 12:37:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571053#M1859217</guid>
      <dc:creator>fred_verheul</dc:creator>
      <dc:date>2014-09-02T12:37:48Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571054#M1859218</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mauricio,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not exactly what you asked for, but I think will do the trick. Instead of creating a watch-point I added a condition to the break-point and it worked like a charm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/532362" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Custodio&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 03:25:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571054#M1859218</guid>
      <dc:creator>custodio_deoliveira</dc:creator>
      <dc:date>2014-09-03T03:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571055#M1859219</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool, thanks! Works here too &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 05:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571055#M1859219</guid>
      <dc:creator>fred_verheul</dc:creator>
      <dc:date>2014-09-03T05:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571056#M1859220</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The regular watchpoint works for me (NW 7.40 SP 7), it stops at the desired value.&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/532738" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 11:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571056#M1859220</guid>
      <dc:creator>UweFetzer_se38</dc:creator>
      <dc:date>2014-09-03T11:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571057#M1859221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That also worked for me! Thanks man!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/994/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 12:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571057#M1859221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-03T12:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoint + Class Attributes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571058#M1859222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bingo! So that only works on 7.4+.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Sep 2014 12:12:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-class-attributes/m-p/10571058#M1859222</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-09-03T12:12:08Z</dc:date>
    </item>
  </channel>
</rss>

