<?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 Insert data into Z table from an internal Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811790#M347992</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What's the best way to store data into a z table from an internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 Dec 2006 16:22:05 GMT</pubDate>
    <dc:creator>sergio_cifuentes</dc:creator>
    <dc:date>2006-12-20T16:22:05Z</dc:date>
    <item>
      <title>Insert data into Z table from an internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811790#M347992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What's the best way to store data into a z table from an internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 16:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811790#M347992</guid>
      <dc:creator>sergio_cifuentes</dc:creator>
      <dc:date>2006-12-20T16:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data into Z table from an internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811791#M347993</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 From table addition..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT ZTABLE FROM TABLE ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal ITAB should be of structure ZTABLE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 16:25:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811791#M347993</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T16:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data into Z table from an internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811792#M347994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use modify command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify ztab from table itab. "itab should be of the same structure as ztable.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 16:26:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811792#M347994</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T16:26:09Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data into Z table from an internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811793#M347995</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;U have to use MODIF ZTAB FROM ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since this will overcome the error duplicates entries also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 16:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811793#M347995</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T16:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data into Z table from an internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811794#M347996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;  The best way is to use the MODIFY command , because it can work in two ways , if data is not there a new record is inserted else the existing record is modified.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 16:32:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-into-z-table-from-an-internal-table/m-p/1811794#M347996</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T16:32:28Z</dc:date>
    </item>
  </channel>
</rss>

