<?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: DATA DICTIONARY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328459#M1729065</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First remember primary key is a constraint : unique key and not null values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you must provide different values of primary keys to store multiple records :&lt;/P&gt;&lt;P&gt;- either find another existing field which provides &lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;uniqueness&lt;/SPAN&gt;&lt;/SPAN&gt;, and add it to primary key&lt;/P&gt;&lt;P&gt;- build a technical counter to provide &lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;uniqueness&lt;/SPAN&gt;&lt;/SPAN&gt; like a range number, either add it to current primary key, or build a new primary key mandt+counter, and create an index on current primary key.&lt;/P&gt;&lt;P&gt;In either case, you will then have to delete previous records yourself when you will be requiered to update and not insert into the database.&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>Tue, 12 Mar 2013 09:08:51 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2013-03-12T09:08:51Z</dc:date>
    <item>
      <title>DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328449#M1729055</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've created one z table based on the output fields in a report.The report contains 14 fields and i've taken those 14 fields in my z table... the output of the report contains repeated values in many coloumns. but i've to update that in my z table. the problem is i've taken two key fields they r mandt and posid. the posid contains repeated values in the report and all the duplicates must be stored in the z table i've created. but the table is not accepting the duplicates in the table.. what i should do... can anyone help me with this???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2013 06:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328449#M1729055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-11T06:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328450#M1729056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your ztable make more fields part of the key.&lt;/P&gt;&lt;P&gt;Make sure the fields that you choose in the ztable form a unique row each time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example : MANDT POSID ZFLD1 ZFLD2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you consider these 4 fields together they should be unique for each row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2013 14:32:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328450#M1729056</guid>
      <dc:creator>Azeemquadri</dc:creator>
      <dc:date>2013-03-11T14:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328451#M1729057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can't have non-unique table keys. You either have to add more fields to the key so as to make each key unique or assign a separate field that you can increment sequentially as the key. Look at transaction SNRO and it's documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2013 15:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328451#M1729057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-11T15:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328452#M1729058</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;In your case you cannot take posid as the primary key. Is there any field amongst the 14 fields that is unique? If yes, choose that as the primary key.&lt;/P&gt;&lt;P&gt;&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;Purnand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Mar 2013 16:20:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328452#M1729058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-11T16:20:05Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328453#M1729059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i don't have any unique field except one date.... everything has repeatitions...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2013 04:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328453#M1729059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-12T04:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328454#M1729060</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;&lt;/P&gt;&lt;P&gt;I don't know what is the requirement of creating a customized table in you r company. There is no harm in taking date as the primary key. Again it all depends upon the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you think that date will never be repeated, you can take the date as the primary key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Purnand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2013 07:18:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328454#M1729060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-12T07:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328455#M1729061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Enoch,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use this syntax at the end of your INSERT statement and it will accept duplicate keys:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'ACCEPTING DUPLICATE KEYS'. You can do an F1 also on this. This will help your requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2013 07:30:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328455#M1729061</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-12T07:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328456#M1729062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take more than 2 Primary keys.it will solve ur issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Tarak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2013 07:36:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328456#M1729062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-12T07:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328457#M1729063</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;In your case you can also add one more field as 's.no' which can be unique and then you can remove posid from the key field.This can solvew your problem.The other solution,as specified by others,is to take a group of fields as a key field.Only these are the possibilities available.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it solves your problem,&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;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2013 07:43:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328457#M1729063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-12T07:43:46Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328458#M1729064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;if only set mandt as key field,z table can store&amp;nbsp; repeated&amp;nbsp; value .&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vincent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Mar 2013 07:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328458#M1729064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-03-12T07:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: DATA DICTIONARY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328459#M1729065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First remember primary key is a constraint : unique key and not null values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you must provide different values of primary keys to store multiple records :&lt;/P&gt;&lt;P&gt;- either find another existing field which provides &lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;uniqueness&lt;/SPAN&gt;&lt;/SPAN&gt;, and add it to primary key&lt;/P&gt;&lt;P&gt;- build a technical counter to provide &lt;SPAN class="short_text" id="result_box" lang="en"&gt;&lt;SPAN class="hps"&gt;uniqueness&lt;/SPAN&gt;&lt;/SPAN&gt; like a range number, either add it to current primary key, or build a new primary key mandt+counter, and create an index on current primary key.&lt;/P&gt;&lt;P&gt;In either case, you will then have to delete previous records yourself when you will be requiered to update and not insert into the database.&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>Tue, 12 Mar 2013 09:08:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-dictionary/m-p/9328459#M1729065</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2013-03-12T09:08:51Z</dc:date>
    </item>
  </channel>
</rss>

