<?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: Problem with File in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466694#M219745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Can you try adding "IGNORING CONVERSION ERRORS". Also check if source system sends data in NON-UNICODE or UTF-8/16 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Aug 2006 06:49:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-11T06:49:55Z</dc:date>
    <item>
      <title>Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466684#M219735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In our SAP system a file is uploaded to the FTP server through some program.The structure of the file is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MATNR &amp;amp; Net Weight&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8-108-447-283|0,521&lt;/P&gt;&lt;P&gt;8-104-930-756|4,489&lt;/P&gt;&lt;P&gt;8-108-222-232|0,022&lt;/P&gt;&lt;P&gt;8-104-546-656|0,042&lt;/P&gt;&lt;P&gt;8-104-546-657|0,051&lt;/P&gt;&lt;P&gt;8-104-937-094|5,417&lt;/P&gt;&lt;P&gt;8-104-919-598|0,308&lt;/P&gt;&lt;P&gt;8-104-146-444|0,195&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when is it uploaded to the Apllication server.It displays like this:&lt;/P&gt;&lt;P&gt;8-108-447-283 0,521#&lt;/P&gt;&lt;P&gt;8-104-930-756 4,489#&lt;/P&gt;&lt;P&gt;8-108-222-232 0,022#&lt;/P&gt;&lt;P&gt;8-104-546-656 0,042#&lt;/P&gt;&lt;P&gt;8-104-546-657 0,051#&lt;/P&gt;&lt;P&gt;8-104-937-094 5,417#&lt;/P&gt;&lt;P&gt;8-104-919-598 0,308#&lt;/P&gt;&lt;P&gt;8-104-146-444 0,195#&lt;/P&gt;&lt;P&gt;8-104-145-877 5,316#&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This # symbol is added at the end of every line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My task is to update the Netweight of the Material thro' BAPI and it is working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because of this # I am getting dump when I am translating the Char format of weight to Quantity format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I try to replace the # symbol by space, The hash symbol is not reconginsed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me a solution to avoid the hash symbol when uploading into my report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 05:22:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466684#M219735</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T05:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466685#M219736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per me  I have taken the structure that you have specified and done a little bit of programming so rather that passing the sturcture that you have specified specify the structure as &lt;/P&gt;&lt;P&gt;8-108-447-283     	0,521&lt;/P&gt;&lt;P&gt;8-104-930-756      	4,489&lt;/P&gt;&lt;P&gt;8-108-222-232   	0,022&lt;/P&gt;&lt;P&gt;8-104-546-656   	0,042&lt;/P&gt;&lt;P&gt;8-104-546-657   	0,051&lt;/P&gt;&lt;P&gt;8-104-937-094   	5,417&lt;/P&gt;&lt;P&gt;8-104-919-598   	0,308&lt;/P&gt;&lt;P&gt;8-104-146-444   	0,195&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here the funda is to pass the material as 18 characters. though it includes only 13 characters that you have passed in the flat file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Pedhadodi Sudhakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 05:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466685#M219736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T05:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466686#M219737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I guess the problem is the codepage mismatch between the source system and your system. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   If you are working on Unicode System and the source system is NON-UNICODE, open the dataset with addition NON-UNICODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Unicode enabled system will show CR &amp;amp; LF characters as # when you try to view them in debugging.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Reward for helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 05:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466686#M219737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T05:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466687#M219738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does the file from the application server has fixed length with 21 chars per line(including Hash)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have u tried with this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE FIRST OCCURRENCE OF '#' IN NetWeight WITH ''.&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;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 05:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466687#M219738</guid>
      <dc:creator>sridharreddy_kondam</dc:creator>
      <dc:date>2006-08-11T05:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466688#M219739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;SPLIT L_F_LINE AT '|' INTO G_T_DATA-MATNR G_T_DATA-BRGEW.&lt;/P&gt;&lt;P&gt;REPLACE ALL OCCURRENCES OF '#' IN G_T_DATA-BRGEW WITH SPACE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the problem is the # symbol is not recongised by the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could u please tell me the solution for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466688#M219739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T06:12:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466689#M219740</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;  '#' will not be recognized when you try to replace as it shows CR and LF as '#' characters in debugging whereas they are different characters. This is due to character type conversion in UNICODE enabled systems. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:28:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466689#M219740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T06:28:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466690#M219741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth,&lt;/P&gt;&lt;P&gt;I have tried this and its working ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : G_T_DATA-MATNR type matnr,&lt;/P&gt;&lt;P&gt;G_T_DATA-BRGEW(6) type c.&lt;/P&gt;&lt;P&gt;data s1 type string.&lt;/P&gt;&lt;P&gt;s1 = 'abcdefgh | 23456#'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT S1 AT '|' INTO G_T_DATA-MATNR G_T_DATA-BRGEW.&lt;/P&gt;&lt;P&gt;*REPLACE ALL OCCURRENCES OF '#' IN G_T_DATA-BRGEW WITH SPACE.&lt;/P&gt;&lt;P&gt;REPLACE FIRST OCCURRENCE OF '#' IN G_T_DATA-BRGEW WITH ''.&lt;/P&gt;&lt;P&gt;write G_T_DATA-BRGEW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466690#M219741</guid>
      <dc:creator>sridharreddy_kondam</dc:creator>
      <dc:date>2006-08-11T06:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466691#M219742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Eswar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using this code to open the file from Application server&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  CLEAR: G_T_DATA,L_F_LINE.&lt;/P&gt;&lt;P&gt;  REFRESH: G_T_DATA.&lt;/P&gt;&lt;P&gt;  OPEN DATASET P_FILE FOR INPUT IN TEXT MODE ENCODING NON-UNICODE.&lt;/P&gt;&lt;P&gt;*DEFAULT.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;    DO.&lt;/P&gt;&lt;P&gt;      READ DATASET P_FILE INTO L_F_LINE.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC = 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;rpd2kor 09.08.06 -sm&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        G_T_DATA-MATNR = L_F_LINE(13).&lt;/P&gt;&lt;P&gt;        WRITE L_F_LINE+14 TO G_T_DATA-BRGEW.&lt;/P&gt;&lt;P&gt;        SHIFT G_T_DATA-BRGEW RIGHT DELETING TRAILING SPACE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       SPLIT L_F_LINE AT '|' INTO G_T_DATA-MATNR G_T_DATA-BRGEW.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       REPLACE ALL OCCURRENCES OF '#' IN G_T_DATA-BRGEW WITH SPACE.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;rpd2kor 09.08.06 -em&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        CALL FUNCTION 'CONVERSION_EXIT_MATN1_INPUT'&lt;/P&gt;&lt;P&gt;          EXPORTING&lt;/P&gt;&lt;P&gt;            INPUT  = G_T_DATA-MATNR&lt;/P&gt;&lt;P&gt;          IMPORTING&lt;/P&gt;&lt;P&gt;            OUTPUT = G_T_DATA-MATNR.&lt;/P&gt;&lt;P&gt;        APPEND G_T_DATA.&lt;/P&gt;&lt;P&gt;        CLEAR: G_T_DATA,L_F_LINE.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now what happends is when I am reading the line from &amp;lt;b&amp;gt;P_FILE the L_F_LINE = 8-108-447-283|0,521#&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What woulb be the probable error of the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466691#M219742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T06:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466692#M219743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As u said Its working for me if the I pass the string as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s1 = 'abcdefgh | 23456#'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since here s1 is having the hash symbol. But the # is not actually available when the file is imported to FTP server from CAD system. When it is added to the FTP server of the SAP system, the # symbol is automatically added at the end of the each line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:45:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466692#M219743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T06:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466693#M219744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using this statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;OPEN DATASET P_FILE FOR INPUT IN TEXT MODE ENCODING DEFAULT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;DO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    READ DATASET P_FILE INTO v_string.&lt;/P&gt;&lt;P&gt;--&amp;gt;now use ur code either with REPLACE or the Function module&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      EXIT.&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;Regards ,&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:48:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466693#M219744</guid>
      <dc:creator>sridharreddy_kondam</dc:creator>
      <dc:date>2006-08-11T06:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466694#M219745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vasanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Can you try adding "IGNORING CONVERSION ERRORS". Also check if source system sends data in NON-UNICODE or UTF-8/16 format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:49:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466694#M219745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T06:49:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with File</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466695#M219746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sridhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   You statement works if our SAP system and the system sending data both are of same type(UNICODE/NON-UNICODE) when itz different like ours UNICODE and the source NON-UNICODE your statement will not work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Above is just for your information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Aug 2006 06:51:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-file/m-p/1466695#M219746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-11T06:51:59Z</dc:date>
    </item>
  </channel>
</rss>

