<?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: Definition in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088907#M434040</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;Append ; used for to read data from internal table to work area&lt;/P&gt;&lt;P&gt;Insert ; Use the insert lines statement when you want to insert rows at a place other than the end into the target table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read ; this used for to read only specified records only. &lt;/P&gt;&lt;P&gt;Modify ;To modify the contents of one or more rows of an internal table, use the modify statement. &lt;/P&gt;&lt;P&gt;Delete ; used to delete the particular fields&lt;/P&gt;&lt;P&gt;Collect ; it is used for totals&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 06:00:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-16T06:00:40Z</dc:date>
    <item>
      <title>Definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088903#M434036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi can any one give simple definition for the below  wrt internal table ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Append  &lt;/P&gt;&lt;P&gt;    Insert     &lt;/P&gt;&lt;P&gt;    Read       &lt;/P&gt;&lt;P&gt;    Modify  &lt;/P&gt;&lt;P&gt;    Delete         &lt;/P&gt;&lt;P&gt;   Collect     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 05:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088903#M434036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T05:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: Definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088904#M434037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;APPEND:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Append is used to add a line to an index table at the end, use the statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND &amp;lt;line&amp;gt; TO &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;line&amp;gt; is either a work area that is convertible to the line type&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;INSERT:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INSERT statement allows you not only to insert lines in any type of internal table, but also allows you to change them using a line index. You can insert either a single line or a group of lines into index tables using the index.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;READ:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To read a single line of any table, use the statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE &amp;lt;itab&amp;gt; &amp;lt;key&amp;gt; &amp;lt;result&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;MODIFY:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the MODIFY statement to change lines in tables using their index&lt;/P&gt;&lt;P&gt;MODIFY &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [INDEX &amp;lt;idx&amp;gt;] [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt; ... ].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The work area &amp;lt;wa&amp;gt; specified in the FROM addition replaces the existing line in &amp;lt;itab&amp;gt;. The work area must be convertible into the line type of the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the INDEX option, the contents of the work area overwrites the contents of the line with index &amp;lt;idx&amp;gt;. If the operation is successful, SY-SUBRC is set to 0. If the internal table contains fewer lines than &amp;lt;idx&amp;gt;, no line is changed and SY-SUBRC is set to 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;DELETE:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To delete lines of any internal table, use the DELETE statement. &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;COLLECT:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following statement allows you to summate entries in an internal table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLLECT &amp;lt;wa&amp;gt; INTO &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;itab&amp;gt; must have a flat line type, and all of the fields that are not part of the table key must have a numeric type (F, I, or P). You specify the line that you want to add in a work area that is compatible with the line type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also see the following links:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb36c8358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb36c8358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb361f358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb361f358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35f8358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35f8358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/06/aafd54fc4011d195280000e8353423/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/06/aafd54fc4011d195280000e8353423/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb36d5358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb36d5358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful......&lt;/P&gt;&lt;P&gt;Suresh.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 05:57:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088904#M434037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T05:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088905#M434038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to the ABAPDOCU  T code, and there you can find the required hlep for your post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 05:57:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088905#M434038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T05:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: Definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088906#M434039</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;   To add a line to an index table, use the statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND &amp;lt;line&amp;gt; TO &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;line&amp;gt; is either a work area that is convertible to the line type, or the expression INITIAL LINE. If you use &amp;lt;wa&amp;gt;, the system adds a new line to the internal table &amp;lt;itab&amp;gt; and fills it with the contents of the work area. INITIAL LINE appends a blank line containing the correct initial value for each field of the structure. After each APPEND statement, the system field SY-TABIX contains the index of the appended line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appending lines to standard tables and sorted tables with a non-unique key works regardless of whether lines with the same key already exist in the table. Duplicate entries may occur. A runtime error occurs if you attempt to add a duplicate entry to a sorted table with a unique key. Equally, a runtime error occurs if you violate the sort order of a sorted table by appending to it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  To add a line to an internal table, use the statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT &amp;lt;line&amp;gt; INTO TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;line&amp;gt; is either a work area that is compatible with the line type, or the expression INITIAL LINE. The work are must be compatible because the fields in the table key must be filled from fields of the correct type. INITIAL LINE inserts a blank line containing the correct initial value for each field of the structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the table has a unique key and you attempt to insert lines whose key already exists in the table, the system does not add the line to the table, and sets SY-SUBRC to 4. When the system successfully adds a line to the table, SY-SUBRC is set to 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To read a single line of any table, use the statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE &amp;lt;itab&amp;gt; &amp;lt;key&amp;gt; &amp;lt;result&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the statement to be valid for any kind of table, you must specify the entry using the key and not the index. You specify the key in the &amp;lt;key&amp;gt; part of the statement. The &amp;lt;result&amp;gt; part can specify a further processing option for the line that is retrieved. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the system finds an entry, it sets SY-SUBRC to zero, if not, it takes the value 4, as long as it is not influenced by one of the possible additions. If the internal table is an index table, SY-TABIX is set to the index of the line retrieved. If the table has a non-unique key and there are duplicate entries, the first entry is read. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To delete a line using its index, use the following statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DELETE &amp;lt;itab&amp;gt; [INDEX &amp;lt;idx&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the INDEX addition, the system deletes the line with the index &amp;lt;idx&amp;gt; from table &amp;lt;itab&amp;gt;, reduces the index of the subsequent lines by 1, and sets SY-SUBRC to zero. Otherwise, if no line with index &amp;lt;idx&amp;gt; exists, SY-SUBRC is set to 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without the INDEX addition, you can only use the above statement within a LOOP. In this case, you delete the current loop line (&amp;lt;idx&amp;gt; is implicitly set to SY-TABIX).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COLLECT &amp;lt;wa&amp;gt; INTO &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;itab&amp;gt; must have a flat line type, and all of the fields that are not part of the table key must have a numeric type (F, I, or P). You specify the line that you want to add in a work area that is compatible with the line type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When the line is inserted, the system checks whether there is already a table entry that matches the key. If there is no corresponding entry already in the table, the COLLECT statement has the same effect as inserting the new line. If an entry with the same key already exists, the COLLECT statement does not append a new line, but adds the contents of the numeric fields in the work area to the contents of the numeric fields in the existing entry. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should only use the COLLECT statement if you want to create summarized tables. If you use other statements to insert table entries, you may end up with duplicate entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To change a single line, use the following statement: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY TABLE &amp;lt;itab&amp;gt; FROM &amp;lt;wa&amp;gt; [TRANSPORTING &amp;lt;f1&amp;gt; &amp;lt;f 2&amp;gt; ...].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The work area &amp;lt;wa&amp;gt;, which must be compatible with the line type of the internal table, plays a double role in this statement. Not only it is used to find the line that you want to change, but it also contains the new contents. The system searches the internal table for the line whose table key corresponds to the key fields in &amp;lt;wa&amp;gt;. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system searches for the relevant lines as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Standard tables&lt;/P&gt;&lt;P&gt;Linear search, where the runtime is in linear relation to the number of table entries. The first entry found is changed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorted tables&lt;/P&gt;&lt;P&gt;Binary search, where the runtime is in logarithmic relation to the number of table entries. The first entry found is changed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hashed tables&lt;/P&gt;&lt;P&gt;The entry is found using the hash algorithm of the internal table. The runtime is independent of the number of table entries. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a line is found, the contents of the non-key fields of the work area are copied into the corresponding fields of the line, and SY-SUBRC is set to 0. Otherwise, SY-SUBRC is set to 4. If the table has a non-unique key and the system finds duplicate entries, it changes the first entry. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can specify the non-key fields that you want to assign to the table line in the TRANSPORTING addition. You can also specify a field &amp;lt;f i &amp;gt; dynamically as the contents of a field &amp;lt;n i &amp;gt; in the form (&amp;lt;n i &amp;gt;). If &amp;lt;n i &amp;gt; is empty when the statement is executed, it is ignored. You can restrict the search to partial fields by specifying offset and length. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For tables with a complex line structure, the usage of the transporting option results in better performance, if the system must not transport unnecessary table-like components.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;kiran kumar k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        kiran kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        kiran kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 05:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088906#M434039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T05:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088907#M434040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;Append ; used for to read data from internal table to work area&lt;/P&gt;&lt;P&gt;Insert ; Use the insert lines statement when you want to insert rows at a place other than the end into the target table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Read ; this used for to read only specified records only. &lt;/P&gt;&lt;P&gt;Modify ;To modify the contents of one or more rows of an internal table, use the modify statement. &lt;/P&gt;&lt;P&gt;Delete ; used to delete the particular fields&lt;/P&gt;&lt;P&gt;Collect ; it is used for totals&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 06:00:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088907#M434040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T06:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Definition</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088908#M434041</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;   1.   APPEND:It appends the records into at end of the internal table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntex -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;  APPEND line_spec TO itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   2.INSERT:it inserts the records in internal table at any where.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; syntax -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;  INSERT line_spec INTO itab_position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  3.READ:It reads the recors from internal table with help of key or index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax:READ TABLE itab { table_key &lt;/P&gt;&lt;P&gt;                | free_key &lt;/P&gt;&lt;P&gt;                | index } result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   4.MODIFY:This statement changes the content of one or several itab ,that   can   be specified using the table key or the table index&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax:MODIFY {itab_line|itab_lines}. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    5.DELETE:This statement either deletes one or more rows itab specified with the table key or table index.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    6.COLLECT:This statement inserts the contents of a work area wa either as single row into an internal table itab or adds the values of its numeric components to the corresponding values of existing rows with the same key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;syntax:COLLECT wa INTO itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls give Rewards if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 06:23:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/definition/m-p/2088908#M434041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T06:23:06Z</dc:date>
    </item>
  </channel>
</rss>

