<?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: Watchpoints in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720922#M895744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Refer the help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/792442db42e22ce10000000a1550b0/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/792442db42e22ce10000000a1550b0/content.htm&lt;/A&gt;&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;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 Apr 2008 12:36:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-28T12:36:06Z</dc:date>
    <item>
      <title>Watchpoints</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720920#M895742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;       can any one tell me what are watchpoints and why we use this in ABAP?&lt;/P&gt;&lt;P&gt;  Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 12:29:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720920#M895742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T12:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoints</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720921#M895743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijaya Lakshmi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Watch point is attached to a variable and is only triggered when it holds a certain value. For example you could set a watchpoint on SY-SUBRC being not equal to 0, and debug would stop when SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To be in detail ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like a breakpoint, a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Features&lt;/P&gt;&lt;P&gt;&amp;#149; You can set up to five watchpoints in a program. &lt;/P&gt;&lt;P&gt;&amp;#149; You can also specify the conditions on which a watchpoint is to become active. &lt;/P&gt;&lt;P&gt;&amp;#149; You can specify logical conditions between up to five conditional watchpoints. &lt;/P&gt;&lt;P&gt;&amp;#149; You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in the specified program. &lt;/P&gt;&lt;P&gt;&amp;#149; You can change and delete watchpoints.&lt;/P&gt;&lt;P&gt;&amp;#149; &lt;/P&gt;&lt;P&gt;Setting Watchpoints &lt;/P&gt;&lt;P&gt;If you want to interrupt a program when the contents of a field or structure change, use a watchpoint. You can set up to five watchpoints, including watchpoints for strings. &lt;/P&gt;&lt;P&gt;A watchpoint can be either local or global. Local watchpoints are only valid in the specified program. Global watchpoints are valid in the specified program, and also in all the other programs it calls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure&lt;/P&gt;&lt;P&gt;To set a watchpoint, start the Debugger and proceed as follows:&lt;/P&gt;&lt;P&gt;1. Choose Breakpoint &amp;amp;#61614; Create watchpoint or the corresponding pushbutton. The Create Watchpoint dialog box appears. &lt;/P&gt;&lt;P&gt;2. Decide whether you want to set a local or global watchpoint. &lt;/P&gt;&lt;P&gt;3. Enter the program and the name of the field for which you want to set the watchpoint. In the Program field, the name of the program currently running is always defaulted. &lt;/P&gt;&lt;P&gt;4. If you want your watchpoint to be activated each time the contents of the field change, the definition is now complete, and you can return to the Debugger by pressing ENTER . &lt;/P&gt;&lt;P&gt;5. To create a conditional watchpoint, that is only activated when a particular situation arises, choose one of the following relational operators. &lt;/P&gt;&lt;P&gt;Operator Meaning&lt;/P&gt;&lt;P&gt;&amp;lt; Less than&lt;/P&gt;&lt;P&gt;&amp;lt;= Less than or equal&lt;/P&gt;&lt;P&gt;= Equal&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;gt; Not equal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;= Greater than or equal&lt;/P&gt;&lt;P&gt;Greater than&lt;/P&gt;&lt;P&gt;6. &lt;/P&gt;&lt;P&gt;7. You can use the Comparison field option to specify whether the comparison is to be carried out with a value that you specify or with the contents of another field. Depending on your choice from step 6, enter a value or a field for the comparison.&lt;/P&gt;&lt;P&gt;Result&lt;/P&gt;&lt;P&gt;The system confirms the watchpoint and adds it to the list in the display. When you finish your debugging session, the watchpoint is automatically deleted unless you have explicitly saved it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Specifying Logical Links &lt;/P&gt;&lt;P&gt;If you have more than one conditional watchpoint, you can specify a logical link between them:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR Only one of the specified conditions must be met&lt;/P&gt;&lt;P&gt;AND All of the conditions must be met.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create a logical link between watchpoints:&lt;/P&gt;&lt;P&gt;1. Choose Goto &amp;amp;#61614; Control debugging &amp;amp;#61614; Watchpoints or the Watchpoints pushbutton to open the watchpoint display. &lt;/P&gt;&lt;P&gt;2. Set the Logical operator between watchpoints option. &lt;/P&gt;&lt;P&gt;The default value is always OR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing Watchpoints &lt;/P&gt;&lt;P&gt;1. Choose Goto &amp;amp;#61614; Control debugging &amp;amp;#61614; Watchpoints or the Watchpoints pushbutton to display the watchpoint list. &lt;/P&gt;&lt;P&gt;2. Choose the pencil icon in the line containing the watchpoint you want to change. &lt;/P&gt;&lt;P&gt;3. Change the watchpoint attributes in the Create/Change Watchpoint.&lt;/P&gt;&lt;P&gt;3. Choose ENTER .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Deleting Watchpoints&lt;/P&gt;&lt;P&gt;You cannot delete watchpoints by choosing Breakpoint &amp;amp;#61614; Delete or Breakpoint &amp;amp;#61614; Deactivate/activate. Instead, proceed as follows:&lt;/P&gt;&lt;P&gt;1. Choose Goto &amp;amp;#61614; Control debugging &amp;amp;#61614; Watchpoints or the Watchpoints pushbutton to display the watchpoint list. &lt;/P&gt;&lt;P&gt;2. Choose the trashcan icon in the line containing the watchpoint you want to delete.&lt;/P&gt;&lt;P&gt;3. &lt;/P&gt;&lt;P&gt;Memory Monitoring with Watchpoints &lt;/P&gt;&lt;P&gt;You can use watchpoints to display changes to the references of strings, data and object references, and internal tables. By placing an ampersand (&amp;amp;) in front of the object name, you can display the reference in question in hexadecimal format. With internal tables, you can also display the table header by placing an asterisk (*) at the beginning of the name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;objectname Displays the references of strings, internal tables as well as data and object references&lt;/P&gt;&lt;P&gt;*itab Displays the table header of the internal table itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Analyzing Source Code &lt;/P&gt;&lt;P&gt;The Debugger contains an extensive range of functions that help you to analyze the source code of a program. You can step through the source code of a program in four different ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Displaying the Source Code &lt;/P&gt;&lt;P&gt;All of the display modes in the Debugger have the same structure. The top half of the screen displays an extract from the program source code as it appears in the ABAP Editor. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Features&lt;/P&gt;&lt;P&gt;The Source code of field contains an extract from the program, subroutine, or function module currently being processed. The source code display also contains the following additional functions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expand/Reduce Program Segment&lt;/P&gt;&lt;P&gt;Use this button to close the information about the current display mode. The system then displays more of the source code.&lt;/P&gt;&lt;P&gt;Use this button to reopen the information for the current display mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Viveks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 12:34:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720921#M895743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T12:34:41Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoints</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720922#M895744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Refer the help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/792442db42e22ce10000000a1550b0/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/f1/792442db42e22ce10000000a1550b0/content.htm&lt;/A&gt;&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;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 12:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720922#M895744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T12:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoints</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720923#M895745</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;There two types advantage if you use watch point properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. if you run sap standard transactions ,some times we get error message ,if you want to debug the complete program ( it may take much time ) ,i mean you want to know where the message is coming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;even you have one more option like double click on message -&amp;gt;it gives message id and message number,In se91 -&amp;gt; you can choose where used list and it shows program name ,but some time it will not show ( I mean dynamic message ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;run the transaction -&amp;gt; /h -&amp;gt; it will go debugging. now create watch point as like &lt;/P&gt;&lt;P&gt;variable as message id and value mesage number,it will stop exactly there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. some times you get wrong values on only partcular field ,on few columns ,you want to see the exact select query on that condition,then create watch point&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a watchpoint is an indicator in a program that tells the ABAP runtime processor to interrupt the program at a particular point. Unlike breakpoints, however, watchpoints are not activated until the contents of a specified field change. Watchpoints, like dynamic breakpoints, are user-specific, and so do not affect other users running the same program. You can only define watchpoints in the Debugger. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;You set watchpoints in the Debugger to monitor the contents of specific fields. They inform you when the value of a field changes. When the value changes, the Debugger interrupts the program.&lt;/P&gt;&lt;P&gt;Features&lt;/P&gt;&lt;P&gt;· You can set up to five watchpoints in a program.&lt;/P&gt;&lt;P&gt;See also Setting Watchpoints.&lt;/P&gt;&lt;P&gt;· You can also specify the conditions under which a watchpoint is to become active.&lt;/P&gt;&lt;P&gt;· You can specify a logical link for up to five (conditional) watchpoints.&lt;/P&gt;&lt;P&gt;See also Specifying Logical Links.&lt;/P&gt;&lt;P&gt;· You can define watchpoints as either local or global. If you define a global watchpoint, it is active in all called programs. Local watchpoints are only active in &lt;/P&gt;&lt;P&gt;the specified program.&lt;/P&gt;&lt;P&gt;· You can change and delete watchpoints.&lt;/P&gt;&lt;P&gt;See Changing Watchpoints&lt;/P&gt;&lt;P&gt;· You can use watchpoints to display changes to the references of strings, data and object references, and internal tables. &lt;/P&gt;&lt;P&gt;See Memory Monitoring with Watchpoints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoints &lt;/P&gt;&lt;P&gt;Apart from being able to execute an ABAP program in the Debugger, you can also start the Debugger call by the choosing a breakpoint. This is achieved by setting one or more of these breakpoints in the program. A breakpoint is a signal at a particular point in the program that tells the ABAP runtime processor to interrupt processing and start the Debugger. The Debugger is activated when the program reaches this point.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is also a special kind of breakpoint called a watchpoint. When you use watchpoints, the Debugger is not activated until the contents of a particular field change. For more information, refer to the chapter Watchpoints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoint Variants&lt;/P&gt;&lt;P&gt;The Debugger contains different breakpoint variants:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static&lt;/P&gt;&lt;P&gt;A user-specific breakpoint is inserted in the source code as an ABAP statement using the keyword BREAK-POINT. A non user-specific breakpoint is set in the ABAP Editor using the BREAK user name statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directly set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dynamic breakpoints&lt;/P&gt;&lt;P&gt;Can be set in the ABAP Editor or the Debugger by double-clicking a line, for example. Dynamic breakpoints are always user-specific, and are deleted when you log off from the R/3 System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at statements&lt;/P&gt;&lt;P&gt;The Debugger stops the program immediately before the specified statement is executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoints&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at subroutines&lt;/P&gt;&lt;P&gt;The Debugger stops the program immediately before the specified subroutine is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoints at function modules&lt;/P&gt;&lt;P&gt;The Debugger stops the program immediately before the specified function module is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoints at methods&lt;/P&gt;&lt;P&gt;The Debugger stops the program immediately before the specified method is called.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Breakpoints at exceptions and system exceptions&lt;/P&gt;&lt;P&gt;The Debugger stops the program immediately after a system exception, that is, after a runtime error has been intercepted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Static Breakpoints&lt;/P&gt;&lt;P&gt;Static breakpoints are always user-independent if there is no specification of a user name. Once a user has inserted the statement BREAK-POINT or BREAK name in an ABAP program, the system always interrupts the program at that point for that user or only for the user name. This procedure is only useful in the development phase of an application when program execution is always to be interrupted at the same place. For more information, refer to the chapter Static Breakpoints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In HTTP sessions, a static breakpoint is skipped if you did not set additional dynamic HTTP breakpoints in the editor of a BSP page. Instead, a corresponding system log entry is written, which can be checked using transaction SM21.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dynamic Breakpoints&lt;/P&gt;&lt;P&gt;Dynamic breakpoints are user-specific. Therefore, you should use them if you only want the program to be interrupted when you run it yourself, not when it is being executed by other users. All dynamic breakpoints are deleted when you log off from the R/3 System.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dynamic breakpoints are more flexible than static breakpoints because you can deactivate or delete them at runtime. They have the following advantages:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· You do not have to change the program code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· You can set them even when the program is locked by another programmer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;· You can define a counter that only activates the breakpoint after it has been reached.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Special dynamic breakpoints are useful when you want to interrupt a program directly before a particular ABAP statement, a subroutine, or an event, but do not know exactly where to find it in the source code. Event here is used to refer to the occurrence of a particular statement, for example, or calling up a method. Special dynamic breakpoints are user-specific. You can only set them in the Debugger. For more information, refer to the chapter Dynamic Breakpoints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In HTTP sessions, the system stops both at static and dynamic breakpoints if a dynamic breakpoint was set in the editor of a BSP page before program execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lifetime and Transfer of Breakpoints&lt;/P&gt;&lt;P&gt;A static breakpoint remains intact as long as the BREAK-POINT or BREAK-POINT name statement is not removed from the source code. Without saving, dynamic breakpoints only remain intact in the relevant internal session. However, they remain in effect during the entire user session if they are saved by choosing the menu path Breakpoints ® Save in the ABAP Debugger. For more details on the subject of user sessions and modes, refer to Modularization Techniques in the ABAP keyword documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you call an HTTP session during a user session, only the HTTP breakpoints are loaded when the HTTP session is started. You activate HTTP debugging in the ABAP Editor by choosing Utilities ® Settings ® HTTP Debugging. Depending on the setting, the system then displays either the HTTP or standard breakpoints in the Editor.&lt;/P&gt;&lt;P&gt;If you call an update session during a user session, breakpoints that were defined beforehand in the calling processing unit are copied to the new update session, where they can be displayed under Breakpoints. If, in the ABAP Debugger, you check Update Debugging under Settings and then, for example, call the update module func using CALL FUNCTION func IN UPDATE TASK, a new window is opened in which you can debug this function module in the update session. All the breakpoints that were set in the calling processing unit can also be processed here.&lt;/P&gt;&lt;P&gt;we can keep them at :&lt;/P&gt;&lt;P&gt;Statements&lt;/P&gt;&lt;P&gt;Subroutines&lt;/P&gt;&lt;P&gt;Function Module Calls&lt;/P&gt;&lt;P&gt;at Methods&lt;/P&gt;&lt;P&gt;System Exceptions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;break point :&lt;/P&gt;&lt;P&gt;we can start debugging from that point or if we keep break point at some place we can directly got ot htat point using f6.&lt;/P&gt;&lt;P&gt;watch point: for example if we have to check the output for 4000 records based on a field value i.e.for vendor number 'in'we have to check then we will create watchpoint on field LIFNR value '2000'. then we can directly go to vendor whose numbe ris 2000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting Watchpoints &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/c6/617cdce68c11d2b2ab080009b43351/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/c6/617cdce68c11d2b2ab080009b43351/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Changing Watchpoints &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/c6/617ce2e68c11d2b2ab080009b43351/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/c6/617ce2e68c11d2b2ab080009b43351/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Raj.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 12:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720923#M895745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T12:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Watchpoints</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720924#M895746</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;Check the below thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="703031"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Apr 2008 12:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/watchpoints/m-p/3720924#M895746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-28T12:37:56Z</dc:date>
    </item>
  </channel>
</rss>

