<?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 Duplicate enteries in the table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429074#M1410695</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to add duplicate enteries in the table, Iam taking the data from the Selection screen and passing it to the table,&lt;/P&gt;&lt;P&gt;But its not accepting the duplicate enteries, so help me on this matter. my key fields are MATNR  and WERKS.&lt;/P&gt;&lt;P&gt;What Statement i have to write for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Dec 2009 06:56:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-10T06:56:08Z</dc:date>
    <item>
      <title>Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429074#M1410695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to add duplicate enteries in the table, Iam taking the data from the Selection screen and passing it to the table,&lt;/P&gt;&lt;P&gt;But its not accepting the duplicate enteries, so help me on this matter. my key fields are MATNR  and WERKS.&lt;/P&gt;&lt;P&gt;What Statement i have to write for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 06:56:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429074#M1410695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T06:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429075#M1410696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is something called Data consistency, whcih ensures that the data is unique &amp;amp; consistent but your requirement seems to be violating these rule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why are you trying to add duplicate entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATNR is a key field &amp;amp; it ensures that there wont be any duplicate entries in the table. This is not a feasible requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Abhii&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhii on Dec 10, 2009 8:02 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429075#M1410696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T07:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429076#M1410697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To add duplicate entries try with APPEND &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:03:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429076#M1410697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T07:03:30Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429077#M1410698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is no way to save a entry that has the same key values as a other's entry primary keys. You have to alter / extend the primary key to do this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field you use to extend the primary key should be one that is different to the other entry and is unique in compination with your other key fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Primary Keys are unique and can not be used more than one time. Otherwise you data could not be structered efficent by the database engine and you could not select only one row for deleting etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:05:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429077#M1410698</guid>
      <dc:creator>patrick1905</dc:creator>
      <dc:date>2009-12-10T07:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429078#M1410699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;actually I have a FISCAL YEAR field in the table, So when the year change, its entries will remain same and its year will only be change. thats why i want to add duplicate fields in the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:05:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429078#M1410699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T07:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429079#M1410700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should than extend the primary key by that field and it will be possible to add your entries.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429079#M1410700</guid>
      <dc:creator>patrick1905</dc:creator>
      <dc:date>2009-12-10T07:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429080#M1410701</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;What table are you talking about ?&lt;/P&gt;&lt;P&gt;If it Z-table then make field Fiscal Year as KEY FIELD.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:09:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429080#M1410701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T07:09:06Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429081#M1410702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not getting u, plz give some example for it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Iam using my own Z table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Manish Sharma on Dec 10, 2009 8:10 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:10:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429081#M1410702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T07:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429082#M1410703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if its Ztable then try to give another key field for serial no.&lt;/P&gt;&lt;P&gt;every time for same matnr increase srno by 1 and for another material again strt this counting from 1.&lt;/P&gt;&lt;P&gt;this key field should be your first field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With regards&lt;/P&gt;&lt;P&gt;Pardeep Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429082#M1410703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T07:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429083#M1410704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; When you are trying to change only a particular field then go for update or modify statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update &amp;lt;dbtable&amp;gt;&lt;/P&gt;&lt;P&gt;set &amp;lt;fiscal field&amp;gt; = &amp;lt;vlaue&amp;gt;&lt;/P&gt;&lt;P&gt;where &amp;lt;condition&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Swarna Munukoti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:17:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429083#M1410704</guid>
      <dc:creator>former_member217544</dc:creator>
      <dc:date>2009-12-10T07:17:24Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429084#M1410705</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;Check "key" in se11 for the field that repesents the year. This will extend your unique primary key by that field and will make it possible to save your entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:18:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429084#M1410705</guid>
      <dc:creator>patrick1905</dc:creator>
      <dc:date>2009-12-10T07:18:13Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429085#M1410706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI manish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your can add duplicate entries in your table by removing Key fileds. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;keep all fileds as normal fields or non keyfileds. you can do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if you still facing the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~linganna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:20:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429085#M1410706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-10T07:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: Insert Duplicate enteries in the table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429086#M1410707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to have multiples entries for MATNR+WERKS, one by YEAR, define YEAR as a primary key, primary keys define unique records. (Also use MANDT as the first key)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Dec 2009 07:32:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/insert-duplicate-enteries-in-the-table/m-p/6429086#M1410707</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-12-10T07:32:47Z</dc:date>
    </item>
  </channel>
</rss>

