<?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 Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901989#M682503</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally *MARA when declared is treated as the Work Area for that program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose we declare&lt;/P&gt;&lt;P&gt;tables : mara, *mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MARA and * MARA are treatead as workareas and at the same time you can even retrieve data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Oct 2007 08:12:31 GMT</pubDate>
    <dc:creator>gopi_narendra</dc:creator>
    <dc:date>2007-10-15T08:12:31Z</dc:date>
    <item>
      <title>select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901978#M682492</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 want to know what will this statement do&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from  *&amp;lt;dbtabname&amp;gt;  where.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;Sundeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 15:22:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901978#M682492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T15:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901979#M682493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This will select all fields from database table into internal table u have specified, which should be of the table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Never use select * unless u need more than 75% of the fields. this will create performance problems&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 15:26:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901979#M682493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T15:26:01Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901980#M682494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here data is populated from a &amp;lt;DB table name&amp;gt; which is assigned during runtime. So this is a Dynamic SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the program. There must be some code which assigns value to field symbol &amp;lt;dbtabname&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 15:26:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901980#M682494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T15:26:13Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901981#M682495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it gets the data from the databasetable depending upon the &lt;/P&gt;&lt;P&gt;where condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose i have one table zone.&lt;/P&gt;&lt;P&gt;in this table 3 records will be there.the fields in the recores are&lt;/P&gt;&lt;P&gt;f1          f2        f3         f4.&lt;/P&gt;&lt;P&gt;one      boss     big       a&lt;/P&gt;&lt;P&gt;two      boss1   big1      a&lt;/P&gt;&lt;P&gt;theree  boss2   big2      b.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u write select statement like this&lt;/P&gt;&lt;P&gt;select * from zone where f4 = 'a'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u get the fallowing records&lt;/P&gt;&lt;P&gt;one      boss     big       a&lt;/P&gt;&lt;P&gt;two      boss1   big1      a&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 15:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901981#M682495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T15:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901982#M682496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont think select statement works like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you give the statement as select * from * mara, it ll give you a compile time error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 15:35:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901982#M682496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T15:35:00Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901983#M682497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sundeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per my thinking it should give you &amp;lt;b&amp;gt;ERROR&amp;lt;/b&amp;gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 16:01:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901983#M682497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T16:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901984#M682498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have seen this codeing in a standard progrmam and its working &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from *mara where(some condition)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2007 07:18:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901984#M682498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-09T07:18:07Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901985#M682499</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;If you are specifying the field names then you will have to use into clause , since you dont want to use into clause then you select all the fields from the table using select *.&lt;/P&gt;&lt;P&gt;here is an sample&lt;/P&gt;&lt;P&gt;select single * from ekpo where ebeln = v_ebeln.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2007 07:23:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901985#M682499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-09T07:23:26Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901986#M682500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u did not get my question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from &amp;lt;b&amp;gt;*mara&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is is the use of the *before mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;sundeep&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2007 08:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901986#M682500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-09T08:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901987#M682501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 08:01:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901987#M682501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T08:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901988#M682502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;select * statement will select all the fields of the database table based on the condition given in the where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Gangula Vikram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 08:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901988#M682502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-15T08:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: select statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901989#M682503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally *MARA when declared is treated as the Work Area for that program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose we declare&lt;/P&gt;&lt;P&gt;tables : mara, *mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MARA and * MARA are treatead as workareas and at the same time you can even retrieve data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Oct 2007 08:12:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement/m-p/2901989#M682503</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-10-15T08:12:31Z</dc:date>
    </item>
  </channel>
</rss>

