<?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: appending table * in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676588#M885401</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;thanks but what i ask is not for appending i wont to now what give the *** &lt;/P&gt;&lt;P&gt;before table name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Apr 2008 08:49:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-14T08:49:04Z</dc:date>
    <item>
      <title>appending table *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676584#M885397</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;what does it mean to append with asterisk like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT * FROM covp APPENDING TABLE *covp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the different from regular into table commend ?&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, 14 Apr 2008 08:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676584#M885397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T08:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: appending table *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676585#M885398</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;  *covp is a table structure(work area ) of covp ... You can find the declaration of this structure in the Top Include program ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 08:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676585#M885398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T08:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: appending table *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676586#M885399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if inetrnal table contains data's already, INTO statement clears that data and insert a new rows of data...but APPENDING will append a new row,it will not clear the exsting data..&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if internal table contains 10 rows..&lt;/P&gt;&lt;P&gt; INTO table clear the 10 rows and insert a next 10 rows..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now table contains 10 rows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but APPENDING statement insert a rows from 11th to 20 rows..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now internal table contains 20 rows...&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;Regards&lt;/P&gt;&lt;P&gt;Sugumar G&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 14, 2008 5:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 08:45:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676586#M885399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T08:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: appending table *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676587#M885400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appending Table : Works like APPENDING TABLE itab, except that the read lines are appended to the old contents of the internal table itab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INTO TABLE : Works like INTO TABLE wa, except that the selected data is not placed in the internal table itab line by line, but in one single operation. In this case, SELECT does not introduce a processing loop, so there can be no ENDSELECT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Me Points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By&lt;/P&gt;&lt;P&gt;Pari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 08:46:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676587#M885400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T08:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: appending table *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676588#M885401</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;thanks but what i ask is not for appending i wont to now what give the *** &lt;/P&gt;&lt;P&gt;before table name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 08:49:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676588#M885401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T08:49:04Z</dc:date>
    </item>
    <item>
      <title>Re: appending table *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676589#M885402</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 check your code, u should find a declaration of an internal table called *COVP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: *COVP LIKE STANDARD TABLE OF COVP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not a good thing this definition, because *TABLE is usually used to define an image of dictionary table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: COVP,
    *COVP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's usually used this defination when it needs to do several selects of the same table without overwriting the headerline:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* First select
SELECT * FROM COVP WHERE .....

* Second select
SELECT * FROM *COVP WHERE....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: max bianchi on Apr 14, 2008 10:50 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 08:49:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676589#M885402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T08:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: appending table *</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676590#M885403</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; There is as such no significance of '*' before table declaration. But in most of the standard programs you find it using in that way  ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Apr 2008 08:52:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/appending-table/m-p/3676590#M885403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-14T08:52:01Z</dc:date>
    </item>
  </channel>
</rss>

