<?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 Statement in Smartform in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737970#M320879</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;Should be okay to have SELECT statement in Smartforms..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Performance depends on which table you are accessing and how many records it will be fetching..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Dec 2006 04:39:29 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-21T04:39:29Z</dc:date>
    <item>
      <title>Select Statement in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737969#M320878</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 am running VF03 to get the output of Invoice and i am writing Select query inside the Smartform. Is there any performance issue and also is it mandatory to use select querey only in the driver program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know based on the performance analysis.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 04:36:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737969#M320878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T04:36:45Z</dc:date>
    </item>
    <item>
      <title>Re: Select Statement in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737970#M320879</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;Should be okay to have SELECT statement in Smartforms..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Performance depends on which table you are accessing and how many records it will be fetching..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 04:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737970#M320879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T04:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Select Statement in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737971#M320880</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;A select in smartforms is as fast (or slow) as in the driver program. As long as you didn't add the select in a bad place like inside a loop, there is no principal performance disadvantage.&lt;/P&gt;&lt;P&gt;Also from philosophical point of view both is possible: some like smartforms which have only NAST-key as input and make all selects in the smartform (very easy testing!), other prefer the selection logic in the driver program. Again: both is possible and good. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Christian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 08:54:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737971#M320880</guid>
      <dc:creator>christian_wohlfahrt</dc:creator>
      <dc:date>2006-12-21T08:54:19Z</dc:date>
    </item>
    <item>
      <title>Re: Select Statement in Smartform</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737972#M320881</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;You can use select statements in Smartform. See that you are:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Not having select statements in loops.&lt;/P&gt;&lt;P&gt;2. No select...endselect stmnts...&lt;/P&gt;&lt;P&gt;3. No redundant selections on same tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as possible try get all required data at one go...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Qualify to the maximum extent your select stmnts (giving all possible key fields in where clause)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Dec 2006 19:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-in-smartform/m-p/1737972#M320881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-28T19:31:34Z</dc:date>
    </item>
  </channel>
</rss>

