<?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 single&amp;select single* in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436958#M545222</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;a href="https://forums.sdn.sap.com/search!default.jspa?objID=f50"&amp;gt;Answer&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Jun 2007 14:50:01 GMT</pubDate>
    <dc:creator>suresh_datti</dc:creator>
    <dc:date>2007-06-21T14:50:01Z</dc:date>
    <item>
      <title>select single&amp;select single*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436957#M545221</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;i want to know differance b/w select single&amp;amp;select single* please explain me with an example.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:48:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436957#M545221</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:48:41Z</dc:date>
    </item>
    <item>
      <title>Re: select single&amp;select single*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436958#M545222</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;a href="https://forums.sdn.sap.com/search!default.jspa?objID=f50"&amp;gt;Answer&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:50:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436958#M545222</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-06-21T14:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: select single&amp;select single*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436959#M545223</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vikram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE*:&lt;/P&gt;&lt;P&gt;The result of the selection should be a single entry. If it is not possible to identify a unique entry, the system uses the first line of the selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA wa TYPE spfli. &lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM sflight INTO wa &lt;/P&gt;&lt;P&gt;       WHERE &lt;/P&gt;&lt;P&gt;         carrid   = 'LH '      AND &lt;/P&gt;&lt;P&gt;         connid   = '0400'     AND &lt;/P&gt;&lt;P&gt;         fldate   = '20010228'. &lt;/P&gt;&lt;P&gt;         FLDATE   = '19950228'. &lt;/P&gt;&lt;P&gt;WRITE: / wa-carrid, wa-connid, wa-fldate, seatsfree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE:&lt;/P&gt;&lt;P&gt;Selecting the required fields,instead of selcting all the fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES:begin of itab,&lt;/P&gt;&lt;P&gt;            carrid type sflight-carrid,&lt;/P&gt;&lt;P&gt;            connid type sflight-connid,&lt;/P&gt;&lt;P&gt;            fldate type sflight-fldate,&lt;/P&gt;&lt;P&gt;            seatsfree type sflight-seatsfree,&lt;/P&gt;&lt;P&gt;           end of itab.&lt;/P&gt;&lt;P&gt;data:wa type itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE carrid connid fldate seatsfree FROM sflight INTO wa &lt;/P&gt;&lt;P&gt;       WHERE &lt;/P&gt;&lt;P&gt;         carrid   = 'LH '      AND &lt;/P&gt;&lt;P&gt;         connid   = '0400'     AND &lt;/P&gt;&lt;P&gt;         fldate   = '20010228'. &lt;/P&gt;&lt;P&gt;         FLDATE   = '19950228'. &lt;/P&gt;&lt;P&gt;WRITE: / wa-carrid, wa-connid, wa-fldate, seatsfree.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;rami&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 14:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436959#M545223</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T14:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: select single&amp;select single*</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436960#M545224</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT *
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gathers all fields from the table....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT FIELD1 FIELD2 FIELD3
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You specify which fields you want to gather -;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Blag.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Jun 2007 15:00:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-single-select-single/m-p/2436960#M545224</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-21T15:00:11Z</dc:date>
    </item>
  </channel>
</rss>

