<?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: range and dump in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713402#M893915</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx yall a lot by appending instead of modify i solve the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 06:37:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T06:37:14Z</dc:date>
    <item>
      <title>range and dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713396#M893909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i had this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
RANGES r_clienti FOR kna1-kunnr.
START-OF-SELECTION.
  CLEAR ok_exit.
  CLEAR sti_knvp2.
  IF NOT s_vendi[] IS INITIAL.
  SELECT kunnr FROM knvp INTO r_clienti-low
                        WHERE kunn2 IN s_vendi
                          AND vkorg EQ 'IT07'
                        AND kunnr IN dd_kunnr
                        AND parvw = 'V2'.           "ae-modif 19.04.08
     r_clienti-option = 'EQ'.
      r_clienti-sign = 'I'.
     APPEND r_clienti.
    ENDSELECT.

    DESCRIBE TABLE r_clienti LINES n_cli.
    IF n_cli &amp;lt; 1000.
      dd_kunnr[] = r_clienti[].
      IF dd_kunnr[] IS INITIAL.
        EXIT.
      ENDIF.
    ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i want to take off the select/end select and i made&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT kunnr FROM knvp APPENDING TABLE sti_knvp2
                        WHERE kunn2 IN s_vendi
                          AND vkorg EQ 'IT07'
                          AND kunnr IN dd_kunnr
                          AND parvw = 'V2'.           "ae-modif 19.04.08
    LOOP AT sti_knvp2.
      r_clienti-low = sti_knvp2-kunnr.
      r_clienti-option = 'EQ'.
      r_clienti-sign = 'I'.
      MODIFY r_clienti.
    ENDLOOP.
    DESCRIBE TABLE r_clienti LINES n_cli.
    IF n_cli &amp;lt; 1000.
      dd_kunnr[] = r_clienti[].
      IF dd_kunnr[] IS INITIAL.
        EXIT.
      ENDIF.
    ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the report goes in dump and i can't understand why.&lt;/P&gt;&lt;P&gt;who can help me please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 17:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713396#M893909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T17:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: range and dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713397#M893910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using the ranges will effect the performance... try if you can eliminate it..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT kunnr FROM knvp into vl_kunnr 
                        WHERE kunn2 IN s_vendi
                          AND vkorg EQ 'IT07'
                          AND kunnr IN dd_kunnr
                          AND parvw = 'V2'.           "ae-modif 19.04.08

    LOOP AT sti_knvp2.
      r_clienti-low = vl_kunnr.
      r_clienti-option = 'EQ'.
      r_clienti-sign = 'I'.
      MODIFY r_clienti.
    ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 17:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713397#M893910</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-04-21T17:17:33Z</dc:date>
    </item>
    <item>
      <title>Re: range and dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713398#M893911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the dump message you are getting and what is the structure of the table sti_knvp2 which you are using?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Krish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 17:18:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713398#M893911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T17:18:24Z</dc:date>
    </item>
    <item>
      <title>Re: range and dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713399#M893912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the dump is because of range then you can try using for all entries in r_xxx where &amp;lt;field&amp;gt; eq r_xxx-low.  In your case you are using 2 ranges - depending upon which range you feel can have more number of records, you can switch that using for all entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Krish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 17:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713399#M893912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T17:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: range and dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713400#M893913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI EBONGUE ANDRE ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     CHeck with the firlds in your internal table sti_knvp2.if it contain more fields other than Kunnr,Pls use into corresponding fields of table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajeshwar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 21, 2008 1:33 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 17:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713400#M893913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T17:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: range and dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713401#M893914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This line should be an APPEND&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    LOOP AT sti_knvp2.
      r_clienti-low = sti_knvp2-kunnr.
      r_clienti-option = 'EQ'.
      r_clienti-sign = 'I'.
      MODIFY r_clienti.        "  Should be APPEND
    ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after you build the Range, you should also SORT and DELETE DUPLICATES.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 17:26:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713401#M893914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T17:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: range and dump</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713402#M893915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx yall a lot by appending instead of modify i solve the problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 06:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/range-and-dump/m-p/3713402#M893915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T06:37:14Z</dc:date>
    </item>
  </channel>
</rss>

