<?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 reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193747#M467958</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;in reports wat is the use of at new statement.all the possible ways to use this event.pls help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;P&gt;loki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Apr 2007 13:55:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-25T13:55:22Z</dc:date>
    <item>
      <title>reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193747#M467958</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;in reports wat is the use of at new statement.all the possible ways to use this event.pls help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;P&gt;loki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 13:55:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193747#M467958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T13:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193748#M467959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AT - control break &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variants: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. AT NEW f. &lt;/P&gt;&lt;P&gt;2. AT END OF f. &lt;/P&gt;&lt;P&gt;3. AT FIRST. &lt;/P&gt;&lt;P&gt;4. AT LAST. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 1 &lt;/P&gt;&lt;P&gt;AT NEW f. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Variant 2 &lt;/P&gt;&lt;P&gt;AT END OF f.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;f is a sub-field of an internal table or extract dataset (EXTRACT) which is being processed with LOOP, i.e. the variants 1 and 2 only make sense within a LOOP. &lt;/P&gt;&lt;P&gt;Both "AT NEW f." and "AT END OF f. " introduce processing blocks which are concluded by " ENDAT.". &lt;/P&gt;&lt;P&gt;These processing blocks are processed whenever the contents of a field f or a sub-field defined before f change as a result of processing with LOOP. "AT NEW f." begins a new group of (table) lines with the same contents as the field f while "AT END OF f." concludes such a group. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within the AT ... ENDAT processing of internal tables, all argument fields following f are filled with "*". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples &lt;/P&gt;&lt;P&gt;1. AT for sub-fields of an 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;DATA: BEGIN OF COMPANIES OCCURS 20, &lt;/P&gt;&lt;P&gt;        NAME(30), &lt;/P&gt;&lt;P&gt;        PRODUCT(20), &lt;/P&gt;&lt;P&gt;        SALES TYPE I, &lt;/P&gt;&lt;P&gt;      END   OF COMPANIES. &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt;LOOP AT COMPANIES. &lt;/P&gt;&lt;P&gt;  AT NEW NAME. &lt;/P&gt;&lt;P&gt;    NEW-PAGE. &lt;/P&gt;&lt;P&gt;    WRITE / COMPANIES-NAME. &lt;/P&gt;&lt;P&gt;  ENDAT. &lt;/P&gt;&lt;P&gt;  WRITE: / COMPANIES-PRODUCT, COMPANIES-SALES. &lt;/P&gt;&lt;P&gt;  AT END OF NAME. &lt;/P&gt;&lt;P&gt;    SUM. &lt;/P&gt;&lt;P&gt;    WRITE: / COMPANIES-NAME, COMPANIES-SALES. &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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The AT statements refer to the field COMPANIES-NAME.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 13:58:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193748#M467959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T13:58:01Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193749#M467960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;these are loop break statements.. &lt;/P&gt;&lt;P&gt; they are  at first&lt;/P&gt;&lt;P&gt;at new&lt;/P&gt;&lt;P&gt;at end of&lt;/P&gt;&lt;P&gt;at last.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new mean if a new record come what u need to do..&lt;/P&gt;&lt;P&gt;as long as u have same record it goes on..  when a new record come it goes to at end of..&lt;/P&gt;&lt;P&gt;at end of  states at end of new record what ur need to do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;before all these u need to sort the internal table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 14:09:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193749#M467960</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T14:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193750#M467961</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;lets say itab with fields &lt;/P&gt;&lt;P&gt;f1,f2,f3,f4. &lt;/P&gt;&lt;P&gt;a 1 b z&lt;/P&gt;&lt;P&gt;b 1 c s&lt;/P&gt;&lt;P&gt;b 1 f  v&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;At new f2.&lt;/P&gt;&lt;P&gt; write: / itab-f1,itab-f2,itab-f3,itab-f4.&lt;/P&gt;&lt;P&gt;endat.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;output:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  a 1 * *&lt;/P&gt;&lt;P&gt;  b 1 * *&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because &amp;lt;b&amp;gt;AT NEW f2&amp;lt;/b&amp;gt; will trigger for every and any change of the fields of left side to the fiield f2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;You can not access the fields right side to it. they will appear as * s.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 14:39:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193750#M467961</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T14:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193751#M467962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi nagam,&lt;/P&gt;&lt;P&gt;it means 3rd record ownt display, or it displays.any how 3rd field and 4th field wont&lt;/P&gt;&lt;P&gt;display.just clarify this pls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx &lt;/P&gt;&lt;P&gt;loki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 17:17:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193751#M467962</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T17:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193752#M467963</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;When you sort an extract dataset, control levels are defined in it. For general information about&lt;/P&gt;&lt;P&gt;control levels, refer to Processing Internal Tables in Loops [Page 299] The control level hierarchy&lt;/P&gt;&lt;P&gt;of an extract dataset corresponds to the sequence of the fields in the HEADER field group. After&lt;/P&gt;&lt;P&gt;sorting, you can use the AT statement within a loop to program statement blocks that the system&lt;/P&gt;&lt;P&gt;processes only at a control break, that is, when the control level changes.&lt;/P&gt;&lt;P&gt;AT NEW &amp;lt;f&amp;gt; | AT END OF &amp;lt;f&amp;gt;.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;A control break occurs when the value of the field &amp;lt;f&amp;gt; or a superior field in the current record has&lt;/P&gt;&lt;P&gt;a different value from the previous record (AT NEW) or the subsequent record (AT END). Field&lt;/P&gt;&lt;P&gt;&amp;lt;f&amp;gt; must be part of the HEADER field group.&lt;/P&gt;&lt;P&gt;If the extract dataset is not sorted, the AT... ENDAT block is never executed. Furthermore, all&lt;/P&gt;&lt;P&gt;extract records with the value HEX 00 in the field &amp;lt;f&amp;gt; are ignored when the control breaks are&lt;/P&gt;&lt;P&gt;determined.&lt;/P&gt;&lt;P&gt;The AT... ENDAT blocks in a loop are processed in the order in which they occur. This sequence&lt;/P&gt;&lt;P&gt;should be the same as the sort sequence. This sequence must not necessarily be the sequence&lt;/P&gt;&lt;P&gt;of the fields in the HEADER field group, but can also be the one determined in the SORT&lt;/P&gt;&lt;P&gt;statement.&lt;/P&gt;&lt;P&gt;If you have sorted an extract dataset by the fields &amp;lt;f1&amp;gt;, &amp;lt;f2&amp;gt;, ..., the processing of the control&lt;/P&gt;&lt;P&gt;levels should be written between the other control statements as follows:&lt;/P&gt;&lt;P&gt;LOOP.&lt;/P&gt;&lt;P&gt;AT FIRST.... ENDAT.&lt;/P&gt;&lt;P&gt;AT NEW &amp;lt;f1&amp;gt;....... ENDAT.&lt;/P&gt;&lt;P&gt;AT NEW &amp;lt;f2&amp;gt;....... ENDAT.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;AT &amp;lt;fgi&amp;gt;..... ENDAT.&lt;/P&gt;&lt;P&gt;&amp;lt;single line processing without control statement&amp;gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;AT END OF &amp;lt;f2&amp;gt;.... ENDAT.&lt;/P&gt;&lt;P&gt;AT END OF &amp;lt;f1&amp;gt;.... ENDAT.&lt;/P&gt;&lt;P&gt;AT LAST..... ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;You do not have to use all of the statement blocks listed here, but only the ones you require.&lt;/P&gt;&lt;P&gt;REPORT DEMO.&lt;/P&gt;&lt;P&gt;DATA: T1(4), T2 TYPE I.&lt;/P&gt;&lt;P&gt;FIELD-GROUPS: HEADER.&lt;/P&gt;&lt;P&gt;INSERT T2 T1 INTO HEADER.&lt;/P&gt;&lt;P&gt;T1 ='AABB'. T2 = 1. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='BBCC'. T2 = 2. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='AAAA'. T2 = 2. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='AABB'. T2 = 1. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='BBCC'. T2 = 2. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='AAAA'. T2 = 1. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='BBBB'. T2 = 1. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='AAAA'. T2 = 3. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;T1 ='AABB'. T2 = 1. EXTRACT HEADER.&lt;/P&gt;&lt;P&gt;SORT BY T1 T2.&lt;/P&gt;&lt;P&gt;LOOP.&lt;/P&gt;&lt;P&gt;AT FIRST.&lt;/P&gt;&lt;P&gt;WRITE 'Start of LOOP'.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;AT NEW T1.&lt;/P&gt;&lt;P&gt;WRITE / ' New T1:'.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;AT NEW T2.&lt;/P&gt;&lt;P&gt;WRITE / ' New T2:'.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;WRITE: /14 T1, T2.&lt;/P&gt;&lt;P&gt;AT END OF T2.&lt;/P&gt;&lt;P&gt;WRITE / 'End of T2'.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;AT END OF T1.&lt;/P&gt;&lt;P&gt;WRITE / 'End of T1'.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;AT LAST.&lt;/P&gt;&lt;P&gt;ULINE.&lt;/P&gt;&lt;P&gt;ENDAT.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;This program creates a sample extract, containing the fields of the HEADER field&lt;/P&gt;&lt;P&gt;group only. After the sorting process, the extract dataset has several control breaks&lt;/P&gt;&lt;P&gt;for the control levels T1 and T2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 17:33:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193752#M467963</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T17:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193753#M467964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will tell you one example ,please see the below code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : begin of i_vbap occurs 0,&lt;/P&gt;&lt;P&gt;       vbeln like vbap-vbeln,&lt;/P&gt;&lt;P&gt;       posnr like vbap-posnr,&lt;/P&gt;&lt;P&gt;       matnr like vbap-matnr,&lt;/P&gt;&lt;P&gt;       kwmeng like vbap-kwmeng,&lt;/P&gt;&lt;P&gt;       netpr like vbap-netpr,&lt;/P&gt;&lt;P&gt;       end of i_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data wa_vbap like line of  i_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data v_flag type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options s_vbeln for vbap-vbeln obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln&lt;/P&gt;&lt;P&gt;       posnr&lt;/P&gt;&lt;P&gt;       matnr&lt;/P&gt;&lt;P&gt;       kwmeng&lt;/P&gt;&lt;P&gt;       netpr from vbap&lt;/P&gt;&lt;P&gt;       into table i_vbap&lt;/P&gt;&lt;P&gt;       where vbeln in s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort i_vbap by vbeln posnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at i_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;move i_vbap to wa_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/2 'Order #',15 'Item #',28 'Material #',50 'Qty', 70 'Net value'.&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at new vbeln.&lt;/P&gt;&lt;P&gt;write:/2 wa_vbap-vbeln,15 wa_vbap-posnr,28 wa_vbap-matnr,&lt;/P&gt;&lt;P&gt;        47 wa_vbap-kwmeng,65 wa_vbap-netpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_flag = 'X'.&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_flag ne 'X'.&lt;/P&gt;&lt;P&gt;write:/15 wa_vbap-posnr,28 wa_vbap-matnr,&lt;/P&gt;&lt;P&gt;        47 wa_vbap-kwmeng,65 wa_vbap-netpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at end of vbeln.&lt;/P&gt;&lt;P&gt;sum.&lt;/P&gt;&lt;P&gt;skip 1.&lt;/P&gt;&lt;P&gt;write:/5 'Sub totals', 47 i_vbap-kwmeng,65 i_vbap-netpr.&lt;/P&gt;&lt;P&gt;skip 1.&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;skip 1.&lt;/P&gt;&lt;P&gt;sum.&lt;/P&gt;&lt;P&gt;write:/5 'Grand Totals',47 i_vbap-kwmeng,65 i_vbap-netpr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endat.&lt;/P&gt;&lt;P&gt;clear v_flag.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have two events called At new which we will be using within Internal Table ,and one more command On change of ( This one we can use anywhere).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One note : if you are working on Internal table events ,then try to use work area and pass the values from internal table to work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At new Command will trigger from Left to Right,while on change of will trigger from right-left.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward Points if it is Helpful.&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>Wed, 25 Apr 2007 17:43:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reports/m-p/2193753#M467964</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T17:43:05Z</dc:date>
    </item>
  </channel>
</rss>

