<?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: Folder list presentation server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253618#M1015381</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;Use the FM F4_FILENAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: p_file TYPE rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      program_name  = syst-cprog&lt;/P&gt;&lt;P&gt;      dynpro_number = syst-dynnr&lt;/P&gt;&lt;P&gt;      field_name    = ''&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name     = p_file.&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;Srilatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jul 2008 05:48:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-29T05:48:59Z</dc:date>
    <item>
      <title>Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253611#M1015374</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;I want to display help  for directory list in presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User can select the directory where they want to store data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If they entered a directory then how to check existence of that directory in presentation server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) FM to diaplay and select list of directories in presentation server&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) How to check given directory exist in presentation server or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Balamurugan.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253611#M1015374</guid>
      <dc:creator>balamurugan_ramakrishnan</dc:creator>
      <dc:date>2008-07-29T05:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253612#M1015375</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;Use Function module F4_FILENAME.&lt;/P&gt;&lt;P&gt;   or&lt;/P&gt;&lt;P&gt;F4_DXFILENAME_TOPRECURSION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253612#M1015375</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-07-29T05:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253613#M1015376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Use the function module F4_FILENAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4_FILENAME'
* EXPORTING
*   PROGRAM_NAME        = SYST-CPROG
*   DYNPRO_NUMBER       = SYST-DYNNR
*   FIELD_NAME          = ' '
 IMPORTING
   file_name           = file_path.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Declare &lt;STRONG&gt;file_path&lt;/STRONG&gt;  of TYPE ibipparms-path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link for sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/using-function-modules-f4-filename.htm" target="test_blank"&gt;http://www.sap-img.com/abap/using-function-modules-f4-filename.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253613#M1015376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253614#M1015377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Class,&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES.&lt;/P&gt;&lt;P&gt;Check this links:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5601221"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="78322"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5734838"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:45:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253614#M1015377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:45:28Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253615#M1015378</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;CL_GUI_FRONTEND_SERVICES=&amp;gt;FILE_OPEN_DIALOG&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES=&amp;gt;DIRECTORY_BROWSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto SE24 &amp;amp; type CL_GUI_FRONTEND_SERVICES&lt;/P&gt;&lt;P&gt;Click Display&lt;/P&gt;&lt;P&gt;Goto METHODS tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method cl_gui_frontend_services=&amp;gt;directory_exist for Directory exists or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Omkaram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:47:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253615#M1015378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:47:01Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253616#M1015379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using the class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CL_GUI_FRONTEND_SERVICES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;1) FM to diaplay and select list of directories in presentation server&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;2) How to check given directory exist in presentation server or not.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;methods : DIRECTORY_EXIST "for checking the Directory existance&lt;/P&gt;&lt;P&gt;                DIRECTORY_LIST_FILES " for getting the list of files in the Directory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253616#M1015379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253617#M1015380</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;Use the FM F4_FILENAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: p_file TYPE rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      program_name  = syst-cprog&lt;/P&gt;&lt;P&gt;      dynpro_number = syst-dynnr&lt;/P&gt;&lt;P&gt;      field_name    = ''&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name     = p_file.&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;Srilatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253617#M1015380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253618#M1015381</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;Use the FM F4_FILENAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: p_file TYPE rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4_FILENAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      program_name  = syst-cprog&lt;/P&gt;&lt;P&gt;      dynpro_number = syst-dynnr&lt;/P&gt;&lt;P&gt;      field_name    = ''&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      file_name     = p_file.&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;Srilatha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253618#M1015381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253619#M1015382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Check these FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLF_CHECK_DIRECTORY&lt;/P&gt;&lt;P&gt;this FM checks whether the directory exists or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TMP_GUI_DIRECTORY_LIST_FILES   &lt;/P&gt;&lt;P&gt;this FM gives the list of files in the directory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out these other FM if interested..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRINT_FI_GET_DIRECTORY_NAMES&lt;/P&gt;&lt;P&gt;TMP_GUI_CREATE_DIRECTORY       &lt;/P&gt;&lt;P&gt;TMP_GUI_READ_DIRECTORY         &lt;/P&gt;&lt;P&gt;TMP_GUI_REMOVE_DIRECTORY       &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Indu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:49:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253619#M1015382</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253620#M1015383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for sample code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check here..&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.sdn.sap.com/click.jspa?searchID=14584913&amp;amp;messageID=5881162" target="test_blank"&gt;https://forums.sdn.sap.com/click.jspa?searchID=14584913&amp;amp;messageID=5881162&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 05:51:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253620#M1015383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-29T05:51:48Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253621#M1015384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Indu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My task is , I want to give a help to select directory from the presentation server. (ie F4 help)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondely  , if they entered the directory name , I have to check it is existing or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F4_filename will take care for files, but my part is directory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Balamurugan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jul 2008 09:39:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253621#M1015384</guid>
      <dc:creator>balamurugan_ramakrishnan</dc:creator>
      <dc:date>2008-07-29T09:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253622#M1015385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Balamurugan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the AT SELECTION-SCREEN FOR VALUE REQUEST &amp;lt;p_file&amp;gt;&lt;/P&gt;&lt;P&gt;call the FM, F4_FILENAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you enter the name directly, to check whether it is valid or not, use the FM, PLF_CHECK_DIRECTORY in the validation of the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first call F4_FILENAME, then call PLF_CHECK_DIRECTORY in the same event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN FOR VALUE REQUEST ON &amp;lt;p_file&amp;gt;&lt;/P&gt;&lt;P&gt;CALL F4_FILENAME&lt;/P&gt;&lt;P&gt;...........&lt;/P&gt;&lt;P&gt;...........&lt;/P&gt;&lt;P&gt;CALL PLF_CHECK_DIRECTORY&lt;/P&gt;&lt;P&gt;.........&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;IF sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;message 'file doesnt exist' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Indu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 13:08:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253622#M1015385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T13:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: Folder list presentation server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253623#M1015386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/SAPDMC/LSM_F4_FRONTEND_FILE&lt;/P&gt;&lt;P&gt;f4_filename&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 13:12:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/folder-list-presentation-server/m-p/4253623#M1015386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T13:12:23Z</dc:date>
    </item>
  </channel>
</rss>

