<?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: transparent table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334361#M799062</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: W_LONG TYPE I.

SELECT COUNT(*)
INTO W_LONG
FROM SPFLI.

WRITE:/ W_LONG.
&lt;/CODE&gt;&lt;/PRE&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, 24 Jan 2008 14:23:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-24T14:23:51Z</dc:date>
    <item>
      <title>transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334360#M799061</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;how can i find no of records of a physical table, is there any simple way something like a describe which works for internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 14:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334360#M799061</guid>
      <dc:creator>former_member196517</dc:creator>
      <dc:date>2008-01-24T14:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334361#M799062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: W_LONG TYPE I.

SELECT COUNT(*)
INTO W_LONG
FROM SPFLI.

WRITE:/ W_LONG.
&lt;/CODE&gt;&lt;/PRE&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, 24 Jan 2008 14:23:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334361#M799062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T14:23:51Z</dc:date>
    </item>
    <item>
      <title>Re: transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334362#M799063</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;Go to SE11-&amp;gt;click on contents button-&amp;gt; double click on NUMBER OF ENTRIES push button.  You can get total no of records in that table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 14:25:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334362#M799063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T14:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334363#M799064</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;Please refer to the code and document below :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... COUNT( * ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;Returns the number of lines selected. If the SELECT command contains a GROUP-BY clause, the system returns the number of lines for each group. You can use COUNT( * ) instead of COUNT(*). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;Displays a list of all the customers on all the Lufthansa 0400 flights in the year 2001, with the number of bookings for each flight, ordered by customer name: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: name     TYPE scustom-name, &lt;/P&gt;&lt;P&gt;      postcode TYPE scustom-postcode, &lt;/P&gt;&lt;P&gt;      city     TYPE scustom-city, &lt;/P&gt;&lt;P&gt;      count    TYPE I. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT scustom&lt;SUB&gt;name scustom&lt;/SUB&gt;postcode scustom~city COUNT( * ) &lt;/P&gt;&lt;P&gt;       INTO (name, postcode, city, count) &lt;/P&gt;&lt;P&gt;       FROM scustom INNER JOIN sbook &lt;/P&gt;&lt;P&gt;         ON scustom&lt;SUB&gt;id = sbook&lt;/SUB&gt;customid &lt;/P&gt;&lt;P&gt;       WHERE sbook~fldate BETWEEN '20010101' AND '20011231' AND &lt;/P&gt;&lt;P&gt;             sbook~carrid   = 'LH '                         AND &lt;/P&gt;&lt;P&gt;             sbook~connid   = '0400' &lt;/P&gt;&lt;P&gt;       GROUP BY scustom&lt;SUB&gt;name scustom&lt;/SUB&gt;postcode scustom~city &lt;/P&gt;&lt;P&gt;       ORDER BY scustom~name. &lt;/P&gt;&lt;P&gt;  WRITE: / name, postcode, city, count. &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;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jan 2008 14:31:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3334363#M799064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-24T14:31:30Z</dc:date>
    </item>
  </channel>
</rss>

