<?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: help with find data in table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533595#M850114</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the Range tables when the number of single values is not huge ( In Millions ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number os records in the range table is less you very use the range tables. It won't affect the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Feb 2008 15:01:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-27T15:01:41Z</dc:date>
    <item>
      <title>help with find data in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533589#M850108</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 have intrnal table with lot of value and i wont to now if some value is &lt;/P&gt;&lt;P&gt;their what is the best way to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have table itab&lt;/P&gt;&lt;P&gt;field-desc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;qray&lt;/P&gt;&lt;P&gt;mmm&lt;/P&gt;&lt;P&gt;tyieel&lt;/P&gt;&lt;P&gt;iisjso&lt;/P&gt;&lt;P&gt;I0002&lt;/P&gt;&lt;P&gt;b0005&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i wont to now if i have in itab one of the value I0002 or I0052 &lt;/P&gt;&lt;P&gt;or I0059&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533589#M850108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: help with find data in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533590#M850109</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;You can use Read table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE &amp;lt;itab&amp;gt; WITH KEY &amp;lt;k1&amp;gt; = &amp;lt;f1&amp;gt;... &amp;lt;kn&amp;gt; = &amp;lt;fn&amp;gt; &amp;lt;result&amp;gt;&lt;/P&gt;&lt;P&gt;                                                       BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;URL for read table&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb373d358411d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/fc/eb373d358411d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Lakshmikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533590#M850109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: help with find data in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533591#M850110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use Read statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EX:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ table itab with KEY vbeln = gv_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533591#M850110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: help with find data in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533592#M850111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Loop at itab where field-desc = 'I0002' or&lt;/P&gt;&lt;P&gt;                                   field-desc = 'I0052' or &lt;/P&gt;&lt;P&gt;                                   field-desc = 'I0059'.&lt;/P&gt;&lt;P&gt;  exit.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;   write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; itab-field-desc.  &amp;lt;-- this will have either of the three values .. &lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:50:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533592#M850111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: help with find data in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533593#M850112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can bulit a range table and check the values like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: RA_STAT TYPE RANGE OF J_STATUS WITH HEADER LINE.

      RA_STAT-SIGN = 'I'.
      RA_STAT-OPTION = 'EQ'.
      RA_STAT-LOW = 'I0002'
      APPEND RA_STAT.
      RA_STAT-LOW = 'I0050'
      APPEND RA_STAT.
      RA_STAT-LOW = 'I0052'
      APPEND RA_STAT.

loop at itab where stat in ra_stat.
write:/ 'Value is available in itab
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533593#M850112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: help with find data in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533594#M850113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Vasanth M  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i try it with read like this and i have error.&lt;/P&gt;&lt;P&gt;i do it like that because the performance range is better?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; READ TABLE status_tab WITH KEY stat = 'I0002' or = 'I0042' or = 'I0045'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:59:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533594#M850113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: help with find data in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533595#M850114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ricardo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the Range tables when the number of single values is not huge ( In Millions ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the number os records in the range table is less you very use the range tables. It won't affect the performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 15:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-with-find-data-in-table/m-p/3533595#M850114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T15:01:41Z</dc:date>
    </item>
  </channel>
</rss>

