<?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: internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144208#M115649</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;sort itab by column2 descending.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read itab into wa index 1.&lt;/P&gt;&lt;P&gt;write wa-column2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give the maximum value.Kindly reward points by clicking the star on the left of reply,if it ehlps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Feb 2006 08:12:29 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2006-02-02T08:12:29Z</dc:date>
    <item>
      <title>internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144207#M115648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to find Maximum Value in Internal Table &lt;/P&gt;&lt;P&gt;There is one internal table containing 3 columns. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to find the maximum value of 2nd column in that internal table . If I use loop at tab, that becomes performance issue, when there are more no. of records.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 08:08:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144207#M115648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T08:08:22Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144208#M115649</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;sort itab by column2 descending.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read itab into wa index 1.&lt;/P&gt;&lt;P&gt;write wa-column2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give the maximum value.Kindly reward points by clicking the star on the left of reply,if it ehlps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 08:12:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144208#M115649</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-02-02T08:12:29Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144209#M115650</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;Try to sort the internal table by that column in ascending/descending format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then read the 1st or the last entry of the internal table depending on the sorting type ( ascending/descending ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 08:12:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144209#M115650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T08:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144210#M115651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, chexk this sample code. you can do a similar one &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : vbak.&lt;/P&gt;&lt;P&gt;parameters : p_vbeln like vbak-vbeln.&lt;/P&gt;&lt;P&gt;data :  itab like table of vbak with header line.&lt;/P&gt;&lt;P&gt;select * from vbak into table itab where vbeln =  p_vbeln.&lt;/P&gt;&lt;P&gt;*assume the second column is erdat&lt;/P&gt;&lt;P&gt;sort itab by erdat descending.&lt;/P&gt;&lt;P&gt;read table itab index 1.&lt;/P&gt;&lt;P&gt;write : itab-erdat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 08:25:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144210#M115651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T08:25:03Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144211#M115652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;sort itab by &amp;lt;field nedded&amp;gt;.
read table itab index 1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Deepak K&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 08:27:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144211#M115652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T08:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144212#M115653</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;sort the table by ascending/descending order on the respective columns.. the first row in itab will give the least/largest value.. For further info type sort and press f1 help.&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, 02 Feb 2006 08:37:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144212#M115653</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T08:37:37Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144213#M115654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THERE IS FN MAX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IT WORKS ON N, I, P types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MAX(SNO) gives maximum of SNO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 08:41:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144213#M115654</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-02-02T08:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144214#M115655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hope everyone else suggested the same...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Feb 2006 08:44:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1144214#M115655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-02T08:44:59Z</dc:date>
    </item>
  </channel>
</rss>

