<?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: select.........upto 1 rows syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028602#M416080</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;SELECT..... FROM &amp;lt;dbtab&amp;gt; [CLIENT SPECIFIED] [BYPASSING BUFFER]&lt;/P&gt;&lt;P&gt;                    [UP TO &amp;lt;n&amp;gt; ROWS].........&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  * FROM MARA INTO ITAB UP TO 20 ROWS WHEER ABC = BCD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;prajith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Mar 2007 07:40:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-22T07:40:06Z</dc:date>
    <item>
      <title>select.........upto 1 rows syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028598#M416076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plz sent the syantax select..........upto 1 rows&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 07:33:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028598#M416076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T07:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: select.........upto 1 rows syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028599#M416077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select * &lt;/P&gt;&lt;P&gt;  from mara&lt;/P&gt;&lt;P&gt;  up to 1 rows &lt;/P&gt;&lt;P&gt;  into w_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 07:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028599#M416077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T07:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: select.........upto 1 rows syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028600#M416078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from kna1 up to 1 row where field1 = 'xxx' and field2 = 'yyyy'

* here you need to mention all the primary keys in the select to get the exact record&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/difference-between-select-single-and-select-upto-one-rows.htm" target="test_blank"&gt;http://www.sap-img.com/abap/difference-between-select-single-and-select-upto-one-rows.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 07:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028600#M416078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T07:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: select.........upto 1 rows syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028601#M416079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;tables: mara.&lt;/P&gt;&lt;P&gt;select-options:&lt;/P&gt;&lt;P&gt;s_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;from mara&lt;/P&gt;&lt;P&gt;up to 1 rows&lt;/P&gt;&lt;P&gt;into mara&lt;/P&gt;&lt;P&gt;where matnr in s_matnr.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt; It's with where clause....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 07:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028601#M416079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T07:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: select.........upto 1 rows syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028602#M416080</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;SELECT..... FROM &amp;lt;dbtab&amp;gt; [CLIENT SPECIFIED] [BYPASSING BUFFER]&lt;/P&gt;&lt;P&gt;                    [UP TO &amp;lt;n&amp;gt; ROWS].........&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT  * FROM MARA INTO ITAB UP TO 20 ROWS WHEER ABC = BCD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;prajith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 07:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028602#M416080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T07:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: select.........upto 1 rows syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028603#M416081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;narenra,&lt;/P&gt;&lt;P&gt;Use this,&lt;/P&gt;&lt;P&gt;SELECT * FROM TABLE-NAME UP TO 1 ROWS INTO ITAB.&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;Ramganesan K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 07:40:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028603#M416081</guid>
      <dc:creator>former_member189631</dc:creator>
      <dc:date>2007-03-22T07:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: select.........upto 1 rows syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028604#M416082</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;it will give the same result as select single *.&lt;/P&gt;&lt;P&gt;for select single * u need not write endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the syntax for this is &lt;/P&gt;&lt;P&gt;select * from &amp;lt;db table&amp;gt; up to 1 rows.&lt;/P&gt;&lt;P&gt;endselect.&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;bharat chowdary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 07:41:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-upto-1-rows-syntax/m-p/2028604#M416082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T07:41:54Z</dc:date>
    </item>
  </channel>
</rss>

