<?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: SELECT  - ENDSELECT RECORD in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623120#M1089016</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 do one thing..&lt;/P&gt;&lt;P&gt;Declare an intermediate variable (work area) where you want to store the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then continue like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear Variable(work area).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select .....................&lt;/P&gt;&lt;P&gt;" assign value to the variable of work area usign which you  want to perform your operions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the final loop is over you will have your record in the variabl/work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now perform your operation using that variable/work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Oct 2008 11:57:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-15T11:57:46Z</dc:date>
    <item>
      <title>SELECT  - ENDSELECT RECORD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623116#M1089012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys , I´m doing a select endselect  but i see only one record at the time , If wanted to process when I´m processing the last record  , what I could do , for example is something similiar of waht you do loop at . endloop ' s at last , but here i dont have a internal table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

      SELECT extrow FROM esll INTO ti_esll-extrow
      WHERE packno = ti_eslh-packno
      AND  del   = ''.
 
    " if last register Perfom xxxxx. 


      endselect .



&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 11:48:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623116#M1089012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T11:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT  - ENDSELECT RECORD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623117#M1089013</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;Why r u doing select and endselect?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fetch all records into an internal table then loop that and use at last.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rhea.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 11:52:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623117#M1089013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T11:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT  - ENDSELECT RECORD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623118#M1089014</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;Create an internal table like ti_esll-extrow with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select into that internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then loop at &amp;lt;int table&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;use at last here&amp;gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 11:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623118#M1089014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T11:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT  - ENDSELECT RECORD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623119#M1089015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Fetch the all records and append to the internal table .&lt;/P&gt;&lt;P&gt;&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;Bharani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 11:57:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623119#M1089015</guid>
      <dc:creator>BH2408</dc:creator>
      <dc:date>2008-10-15T11:57:02Z</dc:date>
    </item>
    <item>
      <title>Re: SELECT  - ENDSELECT RECORD</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623120#M1089016</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 do one thing..&lt;/P&gt;&lt;P&gt;Declare an intermediate variable (work area) where you want to store the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then continue like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clear Variable(work area).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select .....................&lt;/P&gt;&lt;P&gt;" assign value to the variable of work area usign which you  want to perform your operions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After the final loop is over you will have your record in the variabl/work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now perform your operation using that variable/work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Oct 2008 11:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-endselect-record/m-p/4623120#M1089016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-15T11:57:46Z</dc:date>
    </item>
  </channel>
</rss>

