<?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 Internal Tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233756#M480900</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an internal table (A) with several columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create another internal table (B) consisting of a single&lt;/P&gt;&lt;P&gt;column from table (A).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I loop through the table (A), appending each record to the newly created table (B).&lt;/P&gt;&lt;P&gt;Is there a faster way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 13:01:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T13:01:28Z</dc:date>
    <item>
      <title>Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233756#M480900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an internal table (A) with several columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create another internal table (B) consisting of a single&lt;/P&gt;&lt;P&gt;column from table (A).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I loop through the table (A), appending each record to the newly created table (B).&lt;/P&gt;&lt;P&gt;Is there a faster way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 13:01:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233756#M480900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T13:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233757#M480901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the only way to do it as you did.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also if the table A is appended from some other table then u can move that column&lt;/P&gt;&lt;P&gt;and append table B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 13:06:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233757#M480901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T13:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233758#M480902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Declare two internal tables&lt;/P&gt;&lt;P&gt;ITAB and ITAB1 9with just one field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at iTAB.&lt;/P&gt;&lt;P&gt; itab1-f1 = itab-f4.&lt;/P&gt;&lt;P&gt;append itab1.&lt;/P&gt;&lt;P&gt;clear itab1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ther is no other faster way than this.&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;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 13:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233758#M480902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T13:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233759#M480903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Gregory,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have also gave the same solution as Mr. Anji said.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I know thw diffrence bt the two solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 13:18:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2233759#M480903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T13:18:06Z</dc:date>
    </item>
  </channel>
</rss>

