<?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: modify internal table embedded in internal table as field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286744#M1389203</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using references..workarea is anyways not optimal way of accessing intenal tables and changing stuff:&lt;/P&gt;&lt;P&gt;Exampls:&lt;/P&gt;&lt;P&gt;Data: lr_text_textdat type ref to COMT_TEXT_TEXTDATA,&lt;/P&gt;&lt;P&gt;          lr_text_line_t type ref to COMT_TEXT_LINES_T,&lt;/P&gt;&lt;P&gt;          lr_text_line type ref to  TLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop or read &amp;lt;TABLE&amp;gt; reference into lr_test_testdata.&lt;/P&gt;&lt;P&gt;get reference of lr_test_testdata-&amp;gt;LINES into  lr_text_line_t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop or read lr_text_line_t reference into lr_text_line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now any changes on this reference...delete..update will directly happen on main parent table.&lt;/P&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;Regards,&lt;/P&gt;&lt;P&gt;Jemin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Nov 2009 03:48:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-11-06T03:48:07Z</dc:date>
    <item>
      <title>modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286735#M1389194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using function module CRM_DNO_READ_ORDER_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the output table of this fm is  ET_ALLTEXTS whixh is of structure COMT_TEXT_TEXTDATA_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This structure has two fields one is GUI and other is LINES which itself contains the table in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to delete one row from the data of this LINES table in main table ET_ALLTEXTS .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, this LINES table contains the texts entered by user from some application. So i want to edit the text. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help me..this is very complicated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;DIvya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 15:33:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286735#M1389194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T15:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286736#M1389195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;You need to create one local internal table of type LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at ET_ALLTEXTS.&lt;/P&gt;&lt;P&gt;   local_int_table = ET_ALLTEXTS-LINES.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;   refresh ET_ALLTEXTS-LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   now manipualte this local internal table and pass it back to ET_ALLTEXTS-LINES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   modify ET_ALLTEXTS here.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&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;Regards,&lt;/P&gt;&lt;P&gt;Nilesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 15:42:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286736#M1389195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T15:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286737#M1389196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suppose you have a work area for ET_ALLTEXTS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just put the line you want to modify in ET_ALLTEXTS  in the work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After that, just treat the field LINES in the work area as a normal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;read table ET_ALLTEXTS into w_ET_ALLTEXTS where gui = '1'.
if sy-subrc = 0.
delete w_ET_ALLTEXTS-lines where table_line &amp;lt;&amp;gt; space.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 15:45:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286737#M1389196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T15:45:56Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286738#M1389197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nilesh n Ramiro,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually when I check the type of ET_ALLTEXTS it will show table type COMT_TEXT_TEXTDATA_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i try to assign like int_local_table = ET_ALLTEXTS-LINES it gives error  that " ET_ALLTEXTS is a table without a header line and therfore no component called LINES".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats the  main problem. I have tried with field symbol as well but again some type mismatch is coming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyways thnx for ur repies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye &lt;/P&gt;&lt;P&gt;Divya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 16:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286738#M1389197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T16:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286739#M1389198</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this quick example. And stop using header lines. Declare the work areas yourself. It will save you a lot of problems with nested tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF uno,
a,
END OF uno.

TYPES: tty_uno TYPE STANDARD TABLE OF uno
          WITH NON-UNIQUE KEY table_line.

TYPES: BEGIN OF dos,
a,
lines TYPE tty_uno,
END OF dos.

DATA: itab TYPE TABLE OF dos,
      w_itab LIKE LINE OF itab,
      w_lines LIKE LINE OF w_itab-lines,
      l_tabix TYPE i.

w_lines-a = '1'.
APPEND w_lines TO w_itab-lines.
w_lines-a = '2'.
APPEND w_lines TO w_itab-lines.
w_itab-a = '1'.
APPEND w_itab TO itab.
w_itab-a = '2'.
APPEND w_itab TO itab.
READ TABLE itab INTO w_itab WITH KEY a = '1'.
IF sy-subrc = 0.
  l_tabix = sy-tabix.
  DELETE w_itab-lines WHERE a = '1'.
  MODIFY itab FROM w_itab INDEX l_tabix.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 16:16:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286739#M1389198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T16:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286740#M1389199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;the local internal table should refer to the data type for LINES and not ET_ALLTEXTS. You need to define the work area and main body of the internal table explicitly and then use int_local_table[] = ET_ALLTEXTS-LINES[]. You need to assign the body of the internal table explicitly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nilesh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nilesh Masurkar on Nov 5, 2009 5:17 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nilesh Masurkar on Nov 5, 2009 5:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 16:17:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286740#M1389199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T16:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286741#M1389200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nilesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did the same type what is require but it says that the ET_ALLTEXTS does not have LINES component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its not the problem with the local inetrnal table. Thta i have made of type LINE only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually ET_ALLTEXTS  is of^'table type '  COMT_TEXT_TEXTDATA_T and this is of type COMT_TEXT_TEXTDATA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 16:27:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286741#M1389200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T16:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286742#M1389201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;Something wrong in your declaration. sorry, i can't check this on my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;nilesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 16:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286742#M1389201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-05T16:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286743#M1389202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess Nilesh is right, there is something wrong with your declaration. Me for one, I've tried to reproduce your problem and I don't see any problem here. How did you declare your internal table for example?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you want to delete a line from table LINES you can't just say:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
delete et_alltexts-lines index 1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because this will give you the error message with 'table without header line....". Instead you first have to loop at this ET_ALLTEXTS internal table and only then you have access to the individual lines, which is an internal table as well. The following is only an example, but it should be helpful:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: gv_header_guid TYPE crmt_object_guid.
DATA: gt_textdata    TYPE comt_text_textdata_t ,
      gt_alltexts    TYPE comt_text_textdata_t.

FIELD-SYMBOLS: &amp;lt;alltext&amp;gt;     LIKE LINE OF gt_alltexts.

CALL FUNCTION 'CRM_DNO_READ_ORDER_TEXT'
  EXPORTING
    iv_header_guid = gv_header_guid
  IMPORTING
    et_textdata    = gt_textdata
    et_alltexts    = gt_alltexts.

LOOP AT gt_alltexts ASSIGNING &amp;lt;alltext&amp;gt;.

  DELETE &amp;lt;alltext&amp;gt;-lines INDEX 1.

ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Nov 2009 17:04:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286743#M1389202</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-11-05T17:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286744#M1389203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using references..workarea is anyways not optimal way of accessing intenal tables and changing stuff:&lt;/P&gt;&lt;P&gt;Exampls:&lt;/P&gt;&lt;P&gt;Data: lr_text_textdat type ref to COMT_TEXT_TEXTDATA,&lt;/P&gt;&lt;P&gt;          lr_text_line_t type ref to COMT_TEXT_LINES_T,&lt;/P&gt;&lt;P&gt;          lr_text_line type ref to  TLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop or read &amp;lt;TABLE&amp;gt; reference into lr_test_testdata.&lt;/P&gt;&lt;P&gt;get reference of lr_test_testdata-&amp;gt;LINES into  lr_text_line_t.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop or read lr_text_line_t reference into lr_text_line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now any changes on this reference...delete..update will directly happen on main parent table.&lt;/P&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;Regards,&lt;/P&gt;&lt;P&gt;Jemin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2009 03:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286744#M1389203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-06T03:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286745#M1389204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Divya,&lt;/P&gt;&lt;P&gt;Please check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: li_alltext TYPE TABLE OF comt_text_textdata,&lt;/P&gt;&lt;P&gt;      lw_alltext TYPE comt_text_textdata,&lt;/P&gt;&lt;P&gt;      li_lines   TYPE TABLE OF tline,&lt;/P&gt;&lt;P&gt;      lw_lines   TYPE tline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT li_alltext INTO lw_alltext.&lt;/P&gt;&lt;P&gt;  REFRESH li_lines[].&lt;/P&gt;&lt;P&gt;  li_lines[] = lw_alltext-lines[].&lt;/P&gt;&lt;P&gt;  LOOP AT li_lines INTO lw_lines.&lt;/P&gt;&lt;P&gt;*/----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;Delete the text lines here&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  REFRESH lw_alltext-lines[].&lt;/P&gt;&lt;P&gt;  lw_alltext-lines[] = li_lines[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  MODIFY li_alltext FROM lw_alltext.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please close the thread if your query is answered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nilesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Nov 2009 09:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286745#M1389204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-06T09:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: modify internal table embedded in internal table as field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286746#M1389205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;done&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 May 2010 11:35:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-internal-table-embedded-in-internal-table-as-field/m-p/6286746#M1389205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-14T11:35:09Z</dc:date>
    </item>
  </channel>
</rss>

