<?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: how to do a summarization with a dynamic table. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940265#M388306</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I change my philosophy of the program so with your help and the new philosophy i solve the trouble;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Feb 2007 11:07:30 GMT</pubDate>
    <dc:creator>philippe_gauthier</dc:creator>
    <dc:date>2007-02-21T11:07:30Z</dc:date>
    <item>
      <title>how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940256#M388297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I create my dynamic table for example:&lt;/P&gt;&lt;P&gt;&amp;lt;dyn_tab&amp;gt;&lt;/P&gt;&lt;P&gt;BUKRS  | GJAHR | KNDNR | VVP01 | VVP02 | VVP01N1 | VVP02N1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VVP01N1 and VVP02N1 are created by a dynamic calculation and it's corresponding to the field value VVP01 and VVP02 for the year before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also i have a second dynamic table&lt;/P&gt;&lt;P&gt;&amp;lt;dyn_tab1&amp;gt; with this structure:&lt;/P&gt;&lt;P&gt;BUKRS  | GJAHR | KNDNR | VVP01 | VVP02 |&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this table i collect all the data i need to my report. so i have many records with the same data. for my example, we will have these data into &amp;lt;dyn_tab1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1010 | 2006 | 1 | 100 | 200&lt;/P&gt;&lt;P&gt;1010 | 2006 | 1 | 100 | 200&lt;/P&gt;&lt;P&gt;1010 | 2006 | 1 | 100 | 200&lt;/P&gt;&lt;P&gt;1010 | 2006 | 1 | 100 | 200&lt;/P&gt;&lt;P&gt;1010 | 2007 | 1 | 100 | 200&lt;/P&gt;&lt;P&gt;1010 | 2007 | 1 | 100 | 200&lt;/P&gt;&lt;P&gt;1010 | 2007 | 1 | 100 | 200&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in first i would like to do the summarization by year. I would like to obtain&lt;/P&gt;&lt;P&gt;1010 | 2006 | 1 | 400 | 800&lt;/P&gt;&lt;P&gt;1010 | 2007 | 1 | 300 | 600&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if year = 2006.
&amp;lt;dyn_tab&amp;gt;-VVP01N1 = &amp;lt;dyn_tab&amp;gt;-VVP01
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;i don't understand which code i have to write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the second question, i would like to add data into my &amp;lt;dyn_tab&amp;gt; in the goods columns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Philippe Gauthier&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 18:19:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940256#M388297</guid>
      <dc:creator>philippe_gauthier</dc:creator>
      <dc:date>2007-02-20T18:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940257#M388298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Phillpie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to declare VVP01 &amp;amp;  VVP02 type p &amp;amp; then use collect statement.&lt;/P&gt;&lt;P&gt;your problem will be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try the following code in program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: begin of itab occurs 10,
        co(4) type c,
        year(4) type c,
        knd(1)  type c,
        vp01(10) type p,
        vp02(10) type p,
  end of itab.

  itab-co = '1010'.
  itab-year = '2006'.
  itab-knd  = '1'.
  itab-vp01 = 100.
  itab-vp02 = 200.
  collect itab.

  itab-co = '1010'.
  itab-year = '2006'.
  itab-knd  = '1'.
  itab-vp01 = 100.
  itab-vp02 = 200.
  collect itab.

  itab-co = '1010'.
  itab-year = '2006'.
  itab-knd  = '1'.
  itab-vp01 = 100.
  itab-vp02 = 200.
  collect itab.

  itab-co = '1010'.
  itab-year = '2006'.
  itab-knd  = '1'.
  itab-vp01 = 100.
  itab-vp02 = 200.
  collect itab.

  itab-co = '1000'.
  itab-year = '2007'.
  itab-knd  = '1'.
  itab-vp01 = 100.
  itab-vp02 = 200.
  collect itab.

  itab-co = '1000'.
  itab-year = '2007'.
  itab-knd  = '1'.
  itab-vp01 = 100.
  itab-vp02 = 200.
  collect itab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashvender&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 18:46:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940257#M388298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-20T18:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940258#M388299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philippe &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;ANSWER TO 1ST QUESTION&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------------------" /&gt;&lt;P&gt;&amp;lt;b&amp;gt;* Create another temporary dynamic table in the same way as you created for &amp;lt;DYN_TAB1&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This temporary dynamic table has same structure as &amp;lt;DYN-TAB1&amp;gt;. Name is &amp;lt;DYN_TEMP&amp;gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: &amp;lt;fs_tab&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN LOCAL COPY OF INITIAL LINE OF &amp;lt;dyn_tab1&amp;gt; TO &amp;lt;fs_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN LOCAL COPY OF INITIAL LINE OF &amp;lt;dyn_temp&amp;gt; TO &amp;lt;fs_temp&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sort &amp;lt;dyn_tab1&amp;gt; by BUKRS GJAHR KNDNR VVP01 VVP02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP at &amp;lt;dyn_tab1&amp;gt; into &amp;lt;fs_tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  at end of KNDNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    append &amp;lt;fs_temp&amp;gt; to &amp;lt;DYN_TEMP&amp;gt;. &lt;/P&gt;&lt;P&gt;    clear &amp;lt;fs_temp&amp;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;  &amp;lt;fs-temp&amp;gt;-bukrs = &amp;lt;fs-tab&amp;gt;-bukrs.&lt;/P&gt;&lt;P&gt;  &amp;lt;fs_temp&amp;gt;-GJAHR = &amp;lt;fs_tab&amp;gt;-GJAHR.&lt;/P&gt;&lt;P&gt;  &amp;lt;fs_temp&amp;gt;-KNDNR = &amp;lt;fs_tab&amp;gt;-kndnr.&lt;/P&gt;&lt;P&gt;  &amp;lt;fs_temp&amp;gt;-vvp01 = &amp;lt;fs_temp&amp;gt;-vvp01 + &amp;lt;fs_tab&amp;gt;-vvp01.&lt;/P&gt;&lt;P&gt;  &amp;lt;fs_temp&amp;gt;-vvp02 = &amp;lt;fs_temp&amp;gt;-vvp02 + &amp;lt;fs_tab&amp;gt;-vvp02.&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;Clear &amp;lt;DYN_TAB1&amp;gt;[].&lt;/P&gt;&lt;P&gt;&amp;lt;DYN_TAB1&amp;gt;[] = &amp;lt;DYN_TEMP&amp;gt;[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus &amp;lt;DYN_TAB1&amp;gt; has now all the aggregate information.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOTE: Answer to second question is on its way :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 19:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940258#M388299</guid>
      <dc:creator>raviprakash</dc:creator>
      <dc:date>2007-02-20T19:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940259#M388300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philippe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Can you elaborate a bit about your second question. I am unable to get what you wish there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Waiting for the reply :).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 19:50:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940259#M388300</guid>
      <dc:creator>raviprakash</dc:creator>
      <dc:date>2007-02-20T19:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940260#M388301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For my second question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i have the dynamic table &amp;lt;dyn_temp&amp;gt; with the summarized data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I would like to do. &lt;/P&gt;&lt;P&gt;Check the year:&lt;/P&gt;&lt;P&gt;- if it's the current year, the figure into &amp;lt;dyn_temp&amp;gt;-vvP01 into &amp;lt;dyn_table&amp;gt;-VVP01.&lt;/P&gt;&lt;P&gt;- if it's the year before, the figure which is loaded into the VVPnn field, i want to put it into the field VVPnnN1 to my target table, before define the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also my dynamic table can have different columns with different name of the fields. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 21:54:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940260#M388301</guid>
      <dc:creator>philippe_gauthier</dc:creator>
      <dc:date>2007-02-20T21:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940261#M388302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand how you solve my problem, i have yet one question more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my example, I describe my table has. But the reporting is very flexible, so when i collect data, i don't know the exact structure of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I write the code follow&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP at &amp;lt;dyn_tab1&amp;gt; into &amp;lt;fs_tab&amp;gt;.

at end of KNDNR.

append &amp;lt;fs_temp&amp;gt; to &amp;lt;DYN_TEMP&amp;gt;.
clear &amp;lt;fs_temp&amp;gt;.

endat.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;lt;b&amp;gt;My trouble is now&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;how can i define the structure of the fields values for the num and quantities fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Feb 2007 22:04:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940261#M388302</guid>
      <dc:creator>philippe_gauthier</dc:creator>
      <dc:date>2007-02-20T22:04:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940262#M388303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Philippe,&lt;/P&gt;&lt;P&gt;  I think i understood your problem. Even though you dont know the STRUCTURE of your FIELDS in the table, you can fill them. This is achieved by Jumping the exact location to the location you wish to fill data. Eg:- your sturctre is like:-&lt;/P&gt;&lt;P&gt;BUKRS | GJAHR | KNDNR | VVP01 | VVP02 | VVP01N1 | VVP02N1&lt;/P&gt;&lt;P&gt;(CHAR8) (char4)    (Int 4)      (int 3)     (int 3)     (int3)           (int3)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you can fill data for field KNDNR in two ways:-&lt;/P&gt;&lt;P&gt;1) &amp;lt;fs-tab&amp;gt;-kndnr = 10.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;2) &amp;lt;fs-tab&amp;gt;+12(*) =10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In second option it jumps 12 positions from starting position of the workarea and fills it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Ravi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 06:19:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940262#M388303</guid>
      <dc:creator>raviprakash</dc:creator>
      <dc:date>2007-02-21T06:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940263#M388304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;NOTE: &lt;/P&gt;&lt;P&gt;Please use the NUMERIC field as NUMC for Dynamic Fields. This way you can do perform the numeric functions on the field like  add substract or aggregate and also jump positions using :-&lt;/P&gt;&lt;P&gt;Eg:-&lt;/P&gt;&lt;P&gt;If &amp;lt;FS_TAB&amp;gt; has a structure name(char12), year(numc4) and we want to have 2004 as value in YEAR field, we can use:-&lt;/P&gt;&lt;P&gt;&amp;lt;fs_tab&amp;gt;+12(*) = '2004'. &lt;/P&gt;&lt;P&gt;This will jump 12 character from the 1st position of Field Symbol &amp;lt;fs_tab&amp;gt; and assign 2004 to YEAR field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 08:01:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940263#M388304</guid>
      <dc:creator>raviprakash</dc:creator>
      <dc:date>2007-02-21T08:01:11Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940264#M388305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if i understand, i can stock into a an internal table the sructure of my dynamic table by doing something like when i create it.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: begin of t_struct occurs 0,
          fieldname type fieldname,
          datatype type datatype_b,
          ref_field type LVC_RFNAME,
          ref_table type LVC_RTNAME,
       end of t_struct.

*...code before ...
  loop at it_fildcat
    t_struct-fieldname = it_fildcat-fieldname.
    t_struct-datatype = it_fildcat-datatype.
    t_struct-ref_field = it_fildcat-ref_field.
    t_struct-ref_table = it_fildcat-ref_table.

  endloop.
endform.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;with these informations i can struct the line of my dynamic table and to be abble to add data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you think about it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your return,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 08:35:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940264#M388305</guid>
      <dc:creator>philippe_gauthier</dc:creator>
      <dc:date>2007-02-21T08:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to do a summarization with a dynamic table.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940265#M388306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I change my philosophy of the program so with your help and the new philosophy i solve the trouble;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Feb 2007 11:07:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-a-summarization-with-a-dynamic-table/m-p/1940265#M388306</guid>
      <dc:creator>philippe_gauthier</dc:creator>
      <dc:date>2007-02-21T11:07:30Z</dc:date>
    </item>
  </channel>
</rss>

