<?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: Unicode type not convertible in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154238#M1515062</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response. It did not work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Aug 2010 21:20:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-08-04T21:20:36Z</dc:date>
    <item>
      <title>Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154232#M1515056</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;Need some help in modifying the code ... I am working on a mass download of data into a texr file from the tables. Few of these tables have fields in decimal or currency and I  need to read them into character string. I know the structure of the internal table I read the data into has to exactly match the table structure in Unicode environment. How to add that in the code when I am pulling the tables dynamically and reading their data in a sequential  manner. Hence I am getting the above error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: begin of i_list occurs 0,&lt;/P&gt;&lt;P&gt;      i_tabledata(2550) type c,&lt;/P&gt;&lt;P&gt;     end of i_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; select * from (v_tabname) into i_list.   -&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&amp;gt; Unicode  type not convertible error...&lt;/P&gt;&lt;P&gt;        append i_list.&lt;/P&gt;&lt;P&gt;        clear i_list.&lt;/P&gt;&lt;P&gt;      endselect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of 'v_tabname' comes from the table DD02l dynamically.&lt;/P&gt;&lt;P&gt;Any thoughts?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;VG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 15:54:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154232#M1515056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-04T15:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154233#M1515057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi VG,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It takes a lot of code but it works:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  DATA: lo_structtype type ref to cl_abap_structdescr,
        lo_tabletype  type ref to cl_abap_tabledescr,
        lr_structdata type ref to data,
        lr_tabledata   type ref to data.

field-symbols: &amp;lt;ls&amp;gt; type any,
               &amp;lt;lt&amp;gt; type standard table.

* get the type for the structure
lo_structtype ?= cl_abap_structdescr=&amp;gt;describe_by_name( v_tabname ).
* get the type of the table
lo_tabletype = cl_abap_tabledescr=&amp;gt;create( p_line_type = lo_structtype ).

* create the data
create data: lr_structdata type handle lo_structtype,
                    lr_tabledata type handle lo_tabletype.

* assign the field symbols
assign lr_structdata-&amp;gt;* to &amp;lt;ls&amp;gt;.
assign lr_tabledata-&amp;gt;* to &amp;lt;lt&amp;gt;.

* select the data
select * from (v_tabname) into &amp;lt;ls&amp;gt;.
append &amp;lt;ls&amp;gt; to &amp;lt;lt&amp;gt;.
endselect.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Erik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 17:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154233#M1515057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-04T17:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154234#M1515058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Erik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Doesn't take so much coding you know &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; Check this out: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_tab TYPE tablename OBLIGATORY.

DATA: dref TYPE REF TO data.

FIELD-SYMBOLS: &amp;lt;itab&amp;gt; TYPE STANDARD TABLE.

CREATE DATA dref TYPE STANDARD TABLE OF (p_tab).
ASSIGN dref-&amp;gt;* TO &amp;lt;itab&amp;gt;.

SELECT * FROM (p_tab) INTO TABLE &amp;lt;itab&amp;gt; UP TO 10 ROWS.
IF sy-subrc = 0.
  WRITE: / `I've created a dynamic internal table. Yipeee!!!!`.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 18:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154234#M1515058</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-08-04T18:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154235#M1515059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks. That's much better!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 18:28:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154235#M1515059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-04T18:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154236#M1515060</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;Thanks I got that part. I am having the problem in reading the entire data into a internal table 'List' from the field symbol. My internal table is a single field of type character. I need to read the data into this internal table for downloading the data into a text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: begin of i_list occurs 0,&lt;/P&gt;&lt;P&gt;      i_tabledata(2550) type c,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      table_rec(255) type c,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     end of i_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-symbols: &amp;lt;fs_table2&amp;gt; type standard table,&lt;/P&gt;&lt;P&gt;                         &amp;lt;fs_string&amp;gt; type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA v_dref Type table of (v_tabname).&lt;/P&gt;&lt;P&gt;      assign v_dref-&amp;gt;* TO &amp;lt;fs_table2&amp;gt;.&lt;/P&gt;&lt;P&gt;      select * from (v_tabname) into table &amp;lt;fs_table2&amp;gt;.&lt;/P&gt;&lt;P&gt;            assign &amp;lt;fs_table2&amp;gt; to &amp;lt;fs_string&amp;gt; CASTING. -&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;&amp;gt; error &lt;/P&gt;&lt;P&gt;            i_list-i_tabledata = &amp;lt;fs_string&amp;gt;.&lt;/P&gt;&lt;P&gt;           append i_list.&lt;/P&gt;&lt;P&gt;           clear i_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any thoughts? &lt;/P&gt;&lt;P&gt;Thanks again,&lt;/P&gt;&lt;P&gt;VG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 19:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154236#M1515060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-04T19:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154237#M1515061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS: p_tab TYPE tablename OBLIGATORY.&lt;/P&gt;&lt;P&gt;give a try&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: dref TYPE REF TO data.
Data: begin of i_list occurs 0,
i_tabledata(2550) type c,
end of i_list.
 
FIELD-SYMBOLS: &amp;lt;fs&amp;gt; TYPE any
 
CREATE DATA dref like line of  (p_tab). 
ASSIGN dref-&amp;gt;* TO &amp;lt;fs&amp;gt;.
 
SELECT * FROM (p_tab) INTO &amp;lt;fs&amp;gt;  UP TO 10 ROWS.
IF sy-subrc = 0.
call method cl_abap_container_utilities=&amp;gt;fill_container_c
exporting
im_value = &amp;lt;fs&amp;gt;
importing
ex_container = itab.
exceptions
illegal_parameter_type = 1
others = 2. 
append itab.
endif.
endselect.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 20:34:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154237#M1515061</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-08-04T20:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154238#M1515062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the response. It did not work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 21:20:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154238#M1515062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-04T21:20:36Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154239#M1515063</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;My task is to download the data from a series of tables into the text file and then upload the same file into different set of same tables in a different name space. My code works fine when we are downloading and uploading all 'CHAR' data because  I am reading into a string and using field symbols assigning the structure at the run time it inserts the data perfectly fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However if any table contains a field with decimal, currency, it throws an Unicode not convertible error rightly results in run time error. It is here I am facing the problem to downloading the data and uplaoding the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Uploading the data...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: v_tabledata(2575) type c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs_table&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I read the data from the flat file into this string. From here, I need to upload into a table that has a decimal field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried some thing like this...&lt;/P&gt;&lt;P&gt;      assign v_tabledata to &amp;lt;fs_table&amp;gt;. (tried with standard table declaration too it did not work)&lt;/P&gt;&lt;P&gt;      move &amp;lt;fs_table&amp;gt; to i_crword_temp. -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt; runtime error...&lt;/P&gt;&lt;P&gt;     modify (v_tabname) from i_crword_temp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_tabname is a database table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hvae been trying few different things nothing seems to work..  Any thoughts or leads will be helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;VG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Aug 2010 21:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154239#M1515063</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-04T21:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154240#M1515064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As per your requirement, i developed this code snippet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I download the data from ZTESTVBAK &amp;amp; upload the data to YTESTVBAK. Not sure why you're transferring the data to string &amp;amp; trying to read the string ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code snippet:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_tab TYPE tabname OBLIGATORY DEFAULT 'ZTESTVBAK',
            p_dwld RADIOBUTTON GROUP grp1 DEFAULT 'X',
            p_upld RADIOBUTTON GROUP grp1.

DATA: dref TYPE REF TO data,
      v_tab TYPE tabname,
      lcx_sql_err TYPE REF TO cx_sy_sql_error,
      v_errtxt TYPE string.

FIELD-SYMBOLS: &amp;lt;itab&amp;gt; TYPE STANDARD TABLE,
               &amp;lt;wa&amp;gt; TYPE ANY.

CREATE DATA dref TYPE STANDARD TABLE OF (p_tab).
ASSIGN dref-&amp;gt;* TO &amp;lt;itab&amp;gt;.

IF p_dwld = 'X'.
  SELECT * FROM (p_tab) INTO TABLE &amp;lt;itab&amp;gt; UP TO 100 ROWS.
  IF sy-subrc = 0.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        filename                = 'C:\dyntab.txt'
        write_field_separator   = 'X'
        confirm_overwrite       = 'X'
      TABLES
        data_tab                = &amp;lt;itab&amp;gt;
      EXCEPTIONS
        file_write_error        = 1
        no_batch                = 2
        gui_refuse_filetransfer = 3
        invalid_type            = 4
        no_authority            = 5
        unknown_error           = 6
        header_not_allowed      = 7
        separator_not_allowed   = 8
        filesize_not_allowed    = 9
        header_too_long         = 10
        dp_error_create         = 11
        dp_error_send           = 12
        dp_error_write          = 13
        unknown_dp_error        = 14
        access_denied           = 15
        dp_out_of_memory        = 16
        disk_full               = 17
        dp_timeout              = 18
        file_not_found          = 19
        dataprovider_exception  = 20
        control_flush_error     = 21
        OTHERS                  = 22.
    IF sy-subrc = 0.
      WRITE: / 'File download successful.'.
    ENDIF.

  ENDIF.
ELSEIF p_upld = 'X'.
  CALL FUNCTION 'GUI_UPLOAD'
    EXPORTING
      filename                = 'C:\dyntab.txt'
      has_field_separator     = 'X'
    TABLES
      data_tab                = &amp;lt;itab&amp;gt;
    EXCEPTIONS
      file_open_error         = 1
      file_read_error         = 2
      no_batch                = 3
      gui_refuse_filetransfer = 4
      invalid_type            = 5
      no_authority            = 6
      unknown_error           = 7
      bad_data_format         = 8
      header_not_allowed      = 9
      separator_not_allowed   = 10
      header_too_long         = 11
      unknown_dp_error        = 12
      access_denied           = 13
      dp_out_of_memory        = 14
      disk_full               = 15
      dp_timeout              = 16
      OTHERS                  = 17.
  IF sy-subrc = 0.
    v_tab = p_tab.
*   Lock the table records
    CALL FUNCTION 'ENQUEUE_E_TABLEE'
      EXPORTING
        tabname        = v_tab
      EXCEPTIONS
        foreign_lock   = 1
        system_failure = 2
        OTHERS         = 3.
    IF sy-subrc = 0.
      TRY .
          MODIFY (p_tab) FROM TABLE &amp;lt;itab&amp;gt;.
        CATCH cx_sy_sql_error INTO lcx_sql_err.
          v_errtxt = lcx_sql_err-&amp;gt;get_text( ).
      ENDTRY.
    ENDIF.

*   Unlock the table records
    CALL FUNCTION 'DEQUEUE_E_TABLE'
      EXPORTING
        tabname = v_tab.

    COMMIT WORK.
  ENDIF.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Aug 2010 15:17:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154240#M1515064</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-08-05T15:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154241#M1515065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the info. I had to read them into a string because I had to download the data and upload the same data into different tables in a different client under a different name space.  I shall try this and definitely get back...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once again,&lt;/P&gt;&lt;P&gt;VG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Aug 2010 15:44:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154241#M1515065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-05T15:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode type not convertible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154242#M1515066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the file donwloaded successfully, whreas during upload it gave an error with sy-subrc = 8.  Bad data format. Any thoughts as to why? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;VG&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Aug 2010 17:19:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-type-not-convertible/m-p/7154242#M1515066</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-05T17:19:13Z</dc:date>
    </item>
  </channel>
</rss>

