<?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 --endselect in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290450#M155145</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) avoid select *, always type in the columns you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) make extremly use of the where condition, do nout use check of if statements so filter data. Aoid evry unnecassry transfer from database to applaction server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) if you only need one row, use select single. in that case, you have to specify the whole primary key in the where condition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Mar 2006 09:27:39 GMT</pubDate>
    <dc:creator>rainer_hbenthal</dc:creator>
    <dc:date>2006-03-23T09:27:39Z</dc:date>
    <item>
      <title>select --endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290444#M155139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i heard that select---endselect it not good for performance.&lt;/P&gt;&lt;P&gt;how i can edit to it table with select single&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 08:17:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290444#M155139</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T08:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: select --endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290445#M155140</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;look in online-docu for:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select (fields) from dbtable into itab&lt;/P&gt;&lt;P&gt;        where ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if you search a single item:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single field from dbtable into hfield&lt;/P&gt;&lt;P&gt;       where .... (complete primary key)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 08:24:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290445#M155140</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-03-23T08:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: select --endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290446#M155141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rani,&lt;/P&gt;&lt;P&gt;   you can try to collect data in a internal table with where condition and read from internal table.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Kinshuk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 08:24:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290446#M155141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T08:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: select --endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290447#M155142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can use&lt;/P&gt;&lt;P&gt; select xxx from dbtab into &amp;lt;b&amp;gt;TABLE&amp;lt;/b&amp;gt; itab where  xxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 08:24:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290447#M155142</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T08:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: select --endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290448#M155143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rani,&lt;/P&gt;&lt;P&gt;       as an alternative of that you can use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select * &amp;lt;b&amp;gt;from mara into table Itab&amp;lt;/b&amp;gt; Where Matnr = '000000000000000038'...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 08:26:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290448#M155143</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T08:26:00Z</dc:date>
    </item>
    <item>
      <title>Re: select --endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290449#M155144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use select Fields from database table to itab where condition.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;select * from dbtable into itab where condition.&lt;/P&gt;&lt;P&gt;i think this will help u out Rani..&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Regars,&lt;/P&gt;&lt;P&gt;Sreevani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 08:32:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290449#M155144</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-23T08:32:33Z</dc:date>
    </item>
    <item>
      <title>Re: select --endselect</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290450#M155145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) avoid select *, always type in the columns you need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) make extremly use of the where condition, do nout use check of if statements so filter data. Aoid evry unnecassry transfer from database to applaction server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) if you only need one row, use select single. in that case, you have to specify the whole primary key in the where condition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Mar 2006 09:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect/m-p/1290450#M155145</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2006-03-23T09:27:39Z</dc:date>
    </item>
  </channel>
</rss>

