<?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 Hashed and sorted table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hashed-and-sorted-table/m-p/3721042#M895804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: FTAB TYPE SORTED TABLE OF F&lt;/P&gt;&lt;P&gt;WITH NON-UNIQUE KEY TABLE LINE,&lt;/P&gt;&lt;P&gt;ITAB TYPE HASHED TABLE OF I&lt;/P&gt;&lt;P&gt;WITH UNIQUE KEY TABLE LINE,&lt;/P&gt;&lt;P&gt;FL TYPE F.&lt;/P&gt;&lt;P&gt;DO 3 TIMES.&lt;/P&gt;&lt;P&gt;INSERT SY-INDEX INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;FTAB = ITAB.&lt;/P&gt;&lt;P&gt;LOOP AT FTAB INTO FL.&lt;/P&gt;&lt;P&gt;WRITE: / FL.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;The output is:&lt;/P&gt;&lt;P&gt;1.000000000000000E+00&lt;/P&gt;&lt;P&gt;2.000000000000000E+00&lt;/P&gt;&lt;P&gt;3.000000000000000E+00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does it mean by table of i?&lt;/P&gt;&lt;P&gt;and how itab of type i is assigned to ftab of type f?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz clarify me doubt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Apr 2008 22:18:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-21T22:18:32Z</dc:date>
    <item>
      <title>Hashed and sorted table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hashed-and-sorted-table/m-p/3721042#M895804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DATA: FTAB TYPE SORTED TABLE OF F&lt;/P&gt;&lt;P&gt;WITH NON-UNIQUE KEY TABLE LINE,&lt;/P&gt;&lt;P&gt;ITAB TYPE HASHED TABLE OF I&lt;/P&gt;&lt;P&gt;WITH UNIQUE KEY TABLE LINE,&lt;/P&gt;&lt;P&gt;FL TYPE F.&lt;/P&gt;&lt;P&gt;DO 3 TIMES.&lt;/P&gt;&lt;P&gt;INSERT SY-INDEX INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;FTAB = ITAB.&lt;/P&gt;&lt;P&gt;LOOP AT FTAB INTO FL.&lt;/P&gt;&lt;P&gt;WRITE: / FL.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;The output is:&lt;/P&gt;&lt;P&gt;1.000000000000000E+00&lt;/P&gt;&lt;P&gt;2.000000000000000E+00&lt;/P&gt;&lt;P&gt;3.000000000000000E+00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What does it mean by table of i?&lt;/P&gt;&lt;P&gt;and how itab of type i is assigned to ftab of type f?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz clarify me doubt.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2008 22:18:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hashed-and-sorted-table/m-p/3721042#M895804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-21T22:18:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hashed and sorted table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hashed-and-sorted-table/m-p/3721043#M895805</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;&lt;STRONG&gt;Table of I&lt;/STRONG&gt; means it creates an internal table body which allows the values of type I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can assign Interger type values to Float type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, The contents of the Itab are are copied into ftab.It comes into type-casting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can also assign the values of character to numeric.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is useful for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 02:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hashed-and-sorted-table/m-p/3721043#M895805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T02:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hashed and sorted table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hashed-and-sorted-table/m-p/3721044#M895806</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;1. Internal table with  body will be Created if you Declare table of I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. So, The contents of the Itab will be copied to ftab. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward iF Helpfull,&lt;/P&gt;&lt;P&gt;Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 03:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hashed-and-sorted-table/m-p/3721044#M895806</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T03:47:54Z</dc:date>
    </item>
  </channel>
</rss>

