<?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: alv grid OO runtime error after adding new rows in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616364#M1087681</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your answer!&lt;/P&gt;&lt;P&gt;you're right, my mistake, in my coding all fieldnames are in caps, else the cells wouldn't be editable, i just changed the fielddnames here to make it easier to read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: DTox2k on Oct 21, 2008 10:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Oct 2008 08:18:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-21T08:18:11Z</dc:date>
    <item>
      <title>alv grid OO runtime error after adding new rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616362#M1087679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with alv OO.&lt;/P&gt;&lt;P&gt;I want to add an empty and editable row to my alv grid and save it after the user filled it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have my alv grid:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
  IF G_CUSTOM_CONTAINER IS INITIAL.
    CREATE OBJECT G_CUSTOM_CONTAINER
      EXPORTING
        CONTAINER_NAME = G_CONTAINER.
    CREATE OBJECT GRID1
      EXPORTING
        I_PARENT = G_CUSTOM_CONTAINER.

    CALL METHOD grid1-&amp;gt;set_ready_for_input
      EXPORTING
        i_ready_for_input = 1. 
    CALL METHOD GRID1-&amp;gt;SET_TABLE_FOR_FIRST_DISPLAY
      EXPORTING
        it_toolbar_excluding = it_exclude
        is_layout = ls_layout
      CHANGING
        IT_OUTTAB            = it_outtab
        it_fieldcatalog      = it_fieldcat[].


    CREATE OBJECT event_receiver.
    SET HANDLER event_receiver-&amp;gt;handle_user_command FOR grid1.
    SET HANDLER event_receiver-&amp;gt;handle_toolbar FOR grid1.

    CALL METHOD grid1-&amp;gt;set_toolbar_interactive.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Then i have a button, that adds a new row to my grid:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      

METHOD handle_user_command.
DATA: lt_rows TYPE lvc_t_row.
 CASE e_ucomm.
 when 'newline'.
        wa_outtab-field1= ''.
        wa_outtab-field2 = ''.
        wa_outtab-field3 = ''.
        wa_outtab-field4 = ''.
        wa_outtab-flag = 'N'.
        ls_celltab-Style = GRID1-&amp;gt;mc_style_enabled.
        CLEAR wa_outtab-Style.

        ls_celltab-fieldname = 'field1'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'field2'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'field3'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'field4'.
        insert ls_celltab into table wa_outtab-Style.
        append wa_outtab to IT_OUTTAB.
        clear wa_outtab.
        Call METHOD GRID1-&amp;gt;refresh_table_display. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is, i can add a row, but as soon as i fill it, i get a runtime error for any user_command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So for example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I add an empty row&lt;/P&gt;&lt;P&gt;2. I fill it.&lt;/P&gt;&lt;P&gt;3. I want to add another row --&amp;gt; runtimer error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trigger Location of Runtime Error&lt;/P&gt;&lt;P&gt;    Program                                 CL_GUI_ALV_GRID===============CP&lt;/P&gt;&lt;P&gt;    Include                                 CL_GUI_ALV_GRID===============CM031&lt;/P&gt;&lt;P&gt;    Row                                     96&lt;/P&gt;&lt;P&gt;    Module type                             (METHOD)&lt;/P&gt;&lt;P&gt;    Module Name                             FOREIGN_KEY_CHECK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   

   66                        OF STRUCTURE &amp;lt;ls_ref_table&amp;gt; TO &amp;lt;l_field_to&amp;gt;.
   67
   68       CLEAR lflg_moved.
   69       CLEAR l_no_check.
   70
   71       READ TABLE ct_mod_cells INTO ls_mod_cells
   72                               WITH KEY fieldname = ls_fields-fieldname
   73                                        row_id    = i_row_id.
   74
   75       IF sy-subrc EQ 0.
   76         l_changed_field = ls_fields-fieldname.
   77
   78         READ TABLE m_cl_variant-&amp;gt;mt_fieldcatalog INTO l_fcat WITH KEY
   79                  fieldname = ls_fields-fieldname.
   80         IF ls_mod_cells-value IS INITIAL AND l_fcat-no_init_ch ca 'XB'.
   81           l_no_check = 'X'.
   82         ELSEIF ls_mod_cells-error EQ 'X'.
   83           &amp;lt;l_field_to&amp;gt; = ls_mod_cells-value.
   84           lflg_moved = 'X'.
   85         ENDIF.
   86       ENDIF.
   87
   88       IF l_no_check = 'X'.
   89         MOVE-CORRESPONDING ls_mod_cells TO ls_good_cells.
   90         APPEND ls_good_cells TO ct_good_cells.
   91       ELSE.
   92         IF lflg_moved IS INITIAL.
   93           ASSIGN COMPONENT ls_fields-fieldname
   94                            OF STRUCTURE cs_wa TO &amp;lt;l_field_from&amp;gt;.
   95           IF sy-subrc NE 0.
&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;             MESSAGE x000(0k).
   97           ENDIF.
   98           &amp;lt;l_field_to&amp;gt; = &amp;lt;l_field_from&amp;gt;.
   99         ENDIF.
  100
  101 *... does checktable contain other key fields which need to be
  102 *    considered
  103         MOVE ls_check-ref_table  TO ls_buf_id-tabname.
  104         MOVE ls_fields-fieldname TO ls_buf_id-fieldname.
  105
  106         MOVE ls_check-ref_table  TO l_tbfk_tabname.
  107         IF ls_fields-ref_field IS INITIAL.
  108           MOVE ls_fields-fieldname TO l_tbfk_fieldname.
  109         ELSE.
  110           MOVE ls_fields-ref_field TO l_tbfk_fieldname.
  111         ENDIF.
  112
  113         IMPORT dd05m_tab TO lt_dd05m
  114                dd08v_tab TO lt_dd08v
  115                timestamp TO ls_timestamp &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First i thought the Problem is that i fill in wrong data (because of "Foreign_key_check"), but thats definitivly not the problem, because if i add the new row with default values like this, i can save it without any problems. But if i edit any of these cells, i get an error again, so the problem has nothing to do with the content of the cells.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      

METHOD handle_user_command.
DATA: lt_rows TYPE lvc_t_row.
 CASE e_ucomm.
 when 'newline'.
        wa_outtab-field1= 'Text'.
        wa_outtab-field2 = '12345'.
        wa_outtab-field3 = '100'.
        wa_outtab-field4 = 'AB'.
        wa_outtab-flag = 'N'.
        ls_celltab-Style = GRID1-&amp;gt;mc_style_enabled.
        CLEAR wa_outtab-Style.

        ls_celltab-fieldname = 'field1'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'field2'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'field3'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'field4'.
        insert ls_celltab into table wa_outtab-Style.
        append wa_outtab to IT_OUTTAB.
        clear wa_outtab.
        Call METHOD GRID1-&amp;gt;refresh_table_display. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have an idea where's my mistake?&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;DTox2k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: DTox2k on Oct 21, 2008 9:08 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: DTox2k on Oct 21, 2008 9:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2008 07:08:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616362#M1087679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-21T07:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: alv grid OO runtime error after adding new rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616363#M1087680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;why are you using the fieldnames in small letters. use CAPS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ls_celltab-fieldname = 'field1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;ls_celltab-fieldname = 'FIELD1'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2008 07:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616363#M1087680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-21T07:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: alv grid OO runtime error after adding new rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616364#M1087681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your answer!&lt;/P&gt;&lt;P&gt;you're right, my mistake, in my coding all fieldnames are in caps, else the cells wouldn't be editable, i just changed the fielddnames here to make it easier to read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: DTox2k on Oct 21, 2008 10:18 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2008 08:18:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616364#M1087681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-21T08:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: alv grid OO runtime error after adding new rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616365#M1087682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The solution for your problem has been described in sample report &lt;STRONG&gt;ZUS_SDN_ALVGRID_EDITABLE_8A&lt;/STRONG&gt; in thread &lt;SPAN __jive_macro_name="thread" id="1057161"&gt;&lt;/SPAN&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;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2008 10:36:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616365#M1087682</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-10-21T10:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: alv grid OO runtime error after adding new rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616366#M1087683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uwe Schieferstein,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for your answer.&lt;/P&gt;&lt;P&gt;i tried to understand your report (im new to ABAP OO and its my first report with an alv grid &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; ) and implement your solution, but it still doesn't work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First i replace the function code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  METHOD handle_toolbar.
* § 2.In event handler method for event TOOLBAR: Append own functions
*   by using event parameter E_OBJECT.
    DATA: ls_toolbar  TYPE stb_button.

    LOOP AT e_object-&amp;gt;mt_toolbar INTO ls_toolbar.
      CASE ls_toolbar-function.
        WHEN cl_gui_alv_grid=&amp;gt;mc_fc_loc_delete_row.
          ls_toolbar-function = 'DELETE_ROW'.
          MODIFY e_object-&amp;gt;mt_toolbar FROM ls_toolbar INDEX syst-tabix.

        WHEN cl_gui_alv_grid=&amp;gt;MC_FC_LOC_COPY_ROW.
          ls_toolbar-function = 'ADD_ROW'.
          MODIFY e_object-&amp;gt;mt_toolbar FROM ls_toolbar INDEX syst-tabix.
        WHEN OTHERS.
          CONTINUE.
      ENDCASE.

    ENDLOOP. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then trigger PAI:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      
METHOD handle_user_command.
DATA: lt_rows TYPE lvc_t_row.
CASE e_ucomm.
when 'ADD_ROW'.

      when OTHERS.
        return.
    ENDCASE.
        CALL METHOD sender-&amp;gt;get_selected_rows
         IMPORTING
           et_index_rows = mt_sel_rows
*        et_row_no     =
           .


    CALL METHOD cl_gui_cfw=&amp;gt;set_new_ok_code
      EXPORTING
        new_code = e_ucomm.

        .
  ENDMETHOD.                           "handle_user_command
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And finally my PAI Module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE PAI INPUT.
*   to react on oi_custom_events:
  call method cl_gui_cfw=&amp;gt;dispatch.
  CASE OK_CODE.
    WHEN 'EXIT'.
      PERFORM EXIT_PROGRAM.
    when 'ADD_ROW'.

              DATA: ld_next   TYPE i,
         ls_row    TYPE lvc_s_row.


        SORT event_receiver-&amp;gt;mt_sel_rows BY index DESCENDING. " !!!

        LOOP AT event_receiver-&amp;gt;mt_sel_rows INTO ls_row.
          READ TABLE it_outtab INTO wa_outtab INDEX ls_row-index.

          CLEAR: wa_outtab-FIELD1. 
          CLEAR: wa_outtab-FIELD2.
          CLEAR: wa_outtab-FIELD3.
          CLEAR: wa_outtab-FIELD4.
          wa_outtab-flag = 'N'.
          ls_celltab-Style = GRID1-&amp;gt;mc_style_enabled.
        CLEAR wa_outtab-Style.
* Alle Spalten der neuen Zeile auf editierbar einstellen
        ls_celltab-fieldname = 'FIELD1'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'FIELD2'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'FIELD3'.
        insert ls_celltab into table wa_outtab-Style.
        ls_celltab-fieldname = 'FIELD4'.
        insert ls_celltab into table wa_outtab-Style.
          ld_next = ls_row-index + 1.
          INSERT wa_outtab INTO it_outtab INDEX ld_next.
        ENDLOOP.
        Call METHOD GRID1-&amp;gt;refresh_table_display.
    WHEN OTHERS.
*     do nothing
  ENDCASE.
  CLEAR OK_CODE.
ENDMODULE.    &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only difference to your code is that i had to call refresh_table_display, else the new row doesn't appear.&lt;/P&gt;&lt;P&gt;But i still have the same problem now, as soon as i edit a cell, i get the same runtime error for any user_command then before. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;DTox2k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Oct 2008 12:17:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616366#M1087683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-21T12:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: alv grid OO runtime error after adding new rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616367#M1087684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I continued testing my program and i now think the problem is not how i add an row, it must be more general, because i have the same Problem with standard alv functions, so for example i have a button, that makes one cell of all selected rows editiable:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;      WHEN 'change'.


        call METHOD GRID1-&amp;gt;GET_SELECTED_ROWS
          IMPORTING
            et_index_rows = it_index_rows.
        clear wa_outtab-Style.
        ls_celltab-fieldname = 'ZZTXT'.
        ls_celltab-Style = GRID1-&amp;gt;mc_style_enabled.
        loop at it_index_rows into wa_index_rows.
          read TABLE it_outtab into wa_outtab INDEX wa_index_rows-INDEX.
          if ( wa_outtab-lock &amp;lt;&amp;gt; 'X' and wa_outtab-lock &amp;lt;&amp;gt; 'N' ).
            if ( wa_outtab-Style[] is not initial ).
              modify wa_outtab-Style from ls_celltab INDEX 1.
            else.
              insert ls_celltab into table wa_outtab-Style.
            endif.
            wa_outtab-lock = 'X'.
            modify it_outtab from wa_outtab INDEX wa_index_rows-INDEX.

          endif.
          clear wa_outtab.
        endloop.
* Refresh des Grids
        Call METHOD GRID1-&amp;gt;refresh_table_display.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This button works perfectly for all rows that are on my grid for the first display. Now, if i duplicate one of these rows (with MC_FC_LOC_COPY_ROW) and try to use my this button for the duplicated row, i get this runtime error again.&lt;/P&gt;&lt;P&gt;Any ideas what im doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;DTox2k&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 06:45:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616367#M1087684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T06:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: alv grid OO runtime error after adding new rows</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616368#M1087685</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I solved the Problem by myself.&lt;/P&gt;&lt;P&gt;My table it_outtab didn't have a column MANDT, this caused the "foreign_key_check"-error as soon as i changed any cell of a new row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Oct 2008 14:44:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-oo-runtime-error-after-adding-new-rows/m-p/4616368#M1087685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-22T14:44:22Z</dc:date>
    </item>
  </channel>
</rss>

