<?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: In tables. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236865#M481831</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are two ways,&lt;/P&gt;&lt;P&gt;first one is,&lt;/P&gt;&lt;P&gt; 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;second one is,&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 15:27:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T15:27:51Z</dc:date>
    <item>
      <title>In tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236862#M481828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have an internal table (x) with some columns.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to create another internal table (y) consisting of a single&lt;/P&gt;&lt;P&gt;column from table (x). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I loop through the table (x), appending each record to the newly created table (y).&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 15:15:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236862#M481828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: In tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236863#M481829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    How u can append X table  records to the Y table. As fields are in compatiable.&lt;/P&gt;&lt;P&gt;plz tell me what is your exact requirement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Suma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:18:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236863#M481829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: In tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236864#M481830</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;If you loop the Y table, read records in X table and append values from X to Y only for that particular field , you can get the logic you are trying for&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236864#M481830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: In tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236865#M481831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are two ways,&lt;/P&gt;&lt;P&gt;first one is,&lt;/P&gt;&lt;P&gt; 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;second one is,&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236865#M481831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T15:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: In tables.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236866#M481832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use this, but ONLY if the field on Y table is the first one in X table:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND LINES OF x TO y.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That appers to work only when x and y has same structure, but actually when y has less fields then x works too if the fields on y has same structure of the firsts fields on x.&lt;/P&gt;&lt;P&gt;As SAP helps says it's 3 to 4 times faster then a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 15:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/in-tables/m-p/2236866#M481832</guid>
      <dc:creator>gastn_jareo</dc:creator>
      <dc:date>2007-05-11T15:30:00Z</dc:date>
    </item>
  </channel>
</rss>

