<?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: send the data from internal table to database table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193305#M760862</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this sample code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_record into wa_record.&lt;/P&gt;&lt;P&gt;    zcusreq-updat       = sy-datum.&lt;/P&gt;&lt;P&gt;    zcusreq-kunnr       = wa_record-kunnr.&lt;/P&gt;&lt;P&gt;    zcusreq-matnr       = wa_record-matnr.&lt;/P&gt;&lt;P&gt;    zcusreq-reqwk       = wa_record-reqwk.&lt;/P&gt;&lt;P&gt;    zcusreq-menge       = wa_record-menge.&lt;/P&gt;&lt;P&gt;    zcusreq-recwk       = wa_record-recwk.&lt;/P&gt;&lt;P&gt;    insert zcusreq.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Dec 2007 14:38:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-21T14:38:22Z</dc:date>
    <item>
      <title>send the data from internal table to database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193302#M760859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   i have a doubt.. how can we send the data from internal table to databse table. pls, send me the reply ASAP...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;sunil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 14:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193302#M760859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T14:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: send the data from internal table to database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193303#M760860</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;we can send / fill the data base from internal table by using &lt;/P&gt;&lt;P&gt;INSERT COMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COMMAND:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; INSERT DATABSE TABLE FROM ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Siva kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 14:37:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193303#M760860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T14:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: send the data from internal table to database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193304#M760861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;modify z_db_table from table my_local_int_tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 14:38:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193304#M760861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T14:38:13Z</dc:date>
    </item>
    <item>
      <title>Re: send the data from internal table to database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193305#M760862</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this sample code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_record into wa_record.&lt;/P&gt;&lt;P&gt;    zcusreq-updat       = sy-datum.&lt;/P&gt;&lt;P&gt;    zcusreq-kunnr       = wa_record-kunnr.&lt;/P&gt;&lt;P&gt;    zcusreq-matnr       = wa_record-matnr.&lt;/P&gt;&lt;P&gt;    zcusreq-reqwk       = wa_record-reqwk.&lt;/P&gt;&lt;P&gt;    zcusreq-menge       = wa_record-menge.&lt;/P&gt;&lt;P&gt;    zcusreq-recwk       = wa_record-recwk.&lt;/P&gt;&lt;P&gt;    insert zcusreq.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 14:38:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193305#M760862</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T14:38:22Z</dc:date>
    </item>
    <item>
      <title>Re: send the data from internal table to database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193306#M760863</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunil.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this by two ways either using Insert statement or modify statement.&lt;/P&gt;&lt;P&gt;loop at itab into wa_itab.&lt;/P&gt;&lt;P&gt;*use this &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;in this case it will insert new record &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;INSERT INTO scarr VALUES wa_itab.&lt;/P&gt;&lt;P&gt;*or use this.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;in this case it will first modify the record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*if it is exits otherwise insert a new entry&lt;/P&gt;&lt;P&gt;MODIFY INTO scarr VALUES wa_itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points, if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manoj Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 14:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193306#M760863</guid>
      <dc:creator>former_member402443</dc:creator>
      <dc:date>2007-12-21T14:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: send the data from internal table to database table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193307#M760864</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 want to add the data's from Internal table to Data Base table means you should use Insert Command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : begin of wa,&lt;/P&gt;&lt;P&gt;name(10) type c,&lt;/P&gt;&lt;P&gt;age type I,&lt;/P&gt;&lt;P&gt;end of wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : Itab like table of wa with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Itab-name = 'abc'.&lt;/P&gt;&lt;P&gt;Itab-age = '25'.&lt;/P&gt;&lt;P&gt;insert into "dbname" from table Itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 14:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/send-the-data-from-internal-table-to-database-table/m-p/3193307#M760864</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T14:54:08Z</dc:date>
    </item>
  </channel>
</rss>

