<?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: How to use function module SAPGUI_SET_FUNCTIONCODE? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328746#M512136</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     A screen contains a single output field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Counter ____&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     with the field reference "count".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     This field is changed in the single flow logic module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   process before output.&lt;/P&gt;&lt;P&gt;      module pbo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     and the default function code "=" is processed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; module pbo output.  add 1 to count.   if count &amp;gt; 20.&lt;/P&gt;&lt;P&gt;                      leave to screen 0.&lt;/P&gt;&lt;P&gt;                     endif.&lt;/P&gt;&lt;P&gt; call function 'SAPGUI_SET_FUNCTIONCODE'.&lt;/P&gt;&lt;P&gt; endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 08:14:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-05T08:14:36Z</dc:date>
    <item>
      <title>How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328739#M512129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that the function module SAPGUI_SET_FUNCTIONCODE is being used to manully trigger the PAI/PBO at the POV. However, I was not able to get it to even trigger anything. Need suggestion as of how to use this function module. I try to call it at the end of the POV but to no avail. Any help is greatly appreciated and rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 07:29:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328739#M512129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T07:29:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328740#M512130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       I've implemented it like this in one of the requirements.&lt;/P&gt;&lt;P&gt;MODULE user_command_9000 INPUT.&lt;/P&gt;&lt;P&gt;okcode = sy-ucomm.&lt;/P&gt;&lt;P&gt;  CASE okcode.&lt;/P&gt;&lt;P&gt;WHEN  'CLOS'.&lt;/P&gt;&lt;P&gt;      WAIT UP TO 10 SECONDS.&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'SAPGUI_SET_FUNCTIONCODE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          functioncode           = 'CLOS'&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          function_not_supported = 1&lt;/P&gt;&lt;P&gt;          OTHERS                 = 2.&lt;/P&gt;&lt;P&gt;MESSAGE i002(sy) WITH text-002.&lt;/P&gt;&lt;P&gt;      DELETE DATASET fname.&lt;/P&gt;&lt;P&gt;      LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jyoti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 07:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328740#M512130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T07:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328741#M512131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jyoti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does it actually proceed to fire the PBO/PAI event?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 07:38:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328741#M512131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T07:38:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328742#M512132</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;Refer program : MSPAMO01 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      PBO time event&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;&amp;lt;b&amp;gt;PROCESS BEFORE OUTPUT.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  MODULE refresh_pat03?.&lt;/P&gt;&lt;P&gt;  MODULE status_conversion.         "For compatibility with Rel. 30A-30C&lt;/P&gt;&lt;P&gt;  MODULE read_packages_and_queue.&lt;/P&gt;&lt;P&gt;  MODULE check_attributes.          "Ensure that PAT03 is consistent&lt;/P&gt;&lt;P&gt;  MODULE purge_old_pat01_entries.   "Ensure that queue is consistent&lt;/P&gt;&lt;P&gt;  MODULE delete_q_from_indx.        "For consistency with 3.1H/4.0A +&lt;/P&gt;&lt;P&gt;  MODULE read_ocs_semaphore.&lt;/P&gt;&lt;P&gt;  MODULE read_batch_jobs.&lt;/P&gt;&lt;P&gt;  MODULE set_title.&lt;/P&gt;&lt;P&gt;  MODULE set_status.&lt;/P&gt;&lt;P&gt;  MODULE set_fields.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  MODULE suppress_dialog.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      PAI time event&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------" /&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;  MODULE ok_code.&lt;/P&gt;&lt;P&gt;  MODULE ok_code AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE suppress_dialog OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF gv_start_import = on.&lt;/P&gt;&lt;P&gt;    ok_code = 'IMPL'.&lt;/P&gt;&lt;P&gt;    gv_suppress_ok_code = ok_code.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;    CALL FUNCTION 'SAPGUI_SET_FUNCTIONCODE'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        functioncode           = ok_code&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        function_not_supported = 1&lt;/P&gt;&lt;P&gt;        OTHERS                 = 99.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      SUPPRESS DIALOG.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                             "SUPPRESS_DIALOGUE  OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 07:39:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328742#M512132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T07:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328743#M512133</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;Afer POV control will not go to PBO until y pressed ENTER . for overcome this you need to set a dummy OKCODE. in the following way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;#147;SAPGUI_SET_FUNCTIONCODE&amp;#148; &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;FUNCTIONCODE = &amp;#147;=&amp;#148; &lt;/P&gt;&lt;P&gt;EXCEPTION &lt;/P&gt;&lt;P&gt;FUNCTION_NOT_SUPPORTED = 1 &lt;/P&gt;&lt;P&gt;OTHERS = 2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  MODULES l201_blanklines. &lt;/P&gt;&lt;P&gt;  LOOP RK intdrad WITH CONTROL tab_x CURSOR tab_x-current_line. &lt;/P&gt;&lt;P&gt;    MODULES l201_init. &lt;/P&gt;&lt;P&gt;  FINAL LOOP. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  MODULES l201_new. &lt;/P&gt;&lt;P&gt;  LOOP RK intdrad.                                         &lt;/P&gt;&lt;P&gt;    CHAIN. &lt;/P&gt;&lt;P&gt;      FIELD equi equnr. &lt;/P&gt;&lt;P&gt;      MODULES l201_bear. &lt;/P&gt;&lt;P&gt;    FINAL CHAIN. &lt;/P&gt;&lt;P&gt;  FINAL LOOP. &lt;/P&gt;&lt;P&gt;  MODULES l201_end. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;DEL&gt;Importantly&lt;/DEL&gt; &lt;/P&gt;&lt;P&gt;PROCESS ON VALUE REQUEST. &lt;/P&gt;&lt;P&gt;  field EQUI EQUNR of modules ZZ_DMS_MULTIPLE_EQUIS. &lt;/P&gt;&lt;P&gt;&lt;DEL&gt;Importantly&lt;/DEL&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;--End to screen Logic &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Modules ZZ_DMS_MULTIPLE_EQUIS &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;#147;F4IF_FIELD_VALUE_REQUEST&amp;#148; &lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;    TABNAME = &amp;#147;EQUI&amp;#148; &lt;/P&gt;&lt;P&gt;    FIELDNAME = &amp;#147;EQUNR&amp;#148; &lt;/P&gt;&lt;P&gt;    SEARCHHELP = &amp;#147;EQUI&amp;#148; &lt;/P&gt;&lt;P&gt;    SHLPPARAM = &amp;#147;EQUNR&amp;#148; &lt;/P&gt;&lt;P&gt;    DYNPPROG = system-repid &lt;/P&gt;&lt;P&gt;    DYNPNR = system-dynnr &lt;/P&gt;&lt;P&gt;    DYNPROFIELD = &amp;#147;EQUI EQUNR&amp;#148; &lt;/P&gt;&lt;P&gt;    MULTIPLE_CHOICE = &amp;#147;X&amp;#148; &lt;/P&gt;&lt;P&gt; TABLES &lt;/P&gt;&lt;P&gt;   RETURN_TAB = lt_return_tab &lt;/P&gt;&lt;P&gt; EXCEPTION &lt;/P&gt;&lt;P&gt;   FIELD_NOT_FOUND = 1 &lt;/P&gt;&lt;P&gt;   NO_HELP_FOR_FIELD = 2 &lt;/P&gt;&lt;P&gt;   INCONSISTENT_HELP = 3 &lt;/P&gt;&lt;P&gt;   NO_VALUES_FOUND = 4 &lt;/P&gt;&lt;P&gt;   OTHERS = 5 &lt;/P&gt;&lt;P&gt;          . &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;#147;SAPGUI_SET_FUNCTIONCODE&amp;#148; &lt;/P&gt;&lt;P&gt; EXPORTING &lt;/P&gt;&lt;P&gt;   FUNCTIONCODE = &amp;#147;=&amp;#148; &lt;/P&gt;&lt;P&gt; EXCEPTION &lt;/P&gt;&lt;P&gt;   FUNCTION_NOT_SUPPORTED = 1 &lt;/P&gt;&lt;P&gt;   OTHERS = 2 &lt;/P&gt;&lt;P&gt;          . &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;... &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION &amp;#147;DYNP_VALUES_UPDATE&amp;#148; &lt;/P&gt;&lt;P&gt;  EXPORTING &lt;/P&gt;&lt;P&gt;    DYNAME = system-repid &lt;/P&gt;&lt;P&gt;    DYNUMB = system-dynnr &lt;/P&gt;&lt;P&gt;  TABLES &lt;/P&gt;&lt;P&gt;    DYNPFIELDS = lt_dynpfields &lt;/P&gt;&lt;P&gt; EXCEPTION &lt;/P&gt;&lt;P&gt;   INVALID_ABAPWORKAREA = 1 &lt;/P&gt;&lt;P&gt;   INVALID_DYNPROFIELD = 2 &lt;/P&gt;&lt;P&gt;   INVALID_DYNPRONAME = 3 &lt;/P&gt;&lt;P&gt;   MORE INVALID_DYNPRONUMMER = 4 &lt;/P&gt;&lt;P&gt;   INVALID_REQUEST = 5 &lt;/P&gt;&lt;P&gt;   NO_FIELDDESCRIPTION = 6 &lt;/P&gt;&lt;P&gt;   UNDEFIND_ERROR = 7 &lt;/P&gt;&lt;P&gt;   OTHERS = 8&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; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 07:41:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328743#M512133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T07:41:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328744#M512134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've used it in PAI event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 07:48:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328744#M512134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T07:48:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328745#M512135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sudheer, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used it in the POV event just like you did, but it didn't event fire PBO once I select an entry from the search help. A lot of people here claim that they are able to get PBo fired with this function module and I wonder how they actually did it. At least I was not able to get it working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 08:00:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328745#M512135</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T08:00:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to use function module SAPGUI_SET_FUNCTIONCODE?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328746#M512136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     A screen contains a single output field:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Counter ____&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     with the field reference "count".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     This field is changed in the single flow logic module:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   process before output.&lt;/P&gt;&lt;P&gt;      module pbo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     and the default function code "=" is processed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; module pbo output.  add 1 to count.   if count &amp;gt; 20.&lt;/P&gt;&lt;P&gt;                      leave to screen 0.&lt;/P&gt;&lt;P&gt;                     endif.&lt;/P&gt;&lt;P&gt; call function 'SAPGUI_SET_FUNCTIONCODE'.&lt;/P&gt;&lt;P&gt; endmodule.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 08:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-use-function-module-sapgui-set-functioncode/m-p/2328746#M512136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T08:14:36Z</dc:date>
    </item>
  </channel>
</rss>

