<?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 PROBLEM IN SE11 table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930252#M941072</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;once I try to output my PK it will give a empty space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the problem that I chose the checkbox "Initial values" at se11?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 May 2008 07:55:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-30T07:55:01Z</dc:date>
    <item>
      <title>INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930249#M941069</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;I have a (maybe simple) problem:&lt;/P&gt;&lt;P&gt;I defined a table in se11.&lt;/P&gt;&lt;P&gt;I want to write a abap report to write datasets into it.&lt;/P&gt;&lt;P&gt;Therefore I created a workare and a string to count to the next Primary key (Primary Key is PK).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once I write the table to screen it will only get me the first dataset I wrote to table. I am a beginner and don't know what I forgot. Do I need to do something like a db-commit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Code is:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES ZTDM_SAPOUTPUT.

* Zeichenkette für den PK deklarieren
DATA:
zsapoutputPK LIKE ZTDM_SAPOUTPUT-MATNR.

* Arbeitsbereich definieren
DATA:
wa_ZTDM_SAPOUTPUT LIKE ZTDM_SAPOUTPUT.

WRITE: 'Ausgabe der Tabelle vor dem INSERT:'.
SKIP.

SELECT * FROM ZTDM_SAPOUTPUT.
  Write: /  ZTDM_SAPOUTPUT-FNCODE,
            ZTDM_SAPOUTPUT-MATNR,
            ZTDM_SAPOUTPUT-MAKTX,
            ZTDM_SAPOUTPUT-ZEINR,
            ZTDM_SAPOUTPUT-MATKL.
ENDSELECT.
SKIP.

* neuen Datensatz in Workarea schreiben
zsapoutputPK = ZTDM_SAPOUTPUT-PK.
zsapoutputPK = zsapoutputPK + 1.

wa_ZTDM_SAPOUTPUT-PK = zsapoutputPK.
wa_ZTDM_SAPOUTPUT-FNCODE ='ABCD'.
wa_ZTDM_SAPOUTPUT-MATNR ='ABCD'.
wa_ZTDM_SAPOUTPUT-MAKTX ='ABCD'.
wa_ZTDM_SAPOUTPUT-ZEINR ='ABCD'.
wa_ZTDM_SAPOUTPUT-MATKL ='ABCD'.

*INSERT-STATEMENT
INSERT ZTDM_SAPOUTPUT FROM wa_ZTDM_SAPOUTPUT.

* neuen Datensatz in Workarea schreiben
zsapoutputPK = zsapoutputPK + 1.

wa_ZTDM_SAPOUTPUT-PK = zsapoutputPK.
wa_ZTDM_SAPOUTPUT-FNCODE ='DEFG'.
wa_ZTDM_SAPOUTPUT-MATNR ='DEFG'.
wa_ZTDM_SAPOUTPUT-MAKTX ='DEFG'.
wa_ZTDM_SAPOUTPUT-ZEINR ='DEFG'.
wa_ZTDM_SAPOUTPUT-MATKL ='DEFG'.

*INSERT-STATEMENT
INSERT ZTDM_SAPOUTPUT FROM wa_ZTDM_SAPOUTPUT.

* Ausgabe nach INSERT
WRITE: 'Ausgabe der Tabelle NACH dem INSERT:'.
SKIP.

SELECT * FROM ZTDM_SAPOUTPUT.
  Write: /  ZTDM_SAPOUTPUT-FNCODE,
            ZTDM_SAPOUTPUT-MATNR,
            ZTDM_SAPOUTPUT-MAKTX,
            ZTDM_SAPOUTPUT-ZEINR,
            ZTDM_SAPOUTPUT-MATKL.
ENDSELECT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code should write 2 datasets to the table and then give the complete table to screen. Can you tell me my mistake?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Daniel Gerne on May 30, 2008 9:46 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 07:43:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930249#M941069</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T07:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930250#M941070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to add the commit work if insert was successfull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 07:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930250#M941070</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-30T07:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930251#M941071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no effect could there be a problem regarding my primary key?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 07:52:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930251#M941071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T07:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930252#M941072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;once I try to output my PK it will give a empty space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the problem that I chose the checkbox "Initial values" at se11?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 07:55:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930252#M941072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T07:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930253#M941073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check table contents via SE11, are there any values in the table already?&lt;/P&gt;&lt;P&gt;In other words, since your are not checking the RETURN CODE sy-subrc after INSERT, is there an error when INSERTING???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Micky Oestreich on May 30, 2008 10:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 07:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930253#M941073</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-30T07:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930254#M941074</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;   MATNR field is type Character, so the value of material wold be ALPHABATES or Numeric or Alpha numeric. If you add 1 to the material number (as MATNR is a Primary Key) and the value is alphabate then no change was made, so it is trying to insert with the same key. And the statement INSERT will fail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:00:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930254#M941074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930255#M941075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;MATNR is not the PK.&lt;/P&gt;&lt;P&gt;PK is the field PK &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930255#M941075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930256#M941076</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;  What is the data type of field PK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;BUjji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:04:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930256#M941076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:04:54Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930257#M941077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ Micky I get a Output without a PK at the time before I do the Insert and give the table to screen.&lt;/P&gt;&lt;P&gt;Where can I see the datasets in se11?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:05:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930257#M941077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930258#M941078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in this case don't think there will be a problem. You have defined the PK LIKE matnr. But you can add 1 to this character field and it would work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930258#M941078</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-30T08:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930259#M941079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is a button when displaying the data in SE11, right next to the button technical settings. Press that and next do F8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930259#M941079</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-30T08:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930260#M941080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no I did not define the PK as matnr.&lt;/P&gt;&lt;P&gt;PK is defined as char4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930260#M941080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930261#M941081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;your right, sorry for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the insert statement, please check the return code, to see if an error occurs.&lt;/P&gt;&lt;P&gt;Have you already checked the contents of the table in SE11?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930261#M941081</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-30T08:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930262#M941082</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;U make sure to create the right new key, so u should extract data sorted by key field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway try to check the sy-subrc after inserting a new record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:14:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930262#M941082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930263#M941083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just changed the Pks to hardcoded: 'test1', 'test2'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The funny thing is now there is a 2nd dataset in the table with pk 'test1'. But the same insert having 'test2' was not inserted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About rc: 1=ok or 0=ok?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930263#M941083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930264#M941084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sy-subrc = 0 is OK, rest is NOT OK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930264#M941084</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-30T08:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930265#M941085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sy-subrc is 4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930265#M941085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930266#M941086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where can I find the explanation of the sy-subrc codes?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:25:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930266#M941086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930267#M941087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I copied your report and it works just fine for me???&lt;/P&gt;&lt;P&gt;In your editor there is a button with letter I (info button). Click that and next write statement INSERT. you will get explanation about the return code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also do F1 on statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:35:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930267#M941087</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-30T08:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: INSERT PROBLEM IN SE11 table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930268#M941088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got the problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I used more than 4 chars. I am so stupid. thank you for your support.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2008 08:36:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-problem-in-se11-table/m-p/3930268#M941088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-30T08:36:00Z</dc:date>
    </item>
  </channel>
</rss>

