<?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: Insert data from internal table into database in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247256#M1013754</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;1. From your code it seems the &lt;/P&gt;&lt;P&gt;   internal table  = ltb_factuur (with header line)&lt;/P&gt;&lt;P&gt;   database table = z4968_factuur &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This simple logic  will also work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Loop at ltb_factuur.
MODIFY z4968_factuur from ltb_factuur.
Endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY will automatically take care of appending or modifying &lt;/P&gt;&lt;P&gt;the records in the database, based upon the primary key combination from the work area and availability of that record&lt;/P&gt;&lt;P&gt;in the database table.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2008 07:21:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-31T07:21:34Z</dc:date>
    <item>
      <title>Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247248#M1013746</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 am not able to insert the internal table content into the database, properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a DB table and an IT of same structure. This is my code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT ltb_factuur.
*  INSERT INTO z4968_factuur VALUES ltb_factuur.
*  INSERT z4968_factuur FROM ltb_factuur.
*z4968_factuur[] = ltb_factuur[].
    MOVE-CORRESPONDING ltb_factuur TO z4968_factuur.
    IF sy-subrc &amp;lt;&amp;gt; 0.
      it_err_msgs-errors = 'Error inserting record in database'.
      APPEND it_err_msgs.
      EXIT.
    ENDIF.
    APPEND z4968_factuur.
*  MODIFY z4968_factuur.

  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are about 100 records in the IT, but I can see only 2 records in the DB table! Can anybody let me know where am I going wrong here? I used INSERT too before using MOVE_CORRESPONDING, this too failed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247248#M1013746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247249#M1013747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked that the data is unique to the keys that you have defined on the table.  If not you will lose some records as they overwrite existing data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it's updating 2 records only then this would be the first thing that I would check out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cherrs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jules&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247249#M1013747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247250#M1013748</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;        Try to use Work Area in MOVE-CORRESPONDING statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope it is helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;T.Durai murugan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247250#M1013748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247251#M1013749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;Try to use the Insert statement..this might solve your program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247251#M1013749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247252#M1013750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create an internal table with the same structure like the database table.get data into that internal table.&lt;/P&gt;&lt;P&gt;Now use Modify Query to modify the database table.&lt;/P&gt;&lt;P&gt;like below&lt;/P&gt;&lt;P&gt;Modify (database-table) from (internal-table)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:14:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247252#M1013750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:14:55Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247253#M1013751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi deepak,&lt;/P&gt;&lt;P&gt;  use the below statement.&lt;/P&gt;&lt;P&gt;insert dbtab from table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Balaji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247253#M1013751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247254#M1013752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ltb_factuur into wa_factuur.&lt;/P&gt;&lt;P&gt;MODIFY z4968_factuur from wa_factuur.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aparna Gaikwad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:15:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247254#M1013752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247255#M1013753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_ltb_factuur like line of ltb_factuur,&lt;/P&gt;&lt;P&gt;        wa_z4968_factuur like line of z4968_factuur.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ltb_factuur into wa_ltb_factuur.&lt;/P&gt;&lt;P&gt;move wa_ltb_factuur to wa_z4968_factuur.&lt;/P&gt;&lt;P&gt;insert z4968_factuur from wa_z4968_factuur.&lt;/P&gt;&lt;P&gt;clear wa_z4968_factuur.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:17:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247255#M1013753</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247256#M1013754</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;1. From your code it seems the &lt;/P&gt;&lt;P&gt;   internal table  = ltb_factuur (with header line)&lt;/P&gt;&lt;P&gt;   database table = z4968_factuur &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This simple logic  will also work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Loop at ltb_factuur.
MODIFY z4968_factuur from ltb_factuur.
Endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY will automatically take care of appending or modifying &lt;/P&gt;&lt;P&gt;the records in the database, based upon the primary key combination from the work area and availability of that record&lt;/P&gt;&lt;P&gt;in the database table.&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:21:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247256#M1013754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247257#M1013755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pass the data from internal table to ztable workarea and use &lt;/P&gt;&lt;P&gt;insert ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;may be u have duplicate entries in the internal table.&lt;/P&gt;&lt;P&gt;check the key fields in the internal table.&lt;/P&gt;&lt;P&gt;if they are unique u can get that in ztable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247257#M1013755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247258#M1013756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;                 Use Update statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247258#M1013756</guid>
      <dc:creator>former_member182354</dc:creator>
      <dc:date>2008-07-31T07:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247259#M1013757</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;Try the following...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INSERT INTO z4968_factuur FROM ltb_factuur.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( * No need to loop the internal table. )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kalyanam Seetha Rama Murthy on Jul 31, 2008 9:42 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:24:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247259#M1013757</guid>
      <dc:creator>former_member787646</dc:creator>
      <dc:date>2008-07-31T07:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247260#M1013758</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;First of all create an internal table with the same structure like the database table you haveand also create a work area of same structure, then  get data into that internal table.&lt;/P&gt;&lt;P&gt;Then use MODIFY statement . MODIFY statement takes care of inserting a now record or updating a record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this piece of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: wa_ltb_factuur like line of ltb_factuur,
wa_z4968_factuur like line of z4968_factuur.

Loop at ltb_factuur into wa_ltb_factuur.

move wa_ltb_factuur to wa_z4968_factuur.
MODIFY z4968_factuur from wa_z4968_factuur.
clear wa_z4968_factuur.

 IF sy-subrc EQ 0.
        COMMIT WORK.
      ELSE.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.

Endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx,&lt;/P&gt;&lt;P&gt;dhanashri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Dhanashri Pawar on Jul 31, 2008 9:29 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 07:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247260#M1013758</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T07:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247261#M1013759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much everyone for helping me out. I tried almost all possibilities, but its inserting only ONE record in DB! I have 121 records in the Internal Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi  Sathya,&lt;/P&gt;&lt;P&gt;I tried the piece of code that you had suggested. Unlike other options that have been mentioned here, this code is inserting more than one record. But its stopping after inserting 47 records. Its not inserting all the 121 records. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried debugging, but unfortunately am not able to see the records being filled in the DB table in debug mode! &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Where am I going wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Warm regards,&lt;/P&gt;&lt;P&gt;Deepak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 05:05:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247261#M1013759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T05:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Insert data from internal table into database</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247262#M1013760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;clear z4968_factuur&lt;/P&gt;&lt;P&gt;After Append statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first check structure of both.&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;Swarup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Aug 2008 05:15:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-data-from-internal-table-into-database/m-p/4247262#M1013760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-01T05:15:36Z</dc:date>
    </item>
  </channel>
</rss>

