<?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/3290869#M787411</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; SELECT COUNT(*) FROM ztable INTO variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jan 2008 06:35:17 GMT</pubDate>
    <dc:creator>former_member404244</dc:creator>
    <dc:date>2008-01-18T06:35:17Z</dc:date>
    <item>
      <title>transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290868#M787410</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;is their any syntax by which we can get the  total no of rows in the transparent table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards ,&lt;/P&gt;&lt;P&gt;Nutan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 06:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290868#M787410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T06:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290869#M787411</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; SELECT COUNT(*) FROM ztable INTO variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 06:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290869#M787411</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2008-01-18T06:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290870#M787412</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;by the key word &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;describe u can get the desired&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE itab [KIND knd] [LINES lin] [OCCURS n]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE itab [KIND knd] [LINES lin] [OCCURS n]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Extras: &lt;/P&gt;&lt;P&gt;1. ... KIND knd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. ... LINES lin &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. ... OCCURS n &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;This statement determines some properties of the internal table itab and assigns them to the specified variables. The various additions enable you to determine the table type, the number of currently filled rows and the initial memory requirement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In addition, the system fields sy-tfill and sy-tleng are filled with the current number of table rows and the length of a table row in bytes. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes &lt;/P&gt;&lt;P&gt;For detailed information about an internal table, you should use the methods of RTTS instead of the statement DESCRIBE TABLE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without the specification of an addition, the statement DESCRIBE TABLE only sets the system fields sy-tfill and sy-tleng. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1 &lt;/P&gt;&lt;P&gt;... KIND knd &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;The table type of the internal table itab is determined and a corresponding one-digit identification is assigned to the data object knd. A character-type data type is expected for the data object. The identifications are "T" for standard tables, "S" for sorted tables and "H" for hashed tables. These values are also defined as constants sydes_kind-standard, sydes_kind-sorted, and sydes_kind-hashed in the type group SYDES. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2 &lt;/P&gt;&lt;P&gt;... LINES lin &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;The current number of table rows of the internal table itab is determined and is assigned to the data object lin.The data type i is expected for the data object. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;As of release 6.10, the current number of rows of an internal table can also be determined using the in-built function lines. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 3 &lt;/P&gt;&lt;P&gt;... OCCURS n &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;The initial memory requirement defined during the creation of the internal table with the addition INITIAL SIZE or the obsolete addition OCCURS is determined and assigned to the data object n. The data type i is expected for the data object. &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;Descending sorting of a generically typed internal table in a subprogram. Since sorted tables cannot be sorted in a descending order, the table type is checked to avoid an exception that cannot be handled. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS sydes. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;FORM sort_descending CHANGING itab TYPE ANY TABLE. &lt;/P&gt;&lt;P&gt;  DATA tabkind(1) TYPE c. &lt;/P&gt;&lt;P&gt;  DESCRIBE TABLE itab KIND tabkind. &lt;/P&gt;&lt;P&gt;  IF tabkind = sydes_kind-standard OR &lt;/P&gt;&lt;P&gt;     tabkind = sydes_kind-hashed. &lt;/P&gt;&lt;P&gt;    SORT itab DESCENDING. &lt;/P&gt;&lt;P&gt;  ELSEIF tabkind = sydes_kind-sorted. &lt;/P&gt;&lt;P&gt;    MESSAGE '...' TYPE 'E'. &lt;/P&gt;&lt;P&gt;  ELSE. &lt;/P&gt;&lt;P&gt;    MESSAGE '...' TYPE 'E'. &lt;/P&gt;&lt;P&gt;  ENDIF. &lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tht is the complete information abt describe ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plzz reward if it is useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 06:35:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290870#M787412</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T06:35:25Z</dc:date>
    </item>
    <item>
      <title>Re: transparent table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290871#M787413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx:-)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Nutan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 06:40:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transparent-table/m-p/3290871#M787413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T06:40:14Z</dc:date>
    </item>
  </channel>
</rss>

