<?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: value change of Function Module Interface parameters and track back in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236801#M1827916</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a watchpoint for the variable in debugger&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2014 11:33:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-05-06T11:33:02Z</dc:date>
    <item>
      <title>value change of Function Module Interface parameters and track back</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236800#M1827915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've often have the following problem while debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any“value” of a variable or a field in a structure has been changed during the program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want to find out this point where it is changed for the first time. It is often difficult&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because they must often be traced back about several Function Module Calls, SubRoutine Calls etc. Additionally these fields are&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;named differently too since they are passed through the interface to the calling Function Module or Sub Routine.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know a way by which this search could be reduced through more clever handling of this matter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for your support on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alexander&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 11:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236800#M1827915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-06T11:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: value change of Function Module Interface parameters and track back</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236801#M1827916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a watchpoint for the variable in debugger&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 11:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236801#M1827916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-06T11:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: value change of Function Module Interface parameters and track back</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236802#M1827917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Alex,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the only way I can suggest is to set watchpoints in debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the field value has been changed, if possible try to set the old value and jump to the previous command in debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is a fm, enter with single step and set a watchpoint for the new field name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is not possible to jump back, set a break-point in SE38/SE80 to the found command or call and then try the watchpoint mechanism again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 11:33:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236802#M1827917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-06T11:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: value change of Function Module Interface parameters and track back</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236803#M1827918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thx for your kind hints.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, I can set a watchpoint for a specified variable or Object, but in subsequent FM calls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this field/variable can have another name e.g. ls_mara instead of lv_mara or lv_value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of lv_psvalue etc. which is passed to the FM while next calls, how can you work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;track these changes, since you should create a watchpoint for each non identically-named fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a method existing to track a FM interfaces over 10 or 15 calls.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Alex&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 11:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236803#M1827918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-06T11:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: value change of Function Module Interface parameters and track back</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236804#M1827919</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;this can be easily answered with NO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The jump back in debugger is the only way to avoid further debugger calls from the beginning, but it can't be used, if too many data have been changed. Sorry for this information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2014 12:00:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-change-of-function-module-interface-parameters-and-track-back/m-p/10236804#M1827919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-06T12:00:38Z</dc:date>
    </item>
  </channel>
</rss>

