<?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: SAP debugging in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069034#M1969911</link>
    <description>&lt;P&gt;Yes you can create watch point on the field EKPO-EREKZ to track field changes in the script debugging, you can find similar examples in blogs. &lt;/P&gt;</description>
    <pubDate>Wed, 20 Nov 2019 19:01:44 GMT</pubDate>
    <dc:creator>srikanthnalluri</dc:creator>
    <dc:date>2019-11-20T19:01:44Z</dc:date>
    <item>
      <title>SAP debugging in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069031#M1969908</link>
      <description>&lt;P&gt;Any way to find the particular field changes throughout the whole program like ME22N. For Creating watchpoint ,we need to know program name to find the field changes, any method to find the field changes whatever the program name.( script debugging method )&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 13:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069031#M1969908</guid>
      <dc:creator>vinothkumar_k</dc:creator>
      <dc:date>2019-11-20T13:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: SAP debugging in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069032#M1969909</link>
      <description>&lt;P&gt;What means "field" in your context?&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 13:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069032#M1969909</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-11-20T13:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAP debugging in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069033#M1969910</link>
      <description>&lt;P&gt;field( variable) EKPO-EREKZ Changes. I want to track it through out the ME22N.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 14:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069033#M1969910</guid>
      <dc:creator>vinothkumar_k</dc:creator>
      <dc:date>2019-11-20T14:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: SAP debugging in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069034#M1969911</link>
      <description>&lt;P&gt;Yes you can create watch point on the field EKPO-EREKZ to track field changes in the script debugging, you can find similar examples in blogs. &lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2019 19:01:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069034#M1969911</guid>
      <dc:creator>srikanthnalluri</dc:creator>
      <dc:date>2019-11-20T19:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: SAP debugging in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069035#M1969912</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;check this blog &lt;A href="https://blogs.sap.com/2011/07/14/news-in-abap-debugger-breakpoints-and-watchpoints-statement-debugging/"&gt;abap-debugger-breakpoints-and-watchpoints&lt;/A&gt;. might help you.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prasanna&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 05:36:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069035#M1969912</guid>
      <dc:creator>cdprasanna</dc:creator>
      <dc:date>2019-12-06T05:36:28Z</dc:date>
    </item>
    <item>
      <title>Re: SAP debugging in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069036#M1969913</link>
      <description>&lt;P&gt;Yes you need the program because a variable existence is linked to a program or to a subroutine/method.&lt;/P&gt;&lt;P&gt;Because if your ME22n is calling a FM with the field in Input/Output you will see the change at the return of the FM.&lt;/P&gt;&lt;P&gt;If your variable is localy defined you will saw the change only inside the method. &lt;/P&gt;&lt;P&gt;So, for me the simple way is to explore the CALL STACK in the debugger to find the place of the modification. &lt;/P&gt;&lt;P&gt;v_my_value as 3 existences here, in each method. They are different but with the same name. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;method my_first_method.
  my_second_method( v_my_value = v_my_value ).
endmethod.


method my_second_method.
  my_thid_method( v_my_value = v_my_value ).
endmethod.

method my_first_method.
  v_my_value = 'toto'.
endmethod.

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Dec 2019 06:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069036#M1969913</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-12-06T06:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAP debugging in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069037#M1969914</link>
      <description>&lt;P&gt;This particular field (EKPO-EREKZ) is not used that much and it's not like it's changing a lot throughout the transaction. Through "where used" for the data type you can find BADI MRM_FINAL_INVOICE_IND and that's probably all you need.&lt;/P&gt;&lt;P&gt;In the worst case, I'd evaluate the call stack and go from there. But in general, there is no way to do what you are wanting easily because the variables have limited scope and life span. Even if a variable is declared as global somewhere on top, it could be very difficult to track the exact change point because it could be simply filled with the value from another variable. And where that variable comes from - go figure. Such quests can lead one down a rabbit hole easily.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 22:22:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-debugging-in-abap/m-p/12069037#M1969914</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2019-12-06T22:22:18Z</dc:date>
    </item>
  </channel>
</rss>

