<?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: How to post data into table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325219#M510936</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can insert data into a Z table or any sap table by looping through an internal table of the same type or a structure filled in the program but make sure that the primary keys of the Z Table are filled in each loop otherwise it does not allow to insert record into a database table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Johnny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Jun 2007 10:02:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-11T10:02:52Z</dc:date>
    <item>
      <title>How to post data into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325213#M510930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you please explaon me the step-by-step procedure how to post data into the ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325213#M510930</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-06-11T07:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to post data into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325214#M510931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Either create a transaction with selection screen to post data in ztable, Based on screen value USE: &lt;/P&gt;&lt;P&gt;    INSERT ZTABLE FROM TABLE ZTEST_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where ZTES_TABLE is internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or if maintenance is allowed then use sm30 to post data in your ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shweta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:39:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325214#M510931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:39:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to post data into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325215#M510932</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;Collect the data into a single internal table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the insert command to move the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sriram&lt;/P&gt;&lt;P&gt;PS: Reward points if it is useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 07:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325215#M510932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T07:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to post data into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325216#M510933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Collect the Data into an internal table and then loop that internal tabel and use insert command to move the data from internal table to database table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab.&lt;/P&gt;&lt;P&gt;  insert into ztable from itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else use modify command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 09:26:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325216#M510933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T09:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to post data into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325217#M510934</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can also directly create entry in Ztable by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;utilites-table content-create entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but for that in attributes you have to specify maintainence allowed with no restrictions.&lt;/P&gt;&lt;P&gt; regards,&lt;/P&gt;&lt;P&gt;Ruchika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 09:46:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325217#M510934</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T09:46:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to post data into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325218#M510935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:01:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325218#M510935</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-06-11T10:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to post data into table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325219#M510936</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can insert data into a Z table or any sap table by looping through an internal table of the same type or a structure filled in the program but make sure that the primary keys of the Z Table are filled in each loop otherwise it does not allow to insert record into a database table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Johnny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Jun 2007 10:02:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-post-data-into-table/m-p/2325219#M510936</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-11T10:02:52Z</dc:date>
    </item>
  </channel>
</rss>

