<?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: upload program for duplicate entries in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195870#M1202387</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;1) In your case if the table has the value 2001 in the primary key, then it is not possible to upload a new value, instead the table modifies the existing record.&lt;/P&gt;&lt;P&gt;2) For this to happen make sure the record 2001* you are referring to should not be a value in the primary key.&lt;/P&gt;&lt;P&gt;3) Instead of looping the internal table and modifying the DBTABLE for every record in internal table, directly insert the entries using INSERT DBTAB FROM TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;This might give you a duplicate record in the table as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Feb 2009 08:33:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-12T08:33:19Z</dc:date>
    <item>
      <title>upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195868#M1202385</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 upload program for duplicate entries.In that for duplicate entries if i give * (for ex 2001*)&lt;/P&gt;&lt;P&gt;it is not taking for the upload.In my case 2001 is ulready there.How to give one more new entry&lt;/P&gt;&lt;P&gt;on the same.Please give some suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS TRUXS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : ZGATEP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF TY_ZGATEP,&lt;/P&gt;&lt;P&gt;            GTEN   TYPE ZGATEP-GTEN,&lt;/P&gt;&lt;P&gt;            ZDATE  TYPE ZGATEP-ZDATE,&lt;/P&gt;&lt;P&gt;            LIFNR  TYPE ZGATEP-LIFNR,&lt;/P&gt;&lt;P&gt;            NAME1  TYPE ZGATEP-NAME1,&lt;/P&gt;&lt;P&gt;            VBELN  TYPE ZGATEP-VBELN,&lt;/P&gt;&lt;P&gt;            DDATE  TYPE ZGATEP-DDATE,&lt;/P&gt;&lt;P&gt;            EBELN  TYPE ZGATEP-EBELN,&lt;/P&gt;&lt;P&gt;            GJAHR  TYPE ZGATEP-GJAHR,&lt;/P&gt;&lt;P&gt;            WERKS  TYPE ZGATEP-WERKS,&lt;/P&gt;&lt;P&gt;        END OF TY_ZGATEP.&lt;/P&gt;&lt;P&gt;DATA : IT_ZGATEP TYPE TABLE OF TY_ZGATEP,&lt;/P&gt;&lt;P&gt;       WA_ZGATEP TYPE TY_ZGATEP,&lt;/P&gt;&lt;P&gt;       IT_TYPE   TYPE TRUXS_T_TEXT_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER : P_FILE TYPE RLGRAP-FILENAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;   EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PROGRAM_NAME        = SYST-CPROG&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPRO_NUMBER       = SYST-DYNNR&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     FIELD_NAME          = 'P_FILE'&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     FILE_NAME           = P_FILE&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Uploading the data in the file into internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'TEXT_CONVERT_XLS_TO_SAP'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_FIELD_SEPERATOR =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_LINE_HEADER  = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    I_TAB_RAW_DATA = IT_TYPE&lt;/P&gt;&lt;P&gt;    I_FILENAME     = P_FILE&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    I_TAB_CONVERTED_DATA = IT_ZGATEP[]&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    CONVERSION_FAILED = 1&lt;/P&gt;&lt;P&gt;    OTHERS            = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IF sy-subrc NE  0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   MESSAGE ID sy-msgid&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           TYPE sy-msgty&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           NUMBER sy-msgno&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT IT_ZGATEP INTO WA_ZGATEP.&lt;/P&gt;&lt;P&gt;    ZGATEP-GTEN = WA_ZGATEP-GTEN.&lt;/P&gt;&lt;P&gt;    ZGATEP-ZDATE = WA_ZGATEP-ZDATE.&lt;/P&gt;&lt;P&gt;    ZGATEP-LIFNR = WA_ZGATEP-LIFNR.&lt;/P&gt;&lt;P&gt;    ZGATEP-NAME1 = WA_ZGATEP-NAME1.&lt;/P&gt;&lt;P&gt;    ZGATEP-VBELN = WA_ZGATEP-VBELN.&lt;/P&gt;&lt;P&gt;    ZGATEP-DDATE = WA_ZGATEP-DDATE.&lt;/P&gt;&lt;P&gt;    ZGATEP-EBELN = WA_ZGATEP-EBELN.&lt;/P&gt;&lt;P&gt;    ZGATEP-GJAHR = WA_ZGATEP-GJAHR.&lt;/P&gt;&lt;P&gt;    ZGATEP-WERKS = WA_ZGATEP-WERKS.&lt;/P&gt;&lt;P&gt;    MODIFY ZGATEP.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:26:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195868#M1202385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195869#M1202386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if an entry already exists for a set of primary key in a table, it will not allow dupliacate entries.&lt;/P&gt;&lt;P&gt;wat r the primary keys in ur table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195869#M1202386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195870#M1202387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;1) In your case if the table has the value 2001 in the primary key, then it is not possible to upload a new value, instead the table modifies the existing record.&lt;/P&gt;&lt;P&gt;2) For this to happen make sure the record 2001* you are referring to should not be a value in the primary key.&lt;/P&gt;&lt;P&gt;3) Instead of looping the internal table and modifying the DBTABLE for every record in internal table, directly insert the entries using INSERT DBTAB FROM TABLE &amp;lt;itab&amp;gt;.&lt;/P&gt;&lt;P&gt;This might give you a duplicate record in the table as per your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195870#M1202387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195871#M1202388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in my case 2000 is a primary key.if any option is availabe for giving duplicate entries like 2000*.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:33:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195871#M1202388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:33:51Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195872#M1202389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so if 2000 alone is a primary key, u can hve a unique value for this 2000 in the table.&lt;/P&gt;&lt;P&gt;now if u pass the new values and modify the table also, it will jus overwrite the previous values with the new value that u hve passed now.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:36:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195872#M1202389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:36:05Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195873#M1202390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;In your case, create a primary key with more than one field,&lt;/P&gt;&lt;P&gt;then its possible for you to have duplicate entries for value 2000 with some other key field combination inside the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:38:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195873#M1202390</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195874#M1202391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2000	02.02.2009	100525	ACME SAFETYWEARS LIMITED	4382	02.02.2009	5500000028&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like this my entries are there.already one entry is there with 2000.i need to to insert this record also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195874#M1202391</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195875#M1202392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;In the DBTABLE , if it is possible for you restructure in a way that the fields LIFNR or VBELN or EBELN, can make a primary key combination, with 2000* (GTEN)then its possible to have more than one entry for that value, else if you are restricted as per your requirement to only one field(GTEN,2000) to be the primary key then its not possible to have more than one record in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sharath&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 08:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195875#M1202392</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T08:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195876#M1202393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wat r all the primary keys in ur table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 09:02:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195876#M1202393</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T09:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195877#M1202394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u .That is not possible.I have to tell my consultants.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regard,&lt;/P&gt;&lt;P&gt;Bathri...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 09:27:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195877#M1202394</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T09:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195878#M1202395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;gten,gjahr,werks are primary keys&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 09:28:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195878#M1202395</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T09:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195879#M1202396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;gten,gjahr,werks are primary keys.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 09:29:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195879#M1202396</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T09:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195880#M1202397</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok..if u hve rec like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2000 02.02.2009 100525 ACME SAFETYWEARS LIMITED 4382 02.02.2009 5500000028&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gten is 2000 gjhr is 02.02.2009 werks:5500000028&lt;/P&gt;&lt;P&gt;this means a record is already there for this set of primary keys.&lt;/P&gt;&lt;P&gt;now if u insert a rec with gten 2000 and wth gjhr or werks with a diff. value from the above one,  a rec gets created.&lt;/P&gt;&lt;P&gt;but if u enter a record for the same set of primary keys, it will be overwritten.what exactly u need to insert now?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kalyan Chakravarthi on Feb 12, 2009 10:34 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 09:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195880#M1202397</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T09:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195881#M1202398</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;200023	02.02.2009	100525	ACME SAFETYWEARS LIMITED	4382	02.02.2009	5500000028	2009	RAU1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is already there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;200023	02.02.2009	100384	SREE MADESHWARA ENTERPRISES	587	02.02.2009	5500000194	2009	RAU1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;second is my duplicate entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;primary keys are 20023         2009          RAU1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;program is given up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tell some possible solutions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195881#M1202398</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195882#M1202399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its already said.&lt;/P&gt;&lt;P&gt;if u see, u r tryin to insert another record for the same set of entires for which a record already exists.this will not insert rather it will overwrite.&lt;/P&gt;&lt;P&gt;what u can do is if u make another field as a primary key and if u hve a diff val in this field, this record will get inserted.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2009 10:07:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195882#M1202399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-12T10:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: upload program for duplicate entries</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195883#M1202400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;closed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 05:30:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/upload-program-for-duplicate-entries/m-p/5195883#M1202400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T05:30:04Z</dc:date>
    </item>
  </channel>
</rss>

