<?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: AT end--at in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299787#M1025335</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make sure gjhar should be next field to Belnr in the internal table.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;belnr,gjhar,.....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;sort itab by belnr gjhar.

loop at itab.

at end of gjhar.
"here you can code your logic. 
endat.

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Aug 2008 12:27:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-05T12:27:36Z</dc:date>
    <item>
      <title>AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299783#M1025331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gurus,&lt;/P&gt;&lt;P&gt;I have a typical situation. I want to perform certain logic whenever a new document is encountered&lt;/P&gt;&lt;P&gt;in a internal table. The new document definition is a combination of BELNR and GHJAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal table i_out has following data for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BELNR......GJHAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;225........2003&lt;/P&gt;&lt;P&gt;225........2003&lt;/P&gt;&lt;P&gt;226........2003&lt;/P&gt;&lt;P&gt;226........2005&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in above case, there are total three invoice documents:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) 225....2003&lt;/P&gt;&lt;P&gt;2) 226....2003&lt;/P&gt;&lt;P&gt;3) 226....2005&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the logic like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;sort i_out by belnr gjhar.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;loop at i_out.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;at end of belnr.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;perform total_amount_cal_for_individual_invoices.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;end at.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;endloop.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if I do like this, then total amount calculation for individual invoices is done only two time based on belnr of 225 and 226. I want the logic to consider GJHAR also along with BELNR. If the GJHAR is different for the same invoice number then it should consider it as a different document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:18:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299783#M1025331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299784#M1025332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just work AT the last key, not the first, that will fulfill your requirement.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT END OF gjahr
PERFORM total_amount_cal_for_individual_invoices.
ENDAT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;A change of BELNR causes a change of GJAHR, just check that BELNR is before GJAHR in the table, as it is in BKPF ([Processing Table Entries in Loops|http://help.sap.com/erp2005_ehp_03/helpdata/EN/fc/eb381a358411d1829f0000e829fbfe/frameset.htm])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:20:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299784#M1025332</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-08-05T12:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299785#M1025333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Just change the &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;at end of belnr&lt;/STRONG&gt;   to   &lt;STRONG&gt;at end of gjahr.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Doing so, the combination of belnr and gjahr is taken into consideration&lt;/STRONG&gt;. So, whenever the combination changes, the required calculation is performed under &lt;STRONG&gt;at end of&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now your code looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;sort i_out by belnr gjhar.

loop at i_out.

at end of gjahr.
perform total_amount_cal_for_individual_invoices.
end at.

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:21:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299785#M1025333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299786#M1025334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At end of &lt;STRONG&gt;gjhar&lt;/STRONG&gt; not at end of belnr in your case...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;change it and check it out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:25:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299786#M1025334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299787#M1025335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;make sure gjhar should be next field to Belnr in the internal table.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;belnr,gjhar,.....&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;sort itab by belnr gjhar.

loop at itab.

at end of gjhar.
"here you can code your logic. 
endat.

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:27:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299787#M1025335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:27:36Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299788#M1025336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;as also told by others do it as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;sort i_out by belnr gjhar.

loop at i_out.

at end of gjhar.
perform total_amount_cal_for_individual_invoices.
end at.

endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As here it will take the combination of belnr gjhar where as in your previous case it was only considering for belnr .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299788#M1025336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299789#M1025337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;uset statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at end of gjahr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also replace your routine, with just sum statement to get the total.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to help for     SUM   statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299789#M1025337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299790#M1025338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at end og gjhar is not going to work because if the internal tables has data as follows then it would be a problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;225........2003&lt;/P&gt;&lt;P&gt;225........2003&lt;/P&gt;&lt;P&gt;226........2003&lt;/P&gt;&lt;P&gt;226........2005&lt;/P&gt;&lt;P&gt;227........2005&lt;/P&gt;&lt;P&gt;228........2005 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So fi I use at end of gjhar, then it would do the perform for only two documents, when it should do for actually for five.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) 225....2003&lt;/P&gt;&lt;P&gt;2) 226....2003&lt;/P&gt;&lt;P&gt;3) 226....2005&lt;/P&gt;&lt;P&gt;4) 227....2005&lt;/P&gt;&lt;P&gt;5) 228....2005&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide any insights...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:45:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299790#M1025338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299791#M1025339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AT end of gjhar will not work because if I have following situation, then instead of doing perform for five documents separately it will do only for two based on 2003 and 2005&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;225........2003&lt;/P&gt;&lt;P&gt;225........2003&lt;/P&gt;&lt;P&gt;226........2003&lt;/P&gt;&lt;P&gt;226........2005&lt;/P&gt;&lt;P&gt;227........2005&lt;/P&gt;&lt;P&gt;228........2005&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide any insight&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 12:47:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299791#M1025339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T12:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299792#M1025340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;AT END OF will take into account the field you specify and all fields before it. So in your case the AT END OF GJAHR will work correctly. You could also change the structure of your table and make GJAHR the first field and BELNR the second and keep the AT logic as you had it. Either way would work, just give the documents in a different order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gert.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:17:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299792#M1025340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299793#M1025341</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;inspite of control break statement use following logic:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_itab by belnr gjhar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;delete adjacent duplicates from it_itab comparing belnr gjhar.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;it will give you your desired record in it_itab. than&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT it_itab INTO wa_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   your calculation.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:45:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299793#M1025341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299794#M1025342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do your calculation that the sum before the at end &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at itab..

sum = sum + field.

  at end of field2.
    write: sum.
    clear sum.
  endat.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:49:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299794#M1025342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299795#M1025343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajesh, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              at end of GJAHR will work properly and it performs for 5 times. because &lt;STRONG&gt;at end of&lt;/STRONG&gt; always triger when the given field value changes (GJAHR) or its left hand side field value changes (BELNR).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;BELNR  GJAHR&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;225........2003    &lt;/P&gt;&lt;P&gt;225........2003    &amp;lt;--1&lt;/P&gt;&lt;P&gt;226........2003    &amp;lt;--2&lt;/P&gt;&lt;P&gt;226........2005    &amp;lt;--3&lt;/P&gt;&lt;P&gt;227........2005    &amp;lt;--4&lt;/P&gt;&lt;P&gt;228........2005    &amp;lt;--5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have placed the arrows whenever AT END OF GJAHR triggers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st time it trigger coz BELNR (225) is the last occurance.&lt;/P&gt;&lt;P&gt;2nd time it trigger coz GJAHR(2003) is the last occurance.&lt;/P&gt;&lt;P&gt;3rd time it trigger coz BELNR (226) is the last occurance.&lt;/P&gt;&lt;P&gt;4th time it trigger coz BELNR (227) is the last occurance.&lt;/P&gt;&lt;P&gt;5th time it trigger coz GJAHR (2005) is the last occurance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;removed_by_moderator&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Khan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Julius Bussche on Sep 1, 2008 8:35 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:52:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299795#M1025343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:52:11Z</dc:date>
    </item>
    <item>
      <title>Re: AT end--at</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299796#M1025344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As i wrote, AT END OF GJAHR will work, if BELNR is before in SORT order AND in structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-end-at/m-p/4299796#M1025344</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-08-05T14:17:27Z</dc:date>
    </item>
  </channel>
</rss>

