<?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: Problem with a break-point. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376636#M184543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd really like to see this?  Anyway we can see the complete code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Jun 2006 18:01:37 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-06-07T18:01:37Z</dc:date>
    <item>
      <title>Problem with a break-point.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376632#M184539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi people!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have this weird problem. If I put a break-point in the code the program print in the output the value that I want but if I don't put the break-point the program don't show me in the output the value that I want. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know what is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the part of my code when I insert the value into a internal table.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  LOOP AT t_solos INTO wa_solos.
    IF  psummary = 'X'.
      IF s_kunnr-low IS INITIAL OR s_kunnr-high IS NOT INITIAL.
        wa_solos-sin_arrears = ''.
      ENDIF.
    ENDIF.

    IF  psummary = 'X' AND s_kunnr-low IS NOT INITIAL AND s_kunnr-high IS INITIAL.
      wa_solos-finaldz = 'F'.
    ENDIF.

    MOVE-CORRESPONDING wa_solos TO t_bsid.
    APPEND t_bsid.


  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Thanks for the help!! &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 17:51:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376632#M184539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T17:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with a break-point.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376633#M184540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please explain it in more detail? You have program that you execute. When you execute it without a breakpoint, it does not output a certain value, but if you put a breakpoint, stop at the breakpoint and then continue, you see this value printed in the output?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am slightly confused. Can you please take us step-by-step as to what you are doing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 17:56:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376633#M184540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T17:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with a break-point.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376634#M184541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Srinivas Adavi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes, is the same thing that you write. The value that I want is in the internal table t_solos that I put then in t_bsid with the append.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 17:59:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376634#M184541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T17:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with a break-point.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376635#M184542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Carlos,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition of Break-point would only stop the execution of your program till the place where you have placed it.&lt;/P&gt;&lt;P&gt;Addition of break-point does not play any role with the change in output..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where exactly are placing the break-point???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tanveer.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Please mark helpful answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 18:00:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376635#M184542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T18:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with a break-point.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376636#M184543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd really like to see this?  Anyway we can see the complete code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 18:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376636#M184543</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-06-07T18:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with a break-point.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376637#M184544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Tenveer mentioned, unless you are manipulating the values in debugging(provided you have authority to change values in debugging), your break-point should not have any impact on what you see in the output. Please let us know, what is happening to the output if you put the break-point and what happens if you don't put the break point, with an example if possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 18:04:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376637#M184544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T18:04:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with a break-point.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376638#M184545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also, can you try putting a &amp;lt;b&amp;gt;'CLEAR t_bsid'&amp;lt;/b&amp;gt; after your &amp;lt;b&amp;gt;'APPEND t_bsid'&amp;lt;/b&amp;gt; statement in the loop please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jun 2006 18:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-a-break-point/m-p/1376638#M184545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-07T18:06:56Z</dc:date>
    </item>
  </channel>
</rss>

