<?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: ABAP: how to know one parameter were read when debugging in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287251#M1724696</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply, but it's not my requirement. I know that using watchpoint would detect when the variable is assigned. My requrement is that when is it refrered or used.&lt;/P&gt;&lt;P&gt;To more clarification, my requirement, I want to ensure that if I change the SO value at the user-exit; I must not effect the standard codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;User-exit&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;gt; MY IMPLEMENTATION HERE!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&amp;lt;Standard code&amp;gt;&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF vbak-vbeln is initial.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;[I want to skip the statements of getting standard SO number]&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Feb 2013 10:47:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-02-14T10:47:57Z</dc:date>
    <item>
      <title>ABAP: how to know one parameter were read when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287249#M1724694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear ABAPers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When debugging, we can create watchpoint to determine when that parameter has been changed value. I'd like to know whether is there a way to know when one parameter are read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, to know where vbak-vbeln is read, can the debugger break at the statement like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;xvbeln = vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2013 10:21:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287249#M1724694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-14T10:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP: how to know one parameter were read when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287250#M1724695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nattapong,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the example you gave, vbak-vbeln is not being read but used to assign a value to xbeln. So, if you want to know where vbak-vbeln is being read (in other words, where it is being assigned a value for the first time), you simply need to create a watchpoint on vbak-vbeln.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2013 10:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287250#M1724695</guid>
      <dc:creator>kakshat</dc:creator>
      <dc:date>2013-02-14T10:35:09Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP: how to know one parameter were read when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287251#M1724696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply, but it's not my requirement. I know that using watchpoint would detect when the variable is assigned. My requrement is that when is it refrered or used.&lt;/P&gt;&lt;P&gt;To more clarification, my requirement, I want to ensure that if I change the SO value at the user-exit; I must not effect the standard codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;User-exit&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; =&amp;gt; MY IMPLEMENTATION HERE!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;&amp;lt;Standard code&amp;gt;&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF vbak-vbeln is initial.&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;[I want to skip the statements of getting standard SO number]&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2013 10:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287251#M1724696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-02-14T10:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP: how to know one parameter were read when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287252#M1724697</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 this you have to do a global find of the vairable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kartik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Feb 2013 11:01:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-how-to-know-one-parameter-were-read-when-debugging/m-p/9287252#M1724697</guid>
      <dc:creator>Kartik2</dc:creator>
      <dc:date>2013-02-14T11:01:03Z</dc:date>
    </item>
  </channel>
</rss>

