<?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 Move from structure into internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765924#M1117210</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;I have an internal table that contains the same field structure and other areas. &lt;/P&gt;&lt;P&gt;I want each time the program runs (loop) add the contents of the structure to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I solve this problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Nov 2008 16:26:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-14T16:26:20Z</dc:date>
    <item>
      <title>Move from structure into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765924#M1117210</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;I have an internal table that contains the same field structure and other areas. &lt;/P&gt;&lt;P&gt;I want each time the program runs (loop) add the contents of the structure to the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I solve this problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 16:26:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765924#M1117210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T16:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: Move from structure into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765925#M1117211</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;Could you reframe your question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ASOK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 16:30:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765925#M1117211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T16:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Move from structure into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765926#M1117212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try collect or Sum inside the loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 17:51:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765926#M1117212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T17:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Move from structure into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765927#M1117213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;first add the contents to workarea(by assigning or something)&lt;/P&gt;&lt;P&gt;then modify internal table using MODIFY statement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 18:18:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765927#M1117213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T18:18:04Z</dc:date>
    </item>
    <item>
      <title>Re: Move from structure into internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765928#M1117214</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;Use the APPEND statement to add the content of the structure into the internal table.&lt;/P&gt;&lt;P&gt;Since the structure fields are same as the internal table, it will not be a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vadi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 18:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/move-from-structure-into-internal-table/m-p/4765928#M1117214</guid>
      <dc:creator>i048168</dc:creator>
      <dc:date>2008-11-14T18:52:52Z</dc:date>
    </item>
  </channel>
</rss>

