<?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: Control break statement for more than one fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604885#M1437902</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But[ SAP documentation |http://help.sap.com/saphelp_nw04/helpdata/EN/fc/eb381a358411d1829f0000e829fbfe/content.htm]says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIRST
First line of the internal table

LAST
Last line of the internal table

NEW &amp;lt;f&amp;gt;
Beginning of a group of lines with the same contents in the field &amp;lt;f&amp;gt; and in the fields left of &amp;lt;f&amp;gt;

END Of &amp;lt;f&amp;gt;
End of a group of lines with the same contents in the field &amp;lt;f&amp;gt; and in the fields left of &amp;lt;f&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Feb 2010 10:08:13 GMT</pubDate>
    <dc:creator>SuhaSaha</dc:creator>
    <dc:date>2010-02-15T10:08:13Z</dc:date>
    <item>
      <title>Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604878#M1437895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I accomodate more than 2 fields in control break statement?&lt;/P&gt;&lt;P&gt;e.g. if I want to have control on these fields land1 plant , how can I use it in At statement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 09:29:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604878#M1437895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-15T09:29:11Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604879#M1437896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to handle them both separately.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT ... LAND1.

ENDAT.

AT ... PLANT.

ENDAT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Processing will go to AT ... -&amp;gt; ENDAT block each time it fulfill condition in AT operand (i.e NEW, LAST, FIRST etc).&lt;/P&gt;&lt;P&gt;If you want to use both field as one, you will need to create another field and hold there concatenation of LAND1 and PLANT. &lt;/P&gt;&lt;P&gt;Then you can catch it same way&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT ... JOIN_FIELD.   "join field here hold value of LAND1 + PLANT

ENDAT.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 09:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604879#M1437896</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-02-15T09:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604880#M1437897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you define the table as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
BEGIN OF ITAB OCCURS 0,
LAND TYPE LAND1,
WERKS TYPE WERKS_D,
END OF ITAB.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then AT NEW WERKS will be triggered whenever there is change in either LAND or WERKS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT ITAB.
AT NEW WERKS.
ENDAT.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;If you want to use both field as one, you will need to create another field and hold there concatenation of LAND1 and PLANT&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; is not required. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct me if i am wrong &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Feb 15, 2010 3:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 09:43:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604880#M1437897</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-15T09:43:25Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604881#M1437898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Control break statement considers every unique combination to the left of the field as a new entry. You just need to ensure that the data is sorted before using control breaks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 09:51:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604881#M1437898</guid>
      <dc:creator>neelavraj_duara2</dc:creator>
      <dc:date>2010-02-15T09:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604882#M1437899</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;the control break statements. work corresponding to the first column in the internal table.&lt;/P&gt;&lt;P&gt;if it is the second column in the internal tablee.&lt;/P&gt;&lt;P&gt;then it will consider the value of the first column and then the second column,.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sakshi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 09:54:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604882#M1437899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-15T09:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604883#M1437900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then AT NEW WERKS will be triggered whenever there is change in either LAND or WERKS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I don't think so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's say we have below data. Then AT NEW WERKS will get triggered.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LAND    WERKS
01         4030            "&amp;lt;- here (LAND is the same)
01         4030
01         4031           "&amp;lt;- here
01         4031 
01         4032           "&amp;lt;-  here
01         4032          
02         5030          "&amp;lt;- here only LAND and WERKS changes togeter
02         .....
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:04:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604883#M1437900</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-02-15T10:04:10Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604884#M1437901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need to have control on both the fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:05:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604884#M1437901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-15T10:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604885#M1437902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But[ SAP documentation |http://help.sap.com/saphelp_nw04/helpdata/EN/fc/eb381a358411d1829f0000e829fbfe/content.htm]says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FIRST
First line of the internal table

LAST
Last line of the internal table

NEW &amp;lt;f&amp;gt;
Beginning of a group of lines with the same contents in the field &amp;lt;f&amp;gt; and in the fields left of &amp;lt;f&amp;gt;

END Of &amp;lt;f&amp;gt;
End of a group of lines with the same contents in the field &amp;lt;f&amp;gt; and in the fields left of &amp;lt;f&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:08:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604885#M1437902</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-15T10:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604886#M1437903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEW &amp;lt;f&amp;gt;&lt;/P&gt;&lt;P&gt;Beginning of a group of lines with the same contents in the field &amp;lt;f&amp;gt; and in the fields left of &amp;lt;f&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Exactly, in the above example whenever WERKS have same value for all rows, LAND will always have same too, not vice versa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LAND WERKS&lt;/P&gt;&lt;P&gt;01         4030            "&amp;lt;- begining of line with same content of WERKS and same content of LAND (field left of WERKS)&lt;/P&gt;&lt;P&gt;01         4030&lt;/P&gt;&lt;P&gt;01         4031 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just say what I know from authopsy &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604886#M1437903</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-02-15T10:22:30Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604887#M1437904</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;Suhas is correct here. &lt;STRONG&gt;Here 'At new WERKS' will be triggered if there is a change in LAND1 or WERKS or BOTH.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In general, At new (f) will ne triggered if there is a change in any of the field contents declared before the field used in at new statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:30:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604887#M1437904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-15T10:30:44Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604888#M1437905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before applying the control break statements,&lt;/P&gt;&lt;P&gt;Please read the documentation and try once.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604888#M1437905</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-02-15T10:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604889#M1437906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Suhas is correct here. &lt;STRONG&gt;Here 'At new WERKS' will be triggered if there is a change in LAND1 or WERKS or BOTH.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; In general, At new (f) will ne triggered if there is a change in any of the field contents declared before the field used in at new statement.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Regards,&lt;/P&gt;&lt;P&gt;&amp;gt; Ganga&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok I get what you mean, but one correction. If WEKRS changes this means that either same LAND1 is used or new LAND1 applies.&lt;/P&gt;&lt;P&gt;So correct is that AT NEW WERKS is executed whenever WERKS or BOTH change (beacasue when LAND1 changes WERKS must change too).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;@Suhas,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apologizes for insisting on my theory. I simply misunderstood you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:42:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604889#M1437906</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-02-15T10:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604890#M1437907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No apologies please. In fact i should have re-phrased my statement correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:45:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604890#M1437907</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-15T10:45:36Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604891#M1437908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Whoever faults, it's good we can agree on correct anwser, as there should be only one right:)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 10:50:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604891#M1437908</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-02-15T10:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Control break statement for more than one fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604892#M1437909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Suhas seems to be correct. Thanks for all your help &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Feb 2010 13:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-break-statement-for-more-than-one-fields/m-p/6604892#M1437909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-15T13:28:05Z</dc:date>
    </item>
  </channel>
</rss>

