<?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: internal table control events and difference in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059642#M724679</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONTROL STATEMENTS.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Control Break Statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Control break statements are used to create statement blocks which process only specific table lines the LOOP &amp;#150; ENDLOOP block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You open such a statement block with the control level statement AT and close it with the control level statement ENDAT. The syntax is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table should be sorted when you use control-break statements&lt;/P&gt;&lt;P&gt;You can break the sequential access of internal tables by using these statements.&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;At first.&lt;/P&gt;&lt;P&gt;&amp;lt;Statement block&amp;gt;&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the first statement to get executed inside the loop (remember control break statements are applicable only inside the loop)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in this block you can write or process those statements which you want to get executed when the loop starts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At New carrid.&lt;/P&gt;&lt;P&gt;Write:/ carrid.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;In this case whenever the new carrid is reached, carrid will be written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At End of carrid.&lt;/P&gt;&lt;P&gt;Uline.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case whenever the end of carrid is reached, a line will be drawn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Last.&lt;/P&gt;&lt;P&gt;Write:/ &amp;#145;Last Record is reached&amp;#146;.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processing of statements within this block is done when entire processing of entire internal table is over. Usually used to display grand totals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use either all or one of the above control break statements with in the loop for processing internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At end of carrid.&lt;/P&gt;&lt;P&gt;Sum.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In above case the statement SUM (applicable only within AT-ENDAT) will sum up all the numeric fields in internal table and result is stored in same internal table variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ON CHANGE OF f.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executes the processing block enclosed by the "ON CHANGE OF f" and "ENDON" statements whenever the contents of the field f change (control break processing).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally, you use the statement to manipulate database fields during GET events or SELECT/ENDSELECT processing.&lt;/P&gt;&lt;P&gt;ON CHANGE OF is unsuitable for recognizing control levels in loops of this type because it always creates a global auxiliary field which is used to check for changes. This global auxiliary field is only changed in the relevant ON CHANGE OF statement. It is not reset when the processing enters loops or subroutines, so unwanted effects can occur if the loop or subroutine is executed again. Also, since it is set to its initial value when created (like any other field), any ON CHANGE OF processing will be executed after the first test, unless the contents of the field concerned happen to be identical to the initial value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA T100_WA TYPE T100.&lt;/P&gt;&lt;P&gt;SELECT * FROM T100&lt;/P&gt;&lt;P&gt;INTO T100_WA&lt;/P&gt;&lt;P&gt;WHERE SPRSL = SY-LANGU AND&lt;/P&gt;&lt;P&gt;MSGNR &amp;lt; '010'&lt;/P&gt;&lt;P&gt;ORDER BY PRIMARY KEY.&lt;/P&gt;&lt;P&gt;ON CHANGE OF T100_WA-ARBGB.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;WRITE: / '**&lt;STRONG&gt;', T100_WA-ARBGB, '&lt;/STRONG&gt;**'.&lt;/P&gt;&lt;P&gt;ENDON.&lt;/P&gt;&lt;P&gt;WRITE: / T100_WA-MSGNR, T100_WA-TEXT.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Displays all messages with their numbers in the logon language, provided the number is less than '010'.&lt;/P&gt;&lt;P&gt;Each time the message class changes, it is output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below thread for more details.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="401341"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;maha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Dec 2007 05:24:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-05T05:24:24Z</dc:date>
    <item>
      <title>internal table control events and difference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059640#M724677</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 want to know abt internal table contrl events like at new at end of etc&lt;/P&gt;&lt;P&gt;there are abt five events please let me know all five and diffrence between all and where can we use sum for this events also there is a fifth event please let me know its name and difference from at new&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new&lt;/P&gt;&lt;P&gt;at endof&lt;/P&gt;&lt;P&gt;at last&lt;/P&gt;&lt;P&gt;at first&lt;/P&gt;&lt;P&gt;? fifth?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 04:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059640#M724677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-05T04:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: internal table control events and difference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059641#M724678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;look at this program&lt;/P&gt;&lt;P&gt;REPORT  zinternaltable.&lt;/P&gt;&lt;P&gt;TYPES:BEGIN OF itab,&lt;/P&gt;&lt;P&gt;      num TYPE i,&lt;/P&gt;&lt;P&gt;      name(10) TYPE c,&lt;/P&gt;&lt;P&gt;      amt type i,&lt;/P&gt;&lt;P&gt;      END OF itab.&lt;/P&gt;&lt;P&gt;DATA : wa_itab TYPE itab,&lt;/P&gt;&lt;P&gt;       it_itab TYPE STANDARD TABLE OF itab.&lt;/P&gt;&lt;P&gt;DATA : v_lines TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 1.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'nag'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 1000.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 1.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'nag'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 2000.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 1.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'nag'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 1500.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 2.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'sri'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 500.&lt;/P&gt;&lt;P&gt;append wa_itab tO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 2.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'sri'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 600.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 2.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'sri'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 700.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 3.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'ganesh'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 1200.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 3.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'ganesh'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 1300.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 3.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'ganesh'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 1400.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 4.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'suresh'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 900.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_itab-num = 4.&lt;/P&gt;&lt;P&gt;wa_itab-name = 'suresh'.&lt;/P&gt;&lt;P&gt;wa_itab-amt = 300.&lt;/P&gt;&lt;P&gt;append wa_itab TO it_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort it_itab.&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;at first.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'details of sales order:'.&lt;/P&gt;&lt;P&gt;uline.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;at new num.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'serial num:', wa_itab-num.&lt;/P&gt;&lt;P&gt;uline.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; wa_itab-num , wa_itab-name , wa_itab-amt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at end of num.&lt;/P&gt;&lt;P&gt;uline.&lt;/P&gt;&lt;P&gt;sum.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'total amount:',wa_itab-amt.&lt;/P&gt;&lt;P&gt;uline.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;at last.&lt;/P&gt;&lt;P&gt;sum.&lt;/P&gt;&lt;P&gt;uline.&lt;/P&gt;&lt;P&gt;write:/ 'grand total:',wa_itab-amt.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;describe table it_itab lines  v_lines.&lt;/P&gt;&lt;P&gt;another control break statement is&lt;/P&gt;&lt;P&gt;on change of: u can use this one out side of the loop&lt;/P&gt;&lt;P&gt;means in select endselect u can use this one&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward for use ful points&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 04:43:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059641#M724678</guid>
      <dc:creator>paruchuri_nagesh</dc:creator>
      <dc:date>2007-12-05T04:43:21Z</dc:date>
    </item>
    <item>
      <title>Re: internal table control events and difference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059642#M724679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;CONTROL STATEMENTS.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Control Break Statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Control break statements are used to create statement blocks which process only specific table lines the LOOP &amp;#150; ENDLOOP block.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You open such a statement block with the control level statement AT and close it with the control level statement ENDAT. The syntax is as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table should be sorted when you use control-break statements&lt;/P&gt;&lt;P&gt;You can break the sequential access of internal tables by using these statements.&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;At first.&lt;/P&gt;&lt;P&gt;&amp;lt;Statement block&amp;gt;&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the first statement to get executed inside the loop (remember control break statements are applicable only inside the loop)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in this block you can write or process those statements which you want to get executed when the loop starts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At New carrid.&lt;/P&gt;&lt;P&gt;Write:/ carrid.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;In this case whenever the new carrid is reached, carrid will be written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At End of carrid.&lt;/P&gt;&lt;P&gt;Uline.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case whenever the end of carrid is reached, a line will be drawn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Last.&lt;/P&gt;&lt;P&gt;Write:/ &amp;#145;Last Record is reached&amp;#146;.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processing of statements within this block is done when entire processing of entire internal table is over. Usually used to display grand totals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use either all or one of the above control break statements with in the loop for processing internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At end of carrid.&lt;/P&gt;&lt;P&gt;Sum.&lt;/P&gt;&lt;P&gt;Endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In above case the statement SUM (applicable only within AT-ENDAT) will sum up all the numeric fields in internal table and result is stored in same internal table variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;ON CHANGE OF f.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Executes the processing block enclosed by the "ON CHANGE OF f" and "ENDON" statements whenever the contents of the field f change (control break processing).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally, you use the statement to manipulate database fields during GET events or SELECT/ENDSELECT processing.&lt;/P&gt;&lt;P&gt;ON CHANGE OF is unsuitable for recognizing control levels in loops of this type because it always creates a global auxiliary field which is used to check for changes. This global auxiliary field is only changed in the relevant ON CHANGE OF statement. It is not reset when the processing enters loops or subroutines, so unwanted effects can occur if the loop or subroutine is executed again. Also, since it is set to its initial value when created (like any other field), any ON CHANGE OF processing will be executed after the first test, unless the contents of the field concerned happen to be identical to the initial value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA T100_WA TYPE T100.&lt;/P&gt;&lt;P&gt;SELECT * FROM T100&lt;/P&gt;&lt;P&gt;INTO T100_WA&lt;/P&gt;&lt;P&gt;WHERE SPRSL = SY-LANGU AND&lt;/P&gt;&lt;P&gt;MSGNR &amp;lt; '010'&lt;/P&gt;&lt;P&gt;ORDER BY PRIMARY KEY.&lt;/P&gt;&lt;P&gt;ON CHANGE OF T100_WA-ARBGB.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;WRITE: / '**&lt;STRONG&gt;', T100_WA-ARBGB, '&lt;/STRONG&gt;**'.&lt;/P&gt;&lt;P&gt;ENDON.&lt;/P&gt;&lt;P&gt;WRITE: / T100_WA-MSGNR, T100_WA-TEXT.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Displays all messages with their numbers in the logon language, provided the number is less than '010'.&lt;/P&gt;&lt;P&gt;Each time the message class changes, it is output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below thread for more details.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="401341"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;maha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 05:24:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059642#M724679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-05T05:24:24Z</dc:date>
    </item>
    <item>
      <title>Re: internal table control events and difference</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059643#M724680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi maha&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the difference between on change of and at new?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;rinku&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 06:02:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-control-events-and-difference/m-p/3059643#M724680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-05T06:02:48Z</dc:date>
    </item>
  </channel>
</rss>

