<?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: standard table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729044#M897563</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi florein,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the solution....&lt;/P&gt;&lt;P&gt;but can u explain me ,why the duplicate entries are not coming to internal table....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;standard table should take duplicate entries right..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for me i required only matnr kwmeng and audat..... when i have created internal table of these fields, duplicate entries of these also should append in the internal table.... but why it is not taking...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 May 2008 08:44:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-06T08:44:40Z</dc:date>
    <item>
      <title>standard table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729040#M897559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have created a internal table by using the following systax.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty_itab,&lt;/P&gt;&lt;P&gt;            matnr     type matnr,&lt;/P&gt;&lt;P&gt;            kwmeng type kwmeng,&lt;/P&gt;&lt;P&gt;            audat     type audat,&lt;/P&gt;&lt;P&gt;         end of ty_itab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;data : itab type standard table of ty_itab with header line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to fetch all records of the selected document numbers from VBAP table, but it is not taking duplicate entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if matnr, kwmenge and audat values are same than thoes records are not coming to internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;according to me by default standard table should allow duplicate entries which is not happing in my case.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly, give some solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 08:29:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729040#M897559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T08:29:24Z</dc:date>
    </item>
    <item>
      <title>Re: standard table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729041#M897560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;VBAP is a position data table, so you need to have posnr in your itab as well, thats the full solution for all the problems you got right now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;besides a small tip, dont do header lines, it´s obsolete and hard to read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 08:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729041#M897560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T08:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: standard table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729042#M897561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please post ur select query. Also Avoid using Header lines. This is absolete now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this select.&lt;/P&gt;&lt;P&gt;SELECT field list INTO TABLE itab&lt;/P&gt;&lt;P&gt;FROM vbap&lt;/P&gt;&lt;P&gt;WHERE vbeln IN so_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 08:34:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729042#M897561</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-06T08:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: standard table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729043#M897562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take the posnr filed in your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 08:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729043#M897562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T08:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: standard table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729044#M897563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi florein,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for the solution....&lt;/P&gt;&lt;P&gt;but can u explain me ,why the duplicate entries are not coming to internal table....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;standard table should take duplicate entries right..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for me i required only matnr kwmeng and audat..... when i have created internal table of these fields, duplicate entries of these also should append in the internal table.... but why it is not taking...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 08:44:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729044#M897563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T08:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: standard table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729045#M897564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If for standard tables you specify no key, the table key is automatically determined as a non-unique standard key. A key specified without explicit uniqueness is implicitly enhanced with the addition NON-UNIQUE KEY. You cannot specify addition UNIQUE KEY.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 May 2008 09:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/standard-table/m-p/3729045#M897564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-06T09:41:47Z</dc:date>
    </item>
  </channel>
</rss>

