<?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: Dumping Error in quality not in Dev in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024375#M715045</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT r~OW_WHGNR&lt;/P&gt;&lt;P&gt;r~bil_dat&lt;/P&gt;&lt;P&gt;r~abrnr&lt;/P&gt;&lt;P&gt;t~kurst&lt;/P&gt;&lt;P&gt;t~fcurr&lt;/P&gt;&lt;P&gt;t~gdatu&lt;/P&gt;&lt;P&gt;FROM tcurr as t INNER JOIN /msg/rabr as r on t&lt;SUB&gt;fcurr = r&lt;/SUB&gt;OW_WHGNR into table it_output&lt;/P&gt;&lt;P&gt;WHERE t&lt;SUB&gt;kurst EQ 'M' AND r&lt;/SUB&gt;abrnr BETWEEN '00000000000001228014' AND '00000000000001238014' AND r~bil_dat LE l_date . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Split the above select into 2 parts&lt;/P&gt;&lt;P&gt;select &amp;lt;data&amp;gt; from TCURR into table IT_TCURR in first step&lt;/P&gt;&lt;P&gt;Now use for all entries and &lt;/P&gt;&lt;P&gt;select &amp;lt;data&amp;gt; from /MSG/RABR where &amp;lt;Conditions&amp;gt; and OW_WHGNR = IT_TCURR-FCURR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a final step move all the data to IT_FINAL(declare all fields required as IT_FINAL)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should improve the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Nov 2007 02:09:30 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2007-11-06T02:09:30Z</dc:date>
    <item>
      <title>Dumping Error in quality not in Dev</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024374#M715044</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;      here i ve dev a report that is fetching data from 2 tables with simple sql querry, it is working properly in dev, but in Quality its is giving Dump error, in quality its running almost 10min..&lt;/P&gt;&lt;P&gt;  in dump its giving Memory Exausted error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; what is the wrong inthat select querry plz help..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; REPORT  ZEXCHANGE_RETES                         .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : tcurr,           " Exchange Rates&lt;/P&gt;&lt;P&gt;         /msg/rabr.       " Account (Posting Headers)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : l_date type datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : begin of t_tcurr,&lt;/P&gt;&lt;P&gt;        kurst like tcurr-kurst,  " Exchange Rate type&lt;/P&gt;&lt;P&gt;        fcurr like tcurr-fcurr,   " From Currrency&lt;/P&gt;&lt;P&gt;        gdatu like tcurr-gdatu,   " Date as of which&lt;/P&gt;&lt;P&gt;    end of t_tcurr.&lt;/P&gt;&lt;P&gt;TYPES : begin of t_rabr,&lt;/P&gt;&lt;P&gt;        OW_WHGNR like /msg/rabr-OW_WHGNR,&lt;/P&gt;&lt;P&gt;        bil_date like /msg/rabr-bil_dat,&lt;/P&gt;&lt;P&gt;        abrnr like /msg/rabr-abrnr,&lt;/P&gt;&lt;P&gt;       end of t_rabr.&lt;/P&gt;&lt;P&gt;TYPES : begin of t_output,&lt;/P&gt;&lt;P&gt;        OW_WHGNR like /msg/rabr-OW_WHGNR,&lt;/P&gt;&lt;P&gt;        bil_date like /msg/rabr-bil_dat,&lt;/P&gt;&lt;P&gt;        abrnr like /msg/rabr-abrnr,&lt;/P&gt;&lt;P&gt;        kurst like tcurr-kurst,&lt;/P&gt;&lt;P&gt;        fcurr like tcurr-fcurr,&lt;/P&gt;&lt;P&gt;        gdatu like tcurr-gdatu,&lt;/P&gt;&lt;P&gt;       end of t_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA : it_output TYPE STANDARD TABLE OF t_output WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        wa_output TYPE t_output.&lt;/P&gt;&lt;P&gt; DATA : it_rabr TYPE STANDARD TABLE OF t_rabr WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        wa_rabr TYPE t_rabr.&lt;/P&gt;&lt;P&gt; DATA : it_tcurr TYPE STANDARD TABLE OF t_tcurr WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;        wa_tcurr TYPE t_tcurr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR : it_tcurr,&lt;/P&gt;&lt;P&gt;        it_rabr,&lt;/P&gt;&lt;P&gt;        it_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH : it_tcurr,&lt;/P&gt;&lt;P&gt;          it_rabr,&lt;/P&gt;&lt;P&gt;          it_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SELECT kurst fcurr gdatu&lt;/P&gt;&lt;P&gt;          from tcurr into table it_tcurr&lt;/P&gt;&lt;P&gt;          where kurst EQ 'M'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SORT it_tcurr by GDATU descending.&lt;/P&gt;&lt;P&gt;          READ table it_tcurr index 1.&lt;/P&gt;&lt;P&gt;          IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;            l_date = it_tcurr-gdatu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          ENDIF.    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT r~OW_WHGNR&lt;/P&gt;&lt;P&gt;        r~bil_dat&lt;/P&gt;&lt;P&gt;        r~abrnr&lt;/P&gt;&lt;P&gt;        t~kurst&lt;/P&gt;&lt;P&gt;        t~fcurr&lt;/P&gt;&lt;P&gt;        t~gdatu&lt;/P&gt;&lt;P&gt;        FROM tcurr as t INNER JOIN /msg/rabr as r on t&lt;SUB&gt;fcurr = r&lt;/SUB&gt;OW_WHGNR into table it_output&lt;/P&gt;&lt;P&gt;        WHERE t&lt;SUB&gt;kurst EQ 'M' AND r&lt;/SUB&gt;abrnr BETWEEN '00000000000001228014' AND '00000000000001238014' AND r~bil_dat LE l_date . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP at it_output into wa_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WRITE: /10 wa_output-kurst,&lt;/P&gt;&lt;P&gt;         15 wa_output-fcurr,&lt;/P&gt;&lt;P&gt;         25 wa_output-bil_date,&lt;/P&gt;&lt;P&gt;         50 wa_output-OW_WHGNR,&lt;/P&gt;&lt;P&gt;         60 wa_output-gdatu,&lt;/P&gt;&lt;P&gt;         80 wa_output-abrnr.&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; &lt;/P&gt;&lt;P&gt;TOP-Of-PAGE.&lt;/P&gt;&lt;P&gt;FORMAT COLOR COL_HEADING.&lt;/P&gt;&lt;P&gt;WRITE : /3 'Exc R Type',&lt;/P&gt;&lt;P&gt;        14 'F CURR',&lt;/P&gt;&lt;P&gt;        25 'FI POS dste ',&lt;/P&gt;&lt;P&gt;        48 'Ori CURR',&lt;/P&gt;&lt;P&gt;        60 'Date',&lt;/P&gt;&lt;P&gt;        75 'Account Number'.&lt;/P&gt;&lt;P&gt;         FORMAT COLOR OFF.&lt;/P&gt;&lt;P&gt;       SKIP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt; Thanks and Regards,&lt;/P&gt;&lt;P&gt;sudharsan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:02:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024374#M715044</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T02:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dumping Error in quality not in Dev</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024375#M715045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT r~OW_WHGNR&lt;/P&gt;&lt;P&gt;r~bil_dat&lt;/P&gt;&lt;P&gt;r~abrnr&lt;/P&gt;&lt;P&gt;t~kurst&lt;/P&gt;&lt;P&gt;t~fcurr&lt;/P&gt;&lt;P&gt;t~gdatu&lt;/P&gt;&lt;P&gt;FROM tcurr as t INNER JOIN /msg/rabr as r on t&lt;SUB&gt;fcurr = r&lt;/SUB&gt;OW_WHGNR into table it_output&lt;/P&gt;&lt;P&gt;WHERE t&lt;SUB&gt;kurst EQ 'M' AND r&lt;/SUB&gt;abrnr BETWEEN '00000000000001228014' AND '00000000000001238014' AND r~bil_dat LE l_date . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Split the above select into 2 parts&lt;/P&gt;&lt;P&gt;select &amp;lt;data&amp;gt; from TCURR into table IT_TCURR in first step&lt;/P&gt;&lt;P&gt;Now use for all entries and &lt;/P&gt;&lt;P&gt;select &amp;lt;data&amp;gt; from /MSG/RABR where &amp;lt;Conditions&amp;gt; and OW_WHGNR = IT_TCURR-FCURR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As a final step move all the data to IT_FINAL(declare all fields required as IT_FINAL)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should improve the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:09:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024375#M715045</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-11-06T02:09:30Z</dc:date>
    </item>
    <item>
      <title>Re: Dumping Error in quality not in Dev</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024376#M715046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Quality server are you having lots of data compared to development server.&lt;/P&gt;&lt;P&gt;Please give the details as specified in the ABAP dump analysis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:10:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024376#M715046</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2007-11-06T02:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dumping Error in quality not in Dev</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024377#M715047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the dump is due to time out error then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Tcode : se30.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on &amp;lt;b&amp;gt;tips and tricks&amp;lt;/b&amp;gt; button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There paste ur existing code and optimize your code and see the execution time difference. Click on measure runtime.&lt;/P&gt;&lt;P&gt;And use the most optimized code in your program in order to avoid run time, time out error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:22:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024377#M715047</guid>
      <dc:creator>JoffyJohn</dc:creator>
      <dc:date>2007-11-06T02:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: Dumping Error in quality not in Dev</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024378#M715048</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;Try to analyze your code by SE30 and ST05. I dont think that the SQL needs more optimization. Maybe its taking time due to more data being there in Quality server which is normally the case. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nirmal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 02:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024378#M715048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T02:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: Dumping Error in quality not in Dev</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024379#M715049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gopi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Thank u for replay, here according to u if i use FOR ALL ENTRIES the both table fields should be same type and lenth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; but here date field types r diff from 2 tables, one is for char type and 2nd one is DATES type.&lt;/P&gt;&lt;P&gt;   then how to compare.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sudharsan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Nov 2007 04:44:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dumping-error-in-quality-not-in-dev/m-p/3024379#M715049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-06T04:44:46Z</dc:date>
    </item>
  </channel>
</rss>

