<?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 - Please correct in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502483#M232512</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; May be u have include the line Tables BKPF, in the starting. May be that is the problem. Otherwise it is running very fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Aug 2006 10:34:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-31T10:34:59Z</dc:date>
    <item>
      <title>Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502476#M232505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA : wa_awkey LIKE bkpf-awkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          SELECT awkey FROM  bkpf&lt;/P&gt;&lt;P&gt;                       UP TO 1 ROWS&lt;/P&gt;&lt;P&gt;                       INTO   wa_awkey &lt;/P&gt;&lt;P&gt;                       WHERE bukrs = gt_regup-bukrs&lt;/P&gt;&lt;P&gt;                       AND   belnr = gt_regup-belnr&lt;/P&gt;&lt;P&gt;                       AND   gjahr = gt_regup-gjahr.&lt;/P&gt;&lt;P&gt;          ENDSELECT.&lt;/P&gt;&lt;P&gt;What wsa wrong in this.&lt;/P&gt;&lt;P&gt;the error is "the data object 'wa_awkey' has no structure and therefore no component called 'awkey' ".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:01:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502476#M232505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502477#M232506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: wa_awkey like bkpf-awkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT singe awkey FROM bkpf&lt;/P&gt;&lt;P&gt;INTO wa_awkey &lt;/P&gt;&lt;P&gt;WHERE bukrs = gt_regup-bukrs&lt;/P&gt;&lt;P&gt;AND belnr = gt_regup-belnr&lt;/P&gt;&lt;P&gt;AND gjahr = gt_regup-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:05:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502477#M232506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502478#M232507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This query is working fine for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you post ur code completely just to see whats going wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:06:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502478#M232507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502479#M232508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this program compiled and runs fine:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;TABLES: bkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wa_awkey LIKE bkpf-awkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:  p_bukrs LIKE bkpf-bukrs,&lt;/P&gt;&lt;P&gt;             p_belnr LIKE bkpf-belnr,&lt;/P&gt;&lt;P&gt;             p_gjahr LIKE bkpf-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT awkey FROM bkpf&lt;/P&gt;&lt;P&gt;    UP TO 1 ROWS&lt;/P&gt;&lt;P&gt;    INTO wa_awkey&lt;/P&gt;&lt;P&gt;    WHERE bukrs = p_bukrs&lt;/P&gt;&lt;P&gt;    AND belnr = p_belnr&lt;/P&gt;&lt;P&gt;    AND gjahr = p_gjahr.&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;  WRITE:/ wa_awkey.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502479#M232508</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502480#M232509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which release do you have.&lt;/P&gt;&lt;P&gt;I have tried your code and have no problems.&lt;/P&gt;&lt;P&gt;But normaly select ... endselect gives more than&lt;/P&gt;&lt;P&gt;one record, therefore try it with an internal table.&lt;/P&gt;&lt;P&gt;otherwise you can use select single ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502480#M232509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502481#M232510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which SAP verion are you on? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502481#M232510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502482#M232511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the below code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wa_awkey LIKE bkpf-awkey.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE awkey FROM bkpf&lt;/P&gt;&lt;P&gt;INTO wa_awkey&lt;/P&gt;&lt;P&gt;WHERE bukrs = gt_regup-bukrs&lt;/P&gt;&lt;P&gt;AND belnr = gt_regup-belnr&lt;/P&gt;&lt;P&gt;AND gjahr = gt_regup-gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502482#M232511</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Select statement - Please correct</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502483#M232512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; May be u have include the line Tables BKPF, in the starting. May be that is the problem. Otherwise it is running very fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Aug 2006 10:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-statement-please-correct/m-p/1502483#M232512</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-31T10:34:59Z</dc:date>
    </item>
  </channel>
</rss>

