<?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: selection-screen radio-button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369159#M182079</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;Try this code...&lt;/P&gt;&lt;P&gt;with the help of position..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  Z_TEST_RADIO                            .

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
*-For weekly
SELECTION-SCREEN BEGIN OF LINE.
&amp;lt;b&amp;gt;selection-screen position 61.&amp;lt;/b&amp;gt;
PARAMETERS: PR_WEEK RADIOBUTTON GROUP RAD1 DEFAULT 'X'.
SELECTION-SCREEN COMMENT 50(11) text-010.
SELECTION-SCREEN END OF LINE.

*-For daily
SELECTION-SCREEN BEGIN OF LINE.
selection-screen position 61.
PARAMETERS: PR_DAY RADIOBUTTON GROUP RAD1.
SELECTION-SCREEN COMMENT 50(11) text-010.
SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN SKIP.

PARAMETERS: PX_TOT AS CHECKBOX,    "Display Totals
            PX_SEL AS CHECKBOX,    "Show Selection Criteria
            PX_DOWN AS CHECKBOX USER-COMMAND DOWN.   "download the data
PARAMETERS: P_FILE(120) LOWER CASE,
            P_TYPE(5) AS LISTBOX VISIBLE LENGTH 5 DEFAULT 'TXT'.
PARAMETERS: P_APPL RADIOBUTTON GROUP G1,
            P_PRES RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF BLOCK B1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 May 2006 14:59:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-24T14:59:13Z</dc:date>
    <item>
      <title>selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369152#M182072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i want to create a radio button that should come into middle of the screen.&lt;/P&gt;&lt;P&gt;and same time in default i want following structure how can i achieve that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       radioboton (memo)  3 side of that 3 square box  &lt;/P&gt;&lt;P&gt;                              will come  seprated by /&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Manish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:29:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369152#M182072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T14:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369153#M182073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;YOu can go for selection-screen layout design using a &lt;/P&gt;&lt;P&gt;skip statements and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN POSITION pos. &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;The next object on the current line (parameter, comment, pushbutton or underline) is positioned at pos. &lt;/P&gt;&lt;P&gt;You may only use this variant between SELECTION-SCREEN BEGIN OF LINE und SELECTION-SCREEN END OF LINE. &lt;/P&gt;&lt;P&gt;You can specify the position pos as a number (relative to the box) if you use the statement between the SELECTION-SCREEN BEGIN OF BLOCK ... WITH FRAME ... and SELECTION-SCREEN END OF BLOCK ... statements. You can also use the symbolic positions POS_LOW and POS_HIGH. These are the positions on the screen at which the system places the input fields for SELECT-OPTIONS. (POS_LOW is also the screen position for PARAMETERS). &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369153#M182073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T14:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369154#M182074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii&lt;/P&gt;&lt;P&gt;chk this code&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_VBELN FOR VBAK-VBELN.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_VBTYP LIKE VBAK-VBTYP DEFAULT 'C'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.&lt;/P&gt;&lt;P&gt;PARAMETERS: LIST RADIOBUTTON GROUP G1,&lt;/P&gt;&lt;P&gt;            GRID RADIOBUTTON GROUP G1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B2.&lt;/P&gt;&lt;P&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;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:35:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369154#M182074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T14:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369155#M182075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.

SELECT-OPTIONS: S_LIFNR FOR LFA1-LIFNR, "ACCOUNT NUMBER
                S_BUKRS FOR LFB1-BUKRS, "COMPANY CODE
                S_EKORG FOR LFM1-EKORG, "PURCHASING ORG
                S_KTOKK FOR LFA1-KTOKK. "ACCOUNT GROUP

SELECTION-SCREEN END OF BLOCK B1.

SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.

PARAMETERS: LIST RADIOBUTTON GROUP G1, "ALV LIST DISPLAY
            GRID RADIOBUTTON GROUP G1. "ALV GRID DISPLAY

SELECTION-SCREEN END OF BLOCK B2.&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;Now use POS_high and POS_LOW to position the radio buttons&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369155#M182075</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-05-24T14:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369156#M182076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a sample.  You will need to create the text symbols and enter you text for them/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.


selection-screen begin of line.
selection-screen position 40.
selection-screen comment (20) text-001.
selection-screen position 65.
parameters: p_rad1 radiobutton group grp1 default 'X'.
selection-screen end of line.
selection-screen begin of line.
selection-screen position 40.
selection-screen comment (20) text-002.
selection-screen position 65.
parameters: p_rad2 radiobutton group grp1.
selection-screen end of line.
selection-screen begin of line.
selection-screen position 40.
selection-screen comment (20) text-003.
selection-screen position 65.
parameters: p_rad3 radiobutton group grp1.
selection-screen end of line.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369156#M182076</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-05-24T14:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369157#M182077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;how can i put the 3 squre box after that in between the box they are seprated by /.&lt;/P&gt;&lt;P&gt; after radio button square box1 / box2 / box3&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:53:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369157#M182077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T14:53:23Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369158#M182078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What kind of box?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369158#M182078</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-05-24T14:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369159#M182079</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;Try this code...&lt;/P&gt;&lt;P&gt;with the help of position..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  Z_TEST_RADIO                            .

SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
*-For weekly
SELECTION-SCREEN BEGIN OF LINE.
&amp;lt;b&amp;gt;selection-screen position 61.&amp;lt;/b&amp;gt;
PARAMETERS: PR_WEEK RADIOBUTTON GROUP RAD1 DEFAULT 'X'.
SELECTION-SCREEN COMMENT 50(11) text-010.
SELECTION-SCREEN END OF LINE.

*-For daily
SELECTION-SCREEN BEGIN OF LINE.
selection-screen position 61.
PARAMETERS: PR_DAY RADIOBUTTON GROUP RAD1.
SELECTION-SCREEN COMMENT 50(11) text-010.
SELECTION-SCREEN END OF LINE.

SELECTION-SCREEN SKIP.

PARAMETERS: PX_TOT AS CHECKBOX,    "Display Totals
            PX_SEL AS CHECKBOX,    "Show Selection Criteria
            PX_DOWN AS CHECKBOX USER-COMMAND DOWN.   "download the data
PARAMETERS: P_FILE(120) LOWER CASE,
            P_TYPE(5) AS LISTBOX VISIBLE LENGTH 5 DEFAULT 'TXT'.
PARAMETERS: P_APPL RADIOBUTTON GROUP G1,
            P_PRES RADIOBUTTON GROUP G1.
SELECTION-SCREEN END OF BLOCK B1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 14:59:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369159#M182079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T14:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369160#M182080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii Manish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;copy and paste Rich's code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the GOto -&amp;gt; text elements - &amp;gt;selection texts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give text-001 as blank&lt;/P&gt;&lt;P&gt;     text-002 as /&lt;/P&gt;&lt;P&gt;     text-003 as blank&lt;/P&gt;&lt;P&gt;     text-004 as /&lt;/P&gt;&lt;P&gt;     text-005 as blank&lt;/P&gt;&lt;P&gt;     text-006 as /&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i guess this will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 15:06:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369160#M182080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T15:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369161#M182081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.





selection-screen begin of line.
selection-screen position 30.
parameters: p_rad1 radiobutton group grp1 default 'X'.
selection-screen comment (13) txt1.
selection-screen position 45.
selection-screen comment (13) txt2.
selection-screen position 60.
selection-screen comment (13) txt3.
selection-screen end of line.

selection-screen begin of line.
selection-screen position 30.
parameters: p_rad2 radiobutton group grp1.
selection-screen comment (13) txt4.
selection-screen position 45.
selection-screen comment (13) txt5.
selection-screen position 60.
selection-screen comment (13) txt6.
selection-screen end of line.

initialization.

  txt1 = 'Test A      /'.
  txt2 = 'Test B      /'.
  txt3 = 'Test C'.


  txt4 = 'Test D      /'.
  txt5 = 'Test E      /'.
  txt6 = 'Test F'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 15:08:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369161#M182081</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-05-24T15:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369162#M182082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rich,&lt;/P&gt;&lt;P&gt;Similar to this which is coming on first row of the screen&lt;/P&gt;&lt;P&gt;after radio button test will be ther  and after that&lt;/P&gt;&lt;P&gt;i required theree parameter sort of box..which is saprated by /&lt;/P&gt;&lt;P&gt;where user can enter the credit memo invoice ref...&lt;/P&gt;&lt;P&gt;thanks for your help....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 15:16:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369162#M182082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T15:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369163#M182083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, how about something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.





selection-screen begin of line.
selection-screen position 30.
parameters: p_rad1 radiobutton group grp1 default 'X'.
selection-screen position 33.
parameters: p_field1(10) type c.
selection-screen comment (1) txt1.
selection-screen position 50.
parameters: p_field2(10) type c.
selection-screen comment (1) txt2.
selection-screen position 65.
parameters: p_field3(10) type c.
selection-screen end of line.

selection-screen begin of line.
selection-screen position 30.
parameters: p_rad2 radiobutton group grp1 .
selection-screen position 33.
parameters: p_field4(10) type c.
selection-screen comment (1) txt3.
selection-screen position 50.
parameters: p_field5(10) type c.
selection-screen comment (1) txt4.
selection-screen position 65.
parameters: p_field6(10) type c.
selection-screen end of line.

initialization.

txt1 = '/'.
txt2 = '/'.
txt3 = '/'.
txt4 = '/'.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 15:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369163#M182083</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-05-24T15:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: selection-screen radio-button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369164#M182084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for immidiate reply...&lt;/P&gt;&lt;P&gt;this is solved my problem....&lt;/P&gt;&lt;P&gt;i distributed the Pts ....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 May 2006 15:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-radio-button/m-p/1369164#M182084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-24T15:36:20Z</dc:date>
    </item>
  </channel>
</rss>

