<?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: need hlep with some ABAP code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199894#M469915</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to have an endselect to close the loop.  The only time you can skip the endselect is if you are using a "SELECT SINGLE" statement; you wouldn't want that here because then you would only get one record from the table.  Yes, it will access the database each time through.&lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 May 2007 13:08:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-01T13:08:34Z</dc:date>
    <item>
      <title>need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199886#M469907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a situation in which I need to read data from a table but then I need to basically move a particular field associated with the following record to the previous record.  We are needing to placer the set-up time on the correct line.  right now it calculates it correctly but places it with the 2nd like when really it belongs to the 1st record&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 19:38:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199886#M469907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T19:38:57Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199887#M469908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there.  You could try something like this.  The only issue is that the first and second entries would end up with the same set-up time (unless you modify the code to set the value for the first record).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ztable into wa_table_line.&lt;/P&gt;&lt;P&gt;  if prev_table_line is INITIAL.&lt;/P&gt;&lt;P&gt;    move wa_table_line to prev_table_line.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;add code here if you want to change value of set_time for 1st record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    prev_table_line-set_time = wa_table_line-set_time.&lt;/P&gt;&lt;P&gt;    append prev_table_line to itab.&lt;/P&gt;&lt;P&gt;    move wa_table_line to prev_table_line.&lt;/P&gt;&lt;P&gt;  endif.  &lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;*add last record to table.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;add code here if you want to change value of set_time for last record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;append prev_table_line to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update ztable from table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;P&gt; - April King&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 20:02:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199887#M469908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T20:02:18Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199888#M469909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the values will never be initial just one off so counter 1 value should be counter 2.  I just don't know how to get it to grab the previous record&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 20:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199888#M469909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T20:07:30Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199889#M469910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you read from your table have a look at SY-TABIX.  Subtract 1 from this value and it will tell you the index of the previous record.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 20:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199889#M469910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T20:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199890#M469911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's basically what this code is doing.  You are looping through the database records using the select statement.  On the first loop, you just move the record to a work area (prev_table_line).  On each subsequent loop, you move the value of set_time from the current record to the previous record work area and then append that previous record to an internal table.  You then move the current record to the prevoius record work area.  This continues for each record.  After you've finished, you update the database table from your internal table.  Here's an example of how the select works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On pass 2 through the select,&lt;/P&gt;&lt;P&gt;prev_table_line contains record 1&lt;/P&gt;&lt;P&gt;wa_table_line contains record 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you are moving set_time from record 2 to record 1 when you say&lt;/P&gt;&lt;P&gt;prev_table_line-set_time = wa_table_line-set_time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this clear?&lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 20:14:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199890#M469911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T20:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199891#M469912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thsi is what i tried but my selcect returens no data to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from afru into WA_AFRU.&lt;/P&gt;&lt;P&gt;  if prev_table_line is INITIAL.&lt;/P&gt;&lt;P&gt;    move WA_AFRU to prev_table_line.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;add code here if you want to change value of set_time for 1st record&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    prev_table_line-ism02 = WA_AFRU-ism02.&lt;/P&gt;&lt;P&gt;    append prev_table_line to itab.&lt;/P&gt;&lt;P&gt;    move WA_AFRU to prev_table_line.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;*add last record to table.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;add code here if you want to change value of set_time for last record append prev_table_line to itab.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update afru from table itab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 20:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199891#M469912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T20:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199892#M469913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your code works for me.  Have you checked to make sure that there is data in table AFRU in your development client?  This is the exact code that I ran:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; TABLES: afru.&lt;/P&gt;&lt;P&gt; DATA:  itab TYPE STANDARD TABLE OF afru.&lt;/P&gt;&lt;P&gt; DATA: wa_afru TYPE afru.&lt;/P&gt;&lt;P&gt; DATA: prev_table_line TYPE afru.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT * FROM afru INTO wa_afru.&lt;/P&gt;&lt;P&gt;   IF prev_table_line IS INITIAL.&lt;/P&gt;&lt;P&gt;     MOVE wa_afru TO prev_table_line.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;     prev_table_line-ism02 = wa_afru-ism02.&lt;/P&gt;&lt;P&gt;     APPEND prev_table_line TO itab.&lt;/P&gt;&lt;P&gt;     MOVE wa_afru TO prev_table_line.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt; ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the end of this I had 8 entries in my itab.  Also check to make sure you have authorization to access that table.&lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 12:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199892#M469913</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T12:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199893#M469914</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't have an endselect.     is this making a call to the database for every pass?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199893#M469914</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199894#M469915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to have an endselect to close the loop.  The only time you can skip the endselect is if you are using a "SELECT SINGLE" statement; you wouldn't want that here because then you would only get one record from the table.  Yes, it will access the database each time through.&lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:08:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199894#M469915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199895#M469916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are your data staments correct?  I get short dumps using your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199895#M469916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199896#M469917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I didn't get any errors when I checked my syntax, and I didn't get any runtime errors either.  &lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:10:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199896#M469917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199897#M469918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Would it be more effiecient then to just do I select to get all the data i need then loop at this internal table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:13:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199897#M469918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199898#M469919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what version are you running?  Would that make a difference&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:14:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199898#M469919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199899#M469920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you try to run it?  I didn't get any errors either but when I run it gets through 1 pass and then bombs at the 2nd round&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199899#M469920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199900#M469921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, I ran it.  I put a write statement after the endselect and set a break point there so I could check the itab for data.  The version should not make a difference, as it is just a basic select statement.  &lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:33:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199900#M469921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:33:37Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199901#M469922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;that is odd.  I copied your code and get a short dump.  Very odd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 13:41:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199901#M469922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T13:41:20Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199902#M469923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is your dump?  What is the error message?&lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 16:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199902#M469923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T16:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199903#M469924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I moved it the code out of the user exit so now I have below which works fine but doens't wrtied the very last record.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT * into table wa_afru from afru where&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ersda &amp;gt; '01/01/2005'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;rueck = 0000000502.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     loop at wa_afru. &lt;/P&gt;&lt;P&gt;       IF prev_table_line IS INITIAL.&lt;/P&gt;&lt;P&gt;         MOVE wa_afru TO prev_table_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;         if prev_table_line-rueck = wa_afru-rueck.&lt;/P&gt;&lt;P&gt;           prev_table_line-ism01 = wa_afru-ism01.&lt;/P&gt;&lt;P&gt;           APPEND prev_table_line TO itab.&lt;/P&gt;&lt;P&gt;           MOVE wa_afru TO prev_table_line.&lt;/P&gt;&lt;P&gt;         else.&lt;/P&gt;&lt;P&gt;           MOVE wa_afru TO prev_table_line.&lt;/P&gt;&lt;P&gt;           APPEND prev_table_line TO itab.&lt;/P&gt;&lt;P&gt;         endif.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;     endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 May 2007 21:01:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199903#M469924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-01T21:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199904#M469925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.  You need to add this line after the ENDLOOP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND prev_table_line TO itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will include the last record in your table.&lt;/P&gt;&lt;P&gt; - April&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 12:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199904#M469925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T12:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: need hlep with some ABAP code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199905#M469926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for all your help.  I've awarded points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 May 2007 13:53:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-hlep-with-some-abap-code/m-p/2199905#M469926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-02T13:53:51Z</dc:date>
    </item>
  </channel>
</rss>

