<?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: read command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305409#M504264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT WHERE ........&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you are looping at internal table, you will have the infomration in the loop and endloop record by record. (again it should match the where condition)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ ITAB WHERE...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you are reading internal table with where condition, you will get a record which matches that condition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if this answer is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 May 2007 22:35:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-18T22:35:46Z</dc:date>
    <item>
      <title>read command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305405#M504260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello abap gurus,&lt;/P&gt;&lt;P&gt;can i know, what is the difference between select and read commands.&lt;/P&gt;&lt;P&gt;in what cases is read good to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz  dont give me links, just tell which is good for what.&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 22:25:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305405#M504260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T22:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: read command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305406#M504261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select command is used to get fields from database. on the other hand, read command is working on internal table where we already have records.&lt;/P&gt;&lt;P&gt;ex. read table itab index 1. &lt;/P&gt;&lt;P&gt;Hope this will help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;MM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 22:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305406#M504261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T22:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: read command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305407#M504262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 22:30:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305407#M504262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T22:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: read command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305408#M504263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so  what is the difference between , loop and read,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT  WHERE ........&lt;/P&gt;&lt;P&gt;LOOPAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ ITAB WHERE...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHAT IS THE DIFFERENCE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 22:32:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305408#M504263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T22:32:07Z</dc:date>
    </item>
    <item>
      <title>Re: read command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305409#M504264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT WHERE ........&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you are looping at internal table, you will have the infomration in the loop and endloop record by record. (again it should match the where condition)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ ITAB WHERE...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here you are reading internal table with where condition, you will get a record which matches that condition. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if this answer is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 22:35:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305409#M504264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T22:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: read command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305410#M504265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Loop works with bunch of records but read works with one record.&lt;/P&gt;&lt;P&gt;When we do loop at itab&lt;/P&gt;&lt;P&gt;                   endloop. We will go with each records for exceution but read will explicity work with records you want to work with&lt;/P&gt;&lt;P&gt;like read table itab with key matnr = itab-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;MM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 22:36:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305410#M504265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T22:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: read command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305411#M504266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Saritha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select command - get the data from data base table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read command will be using for reading the data from internal table only one record at a time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 22:58:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-command/m-p/2305411#M504266</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T22:58:13Z</dc:date>
    </item>
  </channel>
</rss>

