<?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 count(*) statement in ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260537#M778945</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once Check the Values u r passing to the Select. Actually SAP Stores the values on the tables in Capital Letters. U would have given ur password in small letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;awrd points if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bhupal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Jan 2008 04:34:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-11T04:34:42Z</dc:date>
    <item>
      <title>select count(*) statement in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260536#M778944</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;Im writing following statement in my Function module,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select count(*) into l_count&lt;/P&gt;&lt;P&gt;from user_master&lt;/P&gt;&lt;P&gt;where username = l_username and&lt;/P&gt;&lt;P&gt;      process_type = processtype and&lt;/P&gt;&lt;P&gt;      password = oldpassword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And there is one entry in table user_master. &lt;/P&gt;&lt;P&gt;But still, I'm getting l_count as zero..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can somebody help me with this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 04:31:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260536#M778944</guid>
      <dc:creator>Amey-Mogare</dc:creator>
      <dc:date>2008-01-11T04:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: select count(*) statement in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260537#M778945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once Check the Values u r passing to the Select. Actually SAP Stores the values on the tables in Capital Letters. U would have given ur password in small letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;awrd points if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bhupal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 04:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260537#M778945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T04:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: select count(*) statement in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260538#M778946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select count(*) into l_count&lt;/P&gt;&lt;P&gt;from user_master&lt;/P&gt;&lt;P&gt;where username = l_username and&lt;/P&gt;&lt;P&gt;process_type = processtype and&lt;/P&gt;&lt;P&gt;password = oldpassword.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use group by option...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select count(*) into l_count&lt;/P&gt;&lt;P&gt;from user_master&lt;/P&gt;&lt;P&gt;where username = l_username and&lt;/P&gt;&lt;P&gt;process_type = processtype and&lt;/P&gt;&lt;P&gt;password = oldpassword group by username.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 04:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260538#M778946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-11T04:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: select count(*) statement in ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260539#M778947</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;I got that,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually when I replaced COUNT(*) by COUNT ( * ) , problem is resolved...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank u so much for your advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amey&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jan 2008 05:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-count-statement-in-abap/m-p/3260539#M778947</guid>
      <dc:creator>Amey-Mogare</dc:creator>
      <dc:date>2008-01-11T05:14:54Z</dc:date>
    </item>
  </channel>
</rss>

