<?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 watchpoint for Internal table value in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-for-internal-table-value/m-p/9959038#M1799680</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Friends,&lt;/P&gt;&lt;P&gt;how to put a watch point for a Internal table, field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex : I have a Internal table called "IT1" in this table we have 10 fields &amp;amp;&amp;nbsp; 9000 records.&lt;/P&gt;&lt;P&gt;for 600th record some value "ABCD" is updating in the code ex : IT1[600]-FIELD1 = "ABCD", &lt;/P&gt;&lt;P&gt;but I want to know where this value is updaing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this I want to put a watch point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read many forums but doesn't meet the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one please help me on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Dec 2013 15:09:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-12-18T15:09:35Z</dc:date>
    <item>
      <title>watchpoint for Internal table value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-for-internal-table-value/m-p/9959038#M1799680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Friends,&lt;/P&gt;&lt;P&gt;how to put a watch point for a Internal table, field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex : I have a Internal table called "IT1" in this table we have 10 fields &amp;amp;&amp;nbsp; 9000 records.&lt;/P&gt;&lt;P&gt;for 600th record some value "ABCD" is updating in the code ex : IT1[600]-FIELD1 = "ABCD", &lt;/P&gt;&lt;P&gt;but I want to know where this value is updaing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this I want to put a watch point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read many forums but doesn't meet the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one please help me on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:09:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-for-internal-table-value/m-p/9959038#M1799680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-18T15:09:35Z</dc:date>
    </item>
    <item>
      <title>Re: watchpoint for Internal table value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-for-internal-table-value/m-p/9959039#M1799681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;We can do it with debugger script.Go through my blog for more details &lt;A _jive_internal="true" href="https://answers.sap.com/community/abap/blog/2013/10/28/how-to-create-watch-point-for-internal-table-when-line-add-or-delete-for-given-field-value"&gt;http://scn.sap.com/community/abap/blog/2013/10/28/how-to-create-watch-point-for-internal-table-when-line-add-or-delete-for-given-field-value&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreenivas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:19:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-for-internal-table-value/m-p/9959039#M1799681</guid>
      <dc:creator>former_member219762</dc:creator>
      <dc:date>2013-12-18T15:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: watchpoint for Internal table value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-for-internal-table-value/m-p/9959040#M1799682</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;Dou you have a loop command in you code? place the watch point in the work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for exemple:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop it1 into wa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create a watch point with: WA1-field = 'ABCD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Dec 2013 15:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoint-for-internal-table-value/m-p/9959040#M1799682</guid>
      <dc:creator>balbino_soaresferreirafil</dc:creator>
      <dc:date>2013-12-18T15:48:13Z</dc:date>
    </item>
  </channel>
</rss>

