<?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: pass 2 values in a variable. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868765#M1138287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;*--global data declaration---------------*
types : begin of st_fun,
          func type c,
        end of st_fun.
data : t_fun type standard table of st_fun,
          s_fun type st_fun.   
*------------------------------------------------*
PARAMETERS: rb_c1 radiobutton group rb1, 
            rb_c2 radiobutton group rb1,
            rb_c3 RADIOBUTTON GROUP rb1. 

if rb_c1 = 'X'.
       s_fun-funct = '0'.
       append s_fun to t_fun.
       perform goods_1.

elseif rb_c2 = 'X'.
       s_fun-funct = '1'.
       append s_fun to t_fun.
       perform goods_1.

else .
       s_fun-funct = '0'.
       append s_fun to t_fun.

       s_fun-funct = '1'.
       append s_fun to t_fun.
       perform goods_1.
endif.

form goods_1. " +you can use tables tt like t_fun but not needed as declared globally.+
*----------------
*--------------------
*-------------------
         select aa bb cc from xyz 
                                into table t_table
                                for all entries in t_fun
                                where func = t_fun-func.
         if sy-subrc &amp;lt;&amp;gt; '0'
             "--------
*--------------------
         endif.
endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help... there are so many methods.. you can also use that select option method as already mentioned in this thread...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Nov 2008 12:12:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-19T12:12:20Z</dc:date>
    <item>
      <title>pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868758#M1138280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ABAPers,&lt;/P&gt;&lt;P&gt;This is my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(three radio buttons defined )&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:  rb_c1 radiobutton group rb1.   **zero&lt;/P&gt;&lt;P&gt;PARAMETERS:  rb_c2 radiobutton group rb1.   **one&lt;/P&gt;&lt;P&gt;PARAMETERS:  rb_c3 RADIOBUTTON GROUP rb1.   **both&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if rb_c1 = 'X'.&lt;/P&gt;&lt;P&gt;  funct = '0'.&lt;/P&gt;&lt;P&gt;  perform goods_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(the form goods_1 fetches data from a table corresponding to the value of u201Cfunctu201D)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  elseif rb_c2 = 'X'.&lt;/P&gt;&lt;P&gt;    funct = '1'.&lt;/P&gt;&lt;P&gt;    perform goods_1.&lt;/P&gt;&lt;P&gt;    else .&lt;/P&gt;&lt;P&gt;funct = ***********************&lt;/P&gt;&lt;P&gt;&lt;EM&gt;((here I want to pass both 0 and 1 to funct,so that it fetches all the records with respect to both u20190u2019 and u20181u2019 from the table ))&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      perform goods_1.&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Is it Possible ?&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 09:53:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868758#M1138280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T09:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868759#M1138281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adhi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can you store two values in a single variable at a time. Better you go another logic.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;elseif rb_c2 = 'X'.&lt;/P&gt;&lt;P&gt;funct = '1'.&lt;/P&gt;&lt;P&gt;perform goods_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else .&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use select statement here based on condition where funct ='0' or funct = '1'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Nitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 09:58:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868759#M1138281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T09:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868760#M1138282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can only put 1 value in a variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to define an internal table for storing the 2 values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;hans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 09:59:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868760#M1138282</guid>
      <dc:creator>h_senden2</dc:creator>
      <dc:date>2008-11-19T09:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868761#M1138283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi deepan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           instead, you use range table when you are passing two values to functional module.&lt;/P&gt;&lt;P&gt;           for as it is solution is call that function module twice by giving two values as constants to function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 10:12:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868761#M1138283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T10:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868762#M1138284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;You can do in this way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types:&lt;/P&gt;&lt;P&gt;BEGIN OF x_f,&lt;/P&gt;&lt;P&gt;         sign(1)   TYPE c,          "inclusive/exclusive&lt;/P&gt;&lt;P&gt;         option(2) TYPE c,        "less/greater/between/eq&lt;/P&gt;&lt;P&gt;         low       TYPE ebeln,         "starting value.&lt;/P&gt;&lt;P&gt;         high      TYPE ebeln,         "ending value&lt;/P&gt;&lt;P&gt;       END OF x_f.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_f     TYPE STANDARD TABLE OF x_f,&lt;/P&gt;&lt;P&gt;        wa_f  type x_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;else.&lt;/P&gt;&lt;P&gt;wa_f-low = '0'.&lt;/P&gt;&lt;P&gt;append wa_f to i_f.&lt;/P&gt;&lt;P&gt;wa_f-low = '1'.&lt;/P&gt;&lt;P&gt;append wa_f to i_f.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the selection logic in the where condition use ....... field in i_F instead of field = func.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 10:27:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868762#M1138284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T10:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868763#M1138285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;tables : VBAK.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ranges : func for VBAK-VBTYP.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: rb_c1 radiobutton group rb1. **zero&lt;/P&gt;&lt;P&gt;PARAMETERS: rb_c2 radiobutton group rb1. **one&lt;/P&gt;&lt;P&gt;PARAMETERS: rb_c3 RADIOBUTTON GROUP rb1. **both&lt;/P&gt;&lt;P&gt;if rb_c1 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-low = '0'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-sign = 'I'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-option = 'EQ'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;clear funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;perform goods_1.&lt;/P&gt;&lt;P&gt;(the form goods_1 fetches data from a table corresponding to the value of u201Cfunctu201D)&lt;/P&gt;&lt;P&gt;elseif rb_c2 = 'X'.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-low = '1'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-sign = 'I'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-option = 'EQ'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;clear funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;perform goods_1.&lt;/P&gt;&lt;P&gt;else .&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-low = '0'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-sign = 'I'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-option = 'EQ'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;clear funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-low = '1'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-sign = 'I'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;funct-option = 'EQ'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;append funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;clear funct.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;perform goods_1.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 10:38:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868763#M1138285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T10:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868764#M1138286</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; You can only put 1 value in a variable.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; You have to define an internal table for storing the 2 values.&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; hans&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you could use a structure with 2 fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;BEGIN OF my_struc,
  field1 TYPE c,
  field2 TYPE c,
END OF my_struc.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you really want two values, you'll have to wait for the development of quantum computing and use quantum superposition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 11:37:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868764#M1138286</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-11-19T11:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868765#M1138287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;*--global data declaration---------------*
types : begin of st_fun,
          func type c,
        end of st_fun.
data : t_fun type standard table of st_fun,
          s_fun type st_fun.   
*------------------------------------------------*
PARAMETERS: rb_c1 radiobutton group rb1, 
            rb_c2 radiobutton group rb1,
            rb_c3 RADIOBUTTON GROUP rb1. 

if rb_c1 = 'X'.
       s_fun-funct = '0'.
       append s_fun to t_fun.
       perform goods_1.

elseif rb_c2 = 'X'.
       s_fun-funct = '1'.
       append s_fun to t_fun.
       perform goods_1.

else .
       s_fun-funct = '0'.
       append s_fun to t_fun.

       s_fun-funct = '1'.
       append s_fun to t_fun.
       perform goods_1.
endif.

form goods_1. " +you can use tables tt like t_fun but not needed as declared globally.+
*----------------
*--------------------
*-------------------
         select aa bb cc from xyz 
                                into table t_table
                                for all entries in t_fun
                                where func = t_fun-func.
         if sy-subrc &amp;lt;&amp;gt; '0'
             "--------
*--------------------
         endif.
endform.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this will help... there are so many methods.. you can also use that select option method as already mentioned in this thread...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 12:12:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868765#M1138287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T12:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868766#M1138288</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;No,you cannot assign two values to a variable but can simply do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: i_funct type standard table of funct,&lt;/P&gt;&lt;P&gt;wa_funct like line of i_funct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if rb_c1 = 'X'.&lt;/P&gt;&lt;P&gt;funct = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append funct to i_funct.&lt;/P&gt;&lt;P&gt;perform goods_1 using i_funct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif rb_c2 = 'X'.&lt;/P&gt;&lt;P&gt;funct = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append funct to i_funct.&lt;/P&gt;&lt;P&gt;perform goods_1 using i_funct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   wa_funct-funct = '0'.&lt;/P&gt;&lt;P&gt;   append wa_funct to i_funct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   wa_funct-funct = '1'.&lt;/P&gt;&lt;P&gt; append wa_funct to i_funct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform goods_1 using i_funct.&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;form good_i using .....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select ..........&lt;/P&gt;&lt;P&gt;   from  ........&lt;/P&gt;&lt;P&gt;  into table .......&lt;/P&gt;&lt;P&gt;where funct in i_funct.  "even in case it has only one value(0/1) it will give the desired output&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Nov 2008 13:21:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868766#M1138288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-19T13:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: pass 2 values in a variable.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868767#M1138289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS FOR THE REPLIES.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Nov 2008 06:57:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-2-values-in-a-variable/m-p/4868767#M1138289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-20T06:57:57Z</dc:date>
    </item>
  </channel>
</rss>

