<?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 Moving DATA from Internal Table to Ranges in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240706#M141991</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 have an Internal table and a range variable both  contain one field. Internal table is having only one table. I am populating the table data from a select query. Now I want to transfer the data to a range field. The internal table is having thousands of records so I want to do this &amp;lt;b&amp;gt;without LOOP&amp;lt;/b&amp;gt;. Can anybody suggest the efficient way to achieve this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jignesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Apr 2006 15:27:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-18T15:27:50Z</dc:date>
    <item>
      <title>Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240706#M141991</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 have an Internal table and a range variable both  contain one field. Internal table is having only one table. I am populating the table data from a select query. Now I want to transfer the data to a range field. The internal table is having thousands of records so I want to do this &amp;lt;b&amp;gt;without LOOP&amp;lt;/b&amp;gt;. Can anybody suggest the efficient way to achieve this? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jignesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:27:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240706#M141991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240707#M141992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NO way of doing it without a loop condition.&lt;/P&gt;&lt;P&gt;One way is to sort the internal table and take the first record in the ranges-low and the last record in the range-high parameter. and use 'BT' in the option.&lt;/P&gt;&lt;P&gt;But this doesn't ensure correct fetching of records.&lt;/P&gt;&lt;P&gt;For eg let your internal table has 1 to 100 records with some records missing (say 20, 30 etc).&lt;/P&gt;&lt;P&gt;your ranges can be filled like 1 to 100.&lt;/P&gt;&lt;P&gt;But it will fetch all the records in between 1 and 100 (including 20 and 30 also).&lt;/P&gt;&lt;P&gt;So there is o other way but to use loop statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240707#M141992</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240708#M141993</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;   This is not possible.&lt;/P&gt;&lt;P&gt;   The internal table structure is different from the &lt;/P&gt;&lt;P&gt;   ranges.&lt;/P&gt;&lt;P&gt;   U said internal table has only one field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   But ranges has&lt;/P&gt;&lt;P&gt;   SIGN&lt;/P&gt;&lt;P&gt;   OPTION&lt;/P&gt;&lt;P&gt;   LOW&lt;/P&gt;&lt;P&gt;   HIGH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Atleast 3 fields need to be filled.&lt;/P&gt;&lt;P&gt;   U need to loop the IT and fill the ranges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Loop at IT.&lt;/P&gt;&lt;P&gt;     r_ranges-sign = 'I'.&lt;/P&gt;&lt;P&gt;     r_ranges-option = 'EQ'.&lt;/P&gt;&lt;P&gt;     r_ranges-low = it-field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     append r_ranges.&lt;/P&gt;&lt;P&gt;   endloop.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;There is no other way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;GSR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:32:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240708#M141993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240709#M141994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure of this...just guessing...You're saying that you internal table have just one field, right? And form example, you have the following records...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A001&lt;/P&gt;&lt;P&gt;A002&lt;/P&gt;&lt;P&gt;A003&lt;/P&gt;&lt;P&gt;B001&lt;/P&gt;&lt;P&gt;B002&lt;/P&gt;&lt;P&gt;And so on...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your range you could do this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE T_TABLE INDEX 1.&lt;/P&gt;&lt;P&gt;RANGE_TABLE-LOW = T_TABLE-FIELD.&lt;/P&gt;&lt;P&gt;DESCRIBE T_TABLE LINES L_LINES.&lt;/P&gt;&lt;P&gt;READ TABLE T_TABLE INDEX L_LINES.&lt;/P&gt;&lt;P&gt;RANGE_TABLE-HIGH = T_TABLE-FIELD.&lt;/P&gt;&lt;P&gt;RANGE_TABLE-OPTION = "BT".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now your range goes from A001 to the end of you internal table records -:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:33:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240709#M141994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240710#M141995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is one way where u can do without loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort table itab by vbeln posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table itab index 1.&lt;/P&gt;&lt;P&gt;ranges-low = itab-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear itab.&lt;/P&gt;&lt;P&gt;describe table itab lines w_line.&lt;/P&gt;&lt;P&gt;read table itab index w_line.&lt;/P&gt;&lt;P&gt;ranges-high = itab-vbeln.&lt;/P&gt;&lt;P&gt;ranges-sign = 'I'.&lt;/P&gt;&lt;P&gt;ranges-option = 'BT'.&lt;/P&gt;&lt;P&gt;append ranges.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is surely help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps.&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Hasmath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240710#M141995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240711#M141996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually I am doing threading in my program. So main program will fetch some data in the field of internal table and then I want to split data in chunk and then want to pass it to sub program using threading. Now my sub program have select-option only. so i want to convert my data of internal table into range(i.e. select option).&lt;/P&gt;&lt;P&gt;Now range has its own structure. So is there any way i can fill the range from internal table?? ALSO the suggested solution will fill LOW and HIGH. But it will contain all the values between them. I have some specific values to fill in. (for example, i dont want 20, 30 in the range of 10 to 100).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please if anybody has implemented this let me know....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks so much.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jignesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jignesh Patel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:40:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240711#M141996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240712#M141997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use a range table with thousands of entries in a select statement, it will likely dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:44:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240712#M141997</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240713#M141998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Jignesh,&lt;/P&gt;&lt;P&gt; Are you callin your sub program using submit statement and for that reason you are passing the data to the program in ranges?&lt;/P&gt;&lt;P&gt;If that is the case, you can use the export / import statements to transfer your data from the main program to the sub program.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240713#M141998</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240714#M141999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U don't have any other option rather than loop the&lt;/P&gt;&lt;P&gt;IT and fill in the range.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240714#M141999</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240715#M142000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah... I am using SUBMIT for crating a batch job thread. But I dont have to use MEMORY ID too for this since in production its having some issues. &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jignesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:49:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240715#M142000</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T15:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240716#M142001</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;... the sump with too big range tables is a pure oracle sickness. AFAIK the size limit for the select statement has been extended from 16k to 32k, so this danger is smaller than it used to be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway you can use the FOR ALL ENTRIES IN clause and the ABAP-SQL-interface will handle the package size very efficienly. There was a time I believed that FOR ALL ENTRIES IN should not be used because it would slow down the data selection. I have learned that this is not true at all because of the package technique.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And now for everyone who wants to built ranges of any size (no limit for internal tables):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call this like (just as an example for initializing select-options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM append_range USING:&lt;/P&gt;&lt;P&gt;  'IEQ' sy-datum(4) '' CHANGING s_gjahr[],&lt;/P&gt;&lt;P&gt;  'IBT' 1 'ZZZZZZZZZZ' CHANGING s_prctr[],&lt;/P&gt;&lt;P&gt;  'IBT' 1 16           CHANGING s_monat[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that SIGN and OPTION are combined into one parameter saving time and gaining overview (?).&lt;/P&gt;&lt;P&gt;I created the FORM once and used it so many times...&lt;/P&gt;&lt;P&gt;Actually you don't need so many "CHECK sy-subrc = 0" if you know how to use the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  append_range&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      append selection range&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM append_range  USING    p_signopt     TYPE c&lt;/P&gt;&lt;P&gt;                            p_low         TYPE any&lt;/P&gt;&lt;P&gt;                            p_high        TYPE any&lt;/P&gt;&lt;P&gt;                   CHANGING pt_range      TYPE table.&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS:&lt;/P&gt;&lt;P&gt;    &amp;lt;range&amp;gt;                               TYPE ANY,&lt;/P&gt;&lt;P&gt;    &amp;lt;sign&amp;gt;                                TYPE ANY,&lt;/P&gt;&lt;P&gt;    &amp;lt;option&amp;gt;                              TYPE ANY,&lt;/P&gt;&lt;P&gt;    &amp;lt;low&amp;gt;                                 TYPE ANY,&lt;/P&gt;&lt;P&gt;    &amp;lt;high&amp;gt;                                TYPE ANY.&lt;/P&gt;&lt;P&gt;  DATA:&lt;/P&gt;&lt;P&gt;    l_ref                                 TYPE REF TO data.&lt;/P&gt;&lt;P&gt;  CREATE DATA l_ref                       LIKE LINE OF pt_range.&lt;/P&gt;&lt;P&gt;  ASSIGN l_ref-&amp;gt;* TO &amp;lt;range&amp;gt;.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc                          = 0.&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT 'SIGN' OF STRUCTURE &amp;lt;range&amp;gt; TO &amp;lt;sign&amp;gt;.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc                          = 0.&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT 'OPTION' OF STRUCTURE &amp;lt;range&amp;gt; TO &amp;lt;option&amp;gt;.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc                          = 0.&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT 'LOW' OF STRUCTURE &amp;lt;range&amp;gt; TO &amp;lt;low&amp;gt;.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc                          = 0.&lt;/P&gt;&lt;P&gt;  ASSIGN COMPONENT 'HIGH' OF STRUCTURE &amp;lt;range&amp;gt; TO &amp;lt;high&amp;gt;.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc                          = 0.&lt;/P&gt;&lt;P&gt;  &amp;lt;sign&amp;gt;                                  = p_signopt(1).&lt;/P&gt;&lt;P&gt;  &amp;lt;option&amp;gt;                                = p_signopt+1(2).&lt;/P&gt;&lt;P&gt;  &amp;lt;low&amp;gt;                                   = p_low.&lt;/P&gt;&lt;P&gt;  &amp;lt;high&amp;gt;                                  = p_high.&lt;/P&gt;&lt;P&gt;  APPEND &amp;lt;range&amp;gt; TO pt_range.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " append_range&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enjoy your ranges,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 15:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240716#M142001</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2006-04-18T15:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Moving DATA from Internal Table to Ranges</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240717#M142002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, I'm in a DB2 environment and it dumps with a range table with 2K entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Apr 2006 16:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/moving-data-from-internal-table-to-ranges/m-p/1240717#M142002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-18T16:06:56Z</dc:date>
    </item>
  </channel>
</rss>

