<?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 Statement - ABAP SQL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712077#M1106815</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 do have the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM do_commit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      EXEC SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        INSERT INTO  emp_group&lt;/P&gt;&lt;P&gt;                     (employee_groupid,&lt;/P&gt;&lt;P&gt;                      name,&lt;/P&gt;&lt;P&gt;                      start_date,&lt;/P&gt;&lt;P&gt;                      end_date)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             VALUES  (:it_table-auth_group,&lt;/P&gt;&lt;P&gt;                      :it_table-auth_group,&lt;/P&gt;&lt;P&gt;                       to_date(:'20040901', 'YYYYMMDD'),&lt;/P&gt;&lt;P&gt;                       to_date(:'99991231', 'YYYYMMDD'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table IT_TABLE has more than 8000 entries but only like 400 get inserted into EMP_GROUP table. Do commit is a procedure which does commit work every 1000 entries. Does anyone know how to fix this? All the fields in the IT_TABLE are of similar types and I do not know why some get inserted and some dont.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Val.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Nov 2008 16:13:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-13T16:13:47Z</dc:date>
    <item>
      <title>Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712077#M1106815</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 do have the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM do_commit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      EXEC SQL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        INSERT INTO  emp_group&lt;/P&gt;&lt;P&gt;                     (employee_groupid,&lt;/P&gt;&lt;P&gt;                      name,&lt;/P&gt;&lt;P&gt;                      start_date,&lt;/P&gt;&lt;P&gt;                      end_date)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             VALUES  (:it_table-auth_group,&lt;/P&gt;&lt;P&gt;                      :it_table-auth_group,&lt;/P&gt;&lt;P&gt;                       to_date(:'20040901', 'YYYYMMDD'),&lt;/P&gt;&lt;P&gt;                       to_date(:'99991231', 'YYYYMMDD'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ENDEXEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table IT_TABLE has more than 8000 entries but only like 400 get inserted into EMP_GROUP table. Do commit is a procedure which does commit work every 1000 entries. Does anyone know how to fix this? All the fields in the IT_TABLE are of similar types and I do not know why some get inserted and some dont.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Val.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 16:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712077#M1106815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T16:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712078#M1106816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;specify &lt;/P&gt;&lt;P&gt;COMMIT = 300 or someother desired value.by default it's 1000. if you give it 0 then commit will be done after all rows are inserted.&lt;/P&gt;&lt;P&gt;if you omit it commit is done after 1000 records are inserted and after last row is inserted.&lt;/P&gt;&lt;P&gt;are you sure that there are no duplicate entries in IT_table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 16:28:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712078#M1106816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T16:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712079#M1106817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunnil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes there are duplicate entries. Do you think this is the reason?! I tried with 300 and still  I get same results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do have a lot of duplicate entries as I do have employees who belong to same groups. Is there a way I can insert all the entries even if there are duplicates?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Val.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 16:50:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712079#M1106817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T16:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712080#M1106818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Val,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had a similar situation, where I had to stuff multiple entries in the table at one go.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case, create a internal table with the same sturcture as that of your database table &lt;STRONG&gt;emp_group&lt;/STRONG&gt; and populate all the entries in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write the following statement:&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;INSERT  *db_table_name*  FROM  TABLE  *your_internal_table*  ACCEPTING  DUPLICATE  KEYS.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the statement that I have used. gt_insert_rec_list has the same structure as the DB table zln_brk_scrcrd_a&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;INSERT  zln_brk_scrcrd_a  FROM  TABLE  gt_insert_rec_list  ACCEPTING  DUPLICATE  KEYS.&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;Regards,&lt;/P&gt;&lt;P&gt;Raviraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Nov 2008 18:36:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712080#M1106818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-13T18:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712081#M1106819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raviraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this but it doesnt work.. remember this is in SQL environment so that might be a reason why this code doesnt work. I will see if there is something similar to your code in SQL. LEt meknow if you have another idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Val.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 15:40:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712081#M1106819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T15:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712082#M1106820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Val,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you try without using the SQL env. ? SAP may actually insert entries correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raviraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 16:24:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712082#M1106820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T16:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712083#M1106821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I do have the following code:&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; LOOP AT it_table.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;       PERFORM do_commit.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;       EXEC SQL.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;         INSERT INTO  emp_group&lt;/P&gt;&lt;P&gt;&amp;gt;                      (employee_groupid,&lt;/P&gt;&lt;P&gt;&amp;gt;                       name,&lt;/P&gt;&lt;P&gt;&amp;gt;                       start_date,&lt;/P&gt;&lt;P&gt;&amp;gt;                       end_date)&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;              VALUES  (:it_table-auth_group,&lt;/P&gt;&lt;P&gt;&amp;gt;                       :it_table-auth_group,&lt;/P&gt;&lt;P&gt;&amp;gt;                        to_date(:'20040901', 'YYYYMMDD'),&lt;/P&gt;&lt;P&gt;&amp;gt;                        to_date(:'99991231', 'YYYYMMDD'))&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;       ENDEXEC.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; The table IT_TABLE has more than 8000 entries but only like 400 get inserted into EMP_GROUP table. Do commit is a procedure which does commit work every 1000 entries. Does anyone know how to fix this? All the fields in the IT_TABLE are of similar types and I do not know why some get inserted and some dont.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Thanks,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Val.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Insert looks ok.  Should work.  You mention duplicates in another post, but if you are trying to insert duplicate keys into a database table then you'd get a duplicate key in index error.  Unless you're using a database table which doesn't have a unique key index created, in which case the table must have been created directly in the database, not through SAP.  All a bit odd.  Which brings me to wondering why you are doing things in this way if you are working in a SAP environment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 16:47:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712083#M1106821</guid>
      <dc:creator>christine_evans</dc:creator>
      <dc:date>2008-11-14T16:47:14Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712084#M1106822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately I have to use SQL bacause all the databases I am working on are from another system called Authoria that we use to store our data.. and this system uses SQL. I am there must be some other way that I could fix this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 20:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712084#M1106822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T20:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712085#M1106823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This appears to be a problem with the table definition (emp_group). You have to ensure that the primary keys are unique for each entry in your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 20:25:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712085#M1106823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T20:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712086#M1106824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you are entering multiple employees to same groups you should have defined the combination of group and employees as key fields, rather than just the group.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 20:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712086#M1106824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T20:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712087#M1106825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Unfortunately I have to use SQL bacause all the databases I am working on are from another system called Authoria that we use to store our data.. and this system uses SQL. I am there must be some other way that I could fix this.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The table name you were using, EMP_GROUP, seems to be following the naming conventions for one of the SAP standard training tables, which made me think that you were using SAP tables.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the sort of thing that you can work out for yourself with a bit of systematic testing.  &lt;/P&gt;&lt;P&gt;Have you tried debugging?  What happens if you try to insert 10 records?  Do they all get inserted into the database table?   If not (and I can't see why not), what is wrong with the ones that don't get in?  If the insert works for 10, try again with more records until you identify the records that you think are causing the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 10:28:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712087#M1106825</guid>
      <dc:creator>christine_evans</dc:creator>
      <dc:date>2008-11-17T10:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712088#M1106826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, unfortunately I do not have much control over the table emp_group as it belongs to the client side. When I try to insert only 10 entries I do get the same result.. the entries that seem to be inserted I noticed are those ones which are not duplicated. I can only change tables that are in SAP I do not have any control over the tables that are in SQL environment.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 15:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712088#M1106826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-17T15:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Statement - ABAP SQL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712089#M1106827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Thanks guys,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Again, unfortunately I do not have much control over the table emp_group as it belongs to the client side. When I try to insert only 10 entries I do get the same result.. the entries that seem to be inserted I noticed are those ones which are not duplicated. I can only change tables that are in SAP I do not have any control over the tables that are in SQL environment.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Does EMP_GROUP have a unique key and a unique index based on that key?  This is not compulsory for a table created directly in an Oracle database.  If it does have a unique index, then I'm astonished that you are not getting duplicate key in index errors if you are trying to insert duplicates keys; in fact I would bet a small amount of money that such errors are getting generated and that somehow you aren't seeing them.  If it doesn't have a unique index, then your data should be being inserted and you should be able to query it back.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may not have any control over this table yourself, but you certainly need to talk to someone who does have control over it because what you are trying to do is not working.  Is this table maintained successfully from anywhere else in your system?  If so, find out how that manages to do it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Nov 2008 17:20:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-statement-abap-sql/m-p/4712089#M1106827</guid>
      <dc:creator>christine_evans</dc:creator>
      <dc:date>2008-11-17T17:20:40Z</dc:date>
    </item>
  </channel>
</rss>

