<?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: collect issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296905#M501577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;COLLECT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;COLLECT wa INTO itab [result]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement inserts the contents of a work area wa either as single row into an internal table itab or &amp;lt;b&amp;gt;adds the values of its numeric components&amp;lt;/b&amp;gt; to the corresponding values of existing rows with the same key. As of Release 6.10, you can use result to set a reference to the inserted or changed row in the form of a field symbol or data reference. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Prerequisite for the use of this statement is that wa is compatible with the row type of itab and all components that are not part of the table key must have a numeric data type (i, p, f).&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;In standard tables that are only filled using COLLECT, the entry is determined by a temporarily created hash administration. The workload is independent of the number of entries in the table. The hash administration is temporary and is generally invalidated when the table is accessed for changing. If further COLLECT statements are entered after an invalidation, a linear search of all table rows is performed. The workload for this search increases in a linear fashion in relation to the number of entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In sorted tables, the entry is determined using a binary search. The workload has a logarithmic relationship to the number of entries in the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In hashed tables, the entry is determined using the hash administration of the table and is always independent of the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If no line is found with an identical key, a row is inserted as described below, and filled with the content of wa: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In standard tables the line is appended. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In sorted tables, the new line is inserted in the sort sequence of the internal table according to its key values, and the table index of subsequent rows is increased by 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In hashed tables, the new row is inserted into the internal table by the hash administration, according to its key values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the internal table already contains one or more rows with an identical key, those values of the components of work area wa that are not part of the key, are added to the corresponding components of the uppermost existing row (in the case of index tables, this is the row with the lowest table index). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The COLLECT statement sets sy-tabix to the table index of the inserted or existing row, in the case of standard tables and sorted tables, and to the value 0 in the case of hashed tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outside of classes, you can omit wa INTO if the internal table has an identically-named header line itab. The statement then implicitly uses the header line as the work area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLLECT should only be used if you want to create an internal table that is genuinely unique or compressed. In this case, COLLECT can greatly benefit performance. If uniqueness or compression are not required, or the uniqueness is guaranteed for other reasons, the INSERT statement should be used instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The use of COLLECT for standard tables is obsolete. COLLECT should primarily be used for hashed tables, as these have a unique table key and a stable hash administration. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a standard table is filled using COLLECT, it should not be edited using any other statement with the exception of MODIFY. If the latter is used with the addition TRANSPORTING, you must ensure that no key fields are changed. This is the only way to guarantee that the table entries are always unique and compressed, and that the COLLECT statement functions correctly and benefits performance. The function module ABL_TABLE_HASH_STATE can be used to check whether a standard table is suitable for editing using COLLECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Compressed insertion of data from the database table sflight into the internal table seats_tab. The rows in which the key components carrid and connid are identical are compressed by adding the number of occupied seats to the numeric component seatsocc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF seats, &lt;/P&gt;&lt;P&gt;        carrid   TYPE sflight-carrid, &lt;/P&gt;&lt;P&gt;        connid   TYPE sflight-connid, &lt;/P&gt;&lt;P&gt;        seatsocc TYPE sflight-seatsocc, &lt;/P&gt;&lt;P&gt;      END OF seats. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA seats_tab LIKE HASHED TABLE OF seats &lt;/P&gt;&lt;P&gt;               WITH UNIQUE KEY carrid connid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT carrid connid seatsocc &lt;/P&gt;&lt;P&gt;       FROM sflight &lt;/P&gt;&lt;P&gt;       INTO seats. &lt;/P&gt;&lt;P&gt;  COLLECT seats INTO seats_tab. &lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 May 2007 03:35:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-31T03:35:19Z</dc:date>
    <item>
      <title>collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296898#M501570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;any wrong with my collect? why fkimg accumulated even vbeln is different? thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: BEGIN OF it_tab OCCURS 0,&lt;/P&gt;&lt;P&gt;        vbelv    LIKE vbfa-vbelv,&lt;/P&gt;&lt;P&gt;        vbeln    LIKE vbfa-vbeln,&lt;/P&gt;&lt;P&gt;        fkimg    like vbrp-fkimg,&lt;/P&gt;&lt;P&gt;        END OF it_tab.&lt;/P&gt;&lt;P&gt;  DATA: wa_tab like it_tab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  in between data get populated in it_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  sort it_tab by vbelv vbeln.&lt;/P&gt;&lt;P&gt;  clear wa_tab.&lt;/P&gt;&lt;P&gt;  loop at it_tab into wa_tab.&lt;/P&gt;&lt;P&gt;       collect wa_tab into it_tab.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:26:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296898#M501570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296899#M501571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Should be vbelv and vbeln are same then it sum the qty ,otherwise it will not.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:30:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296899#M501571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:30:19Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296900#M501572</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;collect the values to another internal table..instead of the same internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: it_collect like table of it_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_tab into wa_tab.&lt;/P&gt;&lt;P&gt;collect wa_tab into it_collect.&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;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:30:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296900#M501572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296901#M501573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: BEGIN OF it_tab OCCURS 0,&lt;/P&gt;&lt;P&gt;vbelv LIKE vbfa-vbelv,&lt;/P&gt;&lt;P&gt;vbeln LIKE vbfa-vbeln,&lt;/P&gt;&lt;P&gt;fkimg like vbrp-fkimg,&lt;/P&gt;&lt;P&gt;END OF it_tab.&lt;/P&gt;&lt;P&gt;DATA: wa_tab like it_tab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DATA: BEGIN OF it_tab1 OCCURS 0,&lt;/P&gt;&lt;P&gt;vbelv LIKE vbfa-vbelv,&lt;/P&gt;&lt;P&gt;vbeln LIKE vbfa-vbeln,&lt;/P&gt;&lt;P&gt;fkimg like vbrp-fkimg,&lt;/P&gt;&lt;P&gt;END OF it_tab1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in between data get populated in it_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_tab by vbelv vbeln.&lt;/P&gt;&lt;P&gt;clear wa_tab.&lt;/P&gt;&lt;P&gt;loop at it_tab into wa_tab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;collect wa_tab into it_tab1.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296901#M501573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296902#M501574</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;You need to collect into different table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF it_tab,&lt;/P&gt;&lt;P&gt;vbelv like vbfa-vbelv,&lt;/P&gt;&lt;P&gt;vbeln LIKE vbfa-vbeln,&lt;/P&gt;&lt;P&gt;fkimg like vbrp-fkimg,&lt;/P&gt;&lt;P&gt;END OF it_tab.&lt;/P&gt;&lt;P&gt;DATA: wa_tab type it_tab.&lt;/P&gt;&lt;P&gt;data: it_itab type  standard table of it_itab, &lt;/P&gt;&lt;P&gt;itab2 type  standard table of it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in between data get populated in it_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_tab by vbelv vbeln.&lt;/P&gt;&lt;P&gt;clear wa_tab.&lt;/P&gt;&lt;P&gt;loop at it_tab into wa_tab.&lt;/P&gt;&lt;P&gt;collect wa_tab into itab2.&lt;/P&gt;&lt;P&gt;endloop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296902#M501574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:32:47Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296903#M501575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;Only the quantity field will be accumulated. Vbeln is a character field, so it will not be accumulated.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296903#M501575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296904#M501576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;collect will sum only if  vbelv and vbeln are same.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clear workarea after collect and checkout&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at it_tab into wa_tab.&lt;/P&gt;&lt;P&gt;collect wa_tab into it_tab.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;clear wa_tab.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:33:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296904#M501576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296905#M501577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;COLLECT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax &lt;/P&gt;&lt;P&gt;COLLECT wa INTO itab [result]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This statement inserts the contents of a work area wa either as single row into an internal table itab or &amp;lt;b&amp;gt;adds the values of its numeric components&amp;lt;/b&amp;gt; to the corresponding values of existing rows with the same key. As of Release 6.10, you can use result to set a reference to the inserted or changed row in the form of a field symbol or data reference. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Prerequisite for the use of this statement is that wa is compatible with the row type of itab and all components that are not part of the table key must have a numeric data type (i, p, f).&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;In standard tables that are only filled using COLLECT, the entry is determined by a temporarily created hash administration. The workload is independent of the number of entries in the table. The hash administration is temporary and is generally invalidated when the table is accessed for changing. If further COLLECT statements are entered after an invalidation, a linear search of all table rows is performed. The workload for this search increases in a linear fashion in relation to the number of entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In sorted tables, the entry is determined using a binary search. The workload has a logarithmic relationship to the number of entries in the table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In hashed tables, the entry is determined using the hash administration of the table and is always independent of the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If no line is found with an identical key, a row is inserted as described below, and filled with the content of wa: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In standard tables the line is appended. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In sorted tables, the new line is inserted in the sort sequence of the internal table according to its key values, and the table index of subsequent rows is increased by 1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In hashed tables, the new row is inserted into the internal table by the hash administration, according to its key values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the internal table already contains one or more rows with an identical key, those values of the components of work area wa that are not part of the key, are added to the corresponding components of the uppermost existing row (in the case of index tables, this is the row with the lowest table index). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The COLLECT statement sets sy-tabix to the table index of the inserted or existing row, in the case of standard tables and sorted tables, and to the value 0 in the case of hashed tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Outside of classes, you can omit wa INTO if the internal table has an identically-named header line itab. The statement then implicitly uses the header line as the work area. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLLECT should only be used if you want to create an internal table that is genuinely unique or compressed. In this case, COLLECT can greatly benefit performance. If uniqueness or compression are not required, or the uniqueness is guaranteed for other reasons, the INSERT statement should be used instead. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The use of COLLECT for standard tables is obsolete. COLLECT should primarily be used for hashed tables, as these have a unique table key and a stable hash administration. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a standard table is filled using COLLECT, it should not be edited using any other statement with the exception of MODIFY. If the latter is used with the addition TRANSPORTING, you must ensure that no key fields are changed. This is the only way to guarantee that the table entries are always unique and compressed, and that the COLLECT statement functions correctly and benefits performance. The function module ABL_TABLE_HASH_STATE can be used to check whether a standard table is suitable for editing using COLLECT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Compressed insertion of data from the database table sflight into the internal table seats_tab. The rows in which the key components carrid and connid are identical are compressed by adding the number of occupied seats to the numeric component seatsocc. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF seats, &lt;/P&gt;&lt;P&gt;        carrid   TYPE sflight-carrid, &lt;/P&gt;&lt;P&gt;        connid   TYPE sflight-connid, &lt;/P&gt;&lt;P&gt;        seatsocc TYPE sflight-seatsocc, &lt;/P&gt;&lt;P&gt;      END OF seats. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA seats_tab LIKE HASHED TABLE OF seats &lt;/P&gt;&lt;P&gt;               WITH UNIQUE KEY carrid connid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT carrid connid seatsocc &lt;/P&gt;&lt;P&gt;       FROM sflight &lt;/P&gt;&lt;P&gt;       INTO seats. &lt;/P&gt;&lt;P&gt;  COLLECT seats INTO seats_tab. &lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 May 2007 03:35:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296905#M501577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-31T03:35:19Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296906#M501578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange, did noone notice that, or am I wrong ? Doesn't the program just multiply by 2 fkimg of each row in the internal table &lt;IMG src="? It's a no-sense program" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2007 07:17:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296906#M501578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-26T07:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: collect issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296907#M501579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Collect the wa to another internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp; it wil collect only the Qty field not char fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jul 2007 07:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/collect-issue/m-p/2296907#M501579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-26T07:26:40Z</dc:date>
    </item>
  </channel>
</rss>

