<?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: Going for dump while using field symbols in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750220#M325278</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks for all your valuable help. It Really helped me. I gave points to the more helpful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shalem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Dec 2006 10:26:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-22T10:26:34Z</dc:date>
    <item>
      <title>Going for dump while using field symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750215#M325273</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;   I am using field symbols in my program. Program is going dump for some company codes and working fine for some company codes.&lt;/P&gt;&lt;P&gt;I am confused. Please check this code where the error is shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT i_final ASSIGNING &amp;lt;fs_final&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    AT NEW belnr.&lt;/P&gt;&lt;P&gt;     if  &amp;lt;fs_final&amp;gt;-wt_withcd  = 'SF' or  &amp;lt;fs_final&amp;gt;-wt_withcd  = 'XF' OR  &amp;lt;fs_final&amp;gt;-  wt_withcd  = 'WF'.&lt;/P&gt;&lt;P&gt;      MOVE &amp;lt;fs_final&amp;gt; TO wa_final1.&lt;/P&gt;&lt;P&gt;      g_qsatz = wa_final1-qsatz.&lt;/P&gt;&lt;P&gt;      APPEND wa_final1 TO i_final1.&lt;/P&gt;&lt;P&gt;      CLEAR wa_final1.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ TABLE i_final1 ASSIGNING &amp;lt;fs_final1&amp;gt; WITH KEY belnr = &amp;lt;fs_final&amp;gt;-belnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF &amp;lt;fs_final&amp;gt;-wt_withcd  = 'SF'.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-wt_withcd1 = &amp;lt;fs_final&amp;gt;-wt_withcd.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-wt_qbshb1  = &amp;lt;fs_final&amp;gt;-wt_qbshb.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-qsatz      = &amp;lt;fs_final1&amp;gt;-qsatz + &amp;lt;fs_final&amp;gt;-qsatz.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF &amp;lt;fs_final&amp;gt;-wt_withcd  = 'XF'.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-wt_withcd2 = &amp;lt;fs_final&amp;gt;-wt_withcd.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-wt_qbshb2  = &amp;lt;fs_final&amp;gt;-wt_qbshb.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-qsatz      = &amp;lt;fs_final1&amp;gt;-qsatz + &amp;lt;fs_final&amp;gt;-qsatz.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF &amp;lt;fs_final&amp;gt;-wt_withcd = 'WF'.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-wt_withcd = &amp;lt;fs_final&amp;gt;-wt_withcd.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-wt_qbshb  = &amp;lt;fs_final&amp;gt;-wt_qbshb.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-qsatz      = &amp;lt;fs_final1&amp;gt;-qsatz + &amp;lt;fs_final&amp;gt;-qsatz.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    AT END OF belnr.&lt;/P&gt;&lt;P&gt;      &amp;lt;fs_final1&amp;gt;-qsatz = &amp;lt;fs_final1&amp;gt;-qsatz - g_qsatz.&lt;/P&gt;&lt;P&gt;      clear g_qsatz.&lt;/P&gt;&lt;P&gt;    ENDAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the code and help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Shalem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 09:56:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750215#M325273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T09:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Going for dump while using field symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750216#M325274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For this problem the best way is to debug and checkout , slowly debug and check for which company code it is giving dump and analyse if it is different from others&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750216#M325274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: Going for dump while using field symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750217#M325275</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;When you do the READ TABLE i_final1 ASSIGNING &amp;lt;fs_final1&amp;gt;.&lt;/P&gt;&lt;P&gt;It could be that there is no value for it in &amp;lt;fs_final&amp;gt;. As a result of this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;fs_final1&amp;gt; is not getting assigned and hence when you pass the value&lt;/P&gt;&lt;P&gt;to &amp;lt;fs_final1&amp;gt; the short dump occurs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750217#M325275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: Going for dump while using field symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750218#M325276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Shalem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT i_final ASSIGNING &amp;lt;fs_final&amp;gt;.
 
  AT NEW belnr.
     if &amp;lt;fs_final&amp;gt;-wt_withcd = 'SF' or 
        &amp;lt;fs_final&amp;gt;-wt_withcd = 'XF' OR 
        &amp;lt;fs_final&amp;gt;- wt_withcd = 'WF'.
        MOVE &amp;lt;fs_final&amp;gt; TO wa_final1.
        g_qsatz = wa_final1-qsatz.
        APPEND wa_final1 TO i_final1.
        CLEAR wa_final1.
     ENDIF.
  ENDAT.

  READ TABLE i_final1 ASSIGNING &amp;lt;fs_final1&amp;gt; WITH KEY belnr = &amp;lt;fs_final&amp;gt;-belnr.
  IF sy-subrc EQ 0.

     CASE &amp;lt;fs_final&amp;gt;-wt_withcd.
     WHEN 'SF'.
          &amp;lt;fs_final1&amp;gt;-wt_withcd1 = &amp;lt;fs_final&amp;gt;-wt_withcd.
          &amp;lt;fs_final1&amp;gt;-wt_qbshb1 = &amp;lt;fs_final&amp;gt;-wt_qbshb.
     WHEN 'XF'.
          &amp;lt;fs_final1&amp;gt;-wt_withcd2 = &amp;lt;fs_final&amp;gt;-wt_withcd.
          &amp;lt;fs_final1&amp;gt;-wt_qbshb2 = &amp;lt;fs_final&amp;gt;-wt_qbshb.
     WHEN 'WF'.
          &amp;lt;fs_final1&amp;gt;-wt_withcd = &amp;lt;fs_final&amp;gt;-wt_withcd.
          &amp;lt;fs_final1&amp;gt;-wt_qbshb = &amp;lt;fs_final&amp;gt;-wt_qbshb.
     ENDCASE.
     &amp;lt;fs_final1&amp;gt;-qsatz = &amp;lt;fs_final1&amp;gt;-qsatz + &amp;lt;fs_final&amp;gt;-qsatz.
     
     AT END OF belnr.
        &amp;lt;fs_final1&amp;gt;-qsatz = &amp;lt;fs_final1&amp;gt;-qsatz - g_qsatz.
        clear g_qsatz.
     ENDAT.
  ENDIF.

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:08:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750218#M325276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Going for dump while using field symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750219#M325277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;By your description of the problem it indicates that the issue is purely driven by data and not the code. I agree with Dominic that it can be the issue but it would nice if you can provide the details about the dump and if you try and check in the debugger the particular record values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anurag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 10:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750219#M325277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T10:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: Going for dump while using field symbols</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750220#M325278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks for all your valuable help. It Really helped me. I gave points to the more helpful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shalem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 10:26:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/going-for-dump-while-using-field-symbols/m-p/1750220#M325278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T10:26:34Z</dc:date>
    </item>
  </channel>
</rss>

