<?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: About selection-screen's question? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751384#M639958</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. User has to press ENTER,&lt;/P&gt;&lt;P&gt;    just after entering / selecting via F4,&lt;/P&gt;&lt;P&gt;    the material number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This is one way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Just copy paste.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK BLK_D WITH FRAME TITLE TEXT-004.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MATNR TYPE RESB-MATNR. "Material&lt;/P&gt;&lt;P&gt;PARAMETERS: P_BDMNG LIKE RESB-BDMNG. "Request Qty&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MEINS LIKE RESB-MEINS.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BLK_D.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE MEINS&lt;/P&gt;&lt;P&gt;  INTO P_MEINS&lt;/P&gt;&lt;P&gt;  FROM MARA&lt;/P&gt;&lt;P&gt;  WHERE MATNR = P_MATNR.&amp;lt;/b&amp;gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Aug 2007 09:05:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-31T09:05:01Z</dc:date>
    <item>
      <title>About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751373#M639947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear gurus:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declare a screen like below:&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk_d WITH FRAME TITLE text-004.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_matnr TYPE resb-matnr. "Material&lt;/P&gt;&lt;P&gt;PARAMETERS: p_bdmng LIKE resb-bdmng. "Request Qty&lt;/P&gt;&lt;P&gt;PARAMETERS: p_meins LIKE resb-meins.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk_d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to achieve such an effect&amp;amp;#65306;&lt;/P&gt;&lt;P&gt;after i input a materical code to p_matnr, display the corresponding unit in p_meins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, when the user input the qty, them want know the unit of currently material. So i want show the unit in parameter(p_meins) after them input the p_matnr,but before them input the qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Shao Hui Young&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 06:58:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751373#M639947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T06:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751374#M639948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Write the Code in AT SELECTION SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;When user enter the value in p_matnr and press enter the other screen will take corresponding data.&lt;/P&gt;&lt;P&gt;Only thing to handle here is an event.Because unless an event is triggered thos field will not get filled, if user is using F4 then it will trigger. But if he is entering manually then need to press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:13:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751374#M639948</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2007-08-31T07:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751375#M639949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Shao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the following logic....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output on p_matnr.

select single matnr meins from resb where matnr in p_matnr.

move resb-meins to p_meins.
modify screen.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Sasidhar Reddy Matli.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751375#M639949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T07:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751376#M639950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasidhar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the code which just you give me .&lt;/P&gt;&lt;P&gt;but the system give me a error like this: "." expected after output.&lt;/P&gt;&lt;P&gt;It seemed as if can't put "on p_matnr" after "at selection-screen output"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful advice!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751376#M639950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T07:27:53Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751377#M639951</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;&amp;lt;b&amp;gt;at selection-screen output on p_matnr.&lt;/P&gt;&lt;P&gt;select single matnr meins from resb where matnr in p_matnr.&lt;/P&gt;&lt;P&gt;move resb-meins to p_meins.&lt;/P&gt;&lt;P&gt;modify screen.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if usefull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:28:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751377#M639951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T07:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751378#M639952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh:&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 advice first,&lt;/P&gt;&lt;P&gt;but it seem can't put the &amp;lt;font color=red&amp;gt;on p_matnr&amp;lt;/font&amp;gt; after &amp;lt;font color=red&amp;gt;at selection-screen output &amp;lt;/font&amp;gt;, my sap system give a error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:37:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751378#M639952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T07:37:26Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751379#M639953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk_d WITH FRAME TITLE text-004.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_matnr TYPE resb-matnr. "Material&lt;/P&gt;&lt;P&gt;PARAMETERS: p_bdmng LIKE resb-bdmng. "Request Qty&lt;/P&gt;&lt;P&gt;PARAMETERS: p_meins LIKE resb-meins.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk_d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;select meins into p_meins from resb where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;plz reward points if it helps.&lt;/P&gt;&lt;P&gt;rgds.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:53:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751379#M639953</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T07:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751380#M639954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sasidhar:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, when the user input the qty, them want know the unit of currently material. So i want show the unit in parameter(p_meins).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:58:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751380#M639954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T07:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751381#M639955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;the code i pasted before &amp;amp; the one iam pasting now wuld give the same result.&lt;/P&gt;&lt;P&gt;u have to use ;&lt;/P&gt;&lt;P&gt;at selection-screen  on p_matnr.&lt;/P&gt;&lt;P&gt;(if u use at selection-screen output on p_matnr u will get an error)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk_d WITH FRAME TITLE text-004.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_matnr TYPE resb-matnr. "Material&lt;/P&gt;&lt;P&gt;PARAMETERS: p_bdmng LIKE resb-bdmng. "Request Qty&lt;/P&gt;&lt;P&gt;PARAMETERS: p_meins LIKE resb-meins.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk_d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen  on p_matnr.&lt;/P&gt;&lt;P&gt;select single  meins into p_meins from resb where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;*move resb-meins to p_meins.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;plz reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 07:59:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751381#M639955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T07:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751382#M639956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abaper :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thk u first.&lt;/P&gt;&lt;P&gt;i have test your code, the unit will display after i push the execute button, But i want display the unit after i input the material code.&lt;/P&gt;&lt;P&gt;can l achieve?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all helpful advice~&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 08:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751382#M639956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T08:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751383#M639957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Amit:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, when the user input the qty, them want know the unit of currently material. So i want show the unit in parameter(p_meins) after them input the p_matnr,but before them input the qty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can I achieve??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 08:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751383#M639957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T08:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751384#M639958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi shao,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. User has to press ENTER,&lt;/P&gt;&lt;P&gt;    just after entering / selecting via F4,&lt;/P&gt;&lt;P&gt;    the material number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. This is one way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Just copy paste.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK BLK_D WITH FRAME TITLE TEXT-004.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MATNR TYPE RESB-MATNR. "Material&lt;/P&gt;&lt;P&gt;PARAMETERS: P_BDMNG LIKE RESB-BDMNG. "Request Qty&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MEINS LIKE RESB-MEINS.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BLK_D.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE MEINS&lt;/P&gt;&lt;P&gt;  INTO P_MEINS&lt;/P&gt;&lt;P&gt;  FROM MARA&lt;/P&gt;&lt;P&gt;  WHERE MATNR = P_MATNR.&amp;lt;/b&amp;gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 09:05:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751384#M639958</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T09:05:01Z</dc:date>
    </item>
    <item>
      <title>Re: About selection-screen's question?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751385#M639959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;ive already given the code in my first post .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk_d WITH FRAME TITLE text-004.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_matnr TYPE resb-matnr. "Material&lt;/P&gt;&lt;P&gt;PARAMETERS: p_bdmng LIKE resb-bdmng. "Request Qty&lt;/P&gt;&lt;P&gt;PARAMETERS: p_meins LIKE resb-meins.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk_d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;select meins into p_meins from resb where matnr = p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;when the user hits enter key the value for meins is displayed.&lt;/P&gt;&lt;P&gt;plz reward points if it helps&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 09:32:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-selection-screen-s-question/m-p/2751385#M639959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T09:32:48Z</dc:date>
    </item>
  </channel>
</rss>

