<?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: PBO module code for field diable/hide not working in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930007#M1599704</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;  Your using the code in screen exit right. type Break-point inside the loop and check whether the coding is triggering or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhina..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jun 2011 05:41:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-06-22T05:41:32Z</dc:date>
    <item>
      <title>PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930001#M1599698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;I have been struggling to hide an input field in a custom screen area, with a code like this, in the PBO module of a screen-exit.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN.
    IF SCREEN-NAME = 'VIQMEL-ZZ_DLY'.
              SCREEN-INPUT = 0.
              MODIFY SCREEN.
   ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Several alternative codes tried with the help of many SDN threads (also to hide field), but no influence on the field above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Request your kind help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jogeswara Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 01:33:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930001#M1599698</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2011-06-22T01:33:55Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930002#M1599699</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;to hide the field, screen-output must be set to '0' too. You can screen-active to '0'. That sets both screen-input and screen-output to '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 04:53:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930002#M1599699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T04:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930003#M1599700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jogeswara Rao, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this, &lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF SCREEN-NAME = 'VIQMEL-ZZ_DLY'.&lt;/P&gt;&lt;P&gt;              SCREEN-ACTIVE = 0.&lt;/P&gt;&lt;P&gt;              MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 05:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930003#M1599700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T05:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930004#M1599701</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;Screen-input = 0 just makes the screen disabled for input.&lt;/P&gt;&lt;P&gt;If you intend to make the field hidden, try using :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF SCREEN-NAME = 'VIQMEL-ZZ_DLY'.&lt;/P&gt;&lt;P&gt;              &lt;STRONG&gt;SCREEN-INVISIBLE&lt;/STRONG&gt; = 1.&lt;/P&gt;&lt;P&gt;              &lt;STRONG&gt;SCREEN-ACTIVE&lt;/STRONG&gt;= 0.&lt;/P&gt;&lt;P&gt;              MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Also, you should post it in UI programming forum for better responses.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sap_wiz on Jun 22, 2011 10:58 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 05:28:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930004#M1599701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T05:28:24Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930005#M1599702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you all for the replies.&lt;/P&gt;&lt;P&gt;As I said in my post, every code suggested above was there among my trials last few days, without any success.&lt;/P&gt;&lt;P&gt;It is not the syntax, something else is missing, which I am not able to understand being basically from fucnctional background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you SAP_Wiz for your suggestion to post in other forum, but the moderator terminates such efforts by saying that &lt;STRONG&gt;'a duplicate post'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jogeswara Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 05:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930005#M1599702</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2011-06-22T05:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930006#M1599703</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;Is there some condition on which you wish to hide the field?&lt;/P&gt;&lt;P&gt;Like some user input?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 05:40:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930006#M1599703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T05:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930007#M1599704</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;  Your using the code in screen exit right. type Break-point inside the loop and check whether the coding is triggering or not?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhina..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 05:41:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930007#M1599704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T05:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930008#M1599705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've got some clue.&lt;/P&gt;&lt;P&gt;In fact I was not attracted towards a message displayed in the Status Bar while checking the syntax, because it was displayed in green. (After this message there is no problem in generating active object.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The message reads:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;There is no main program for include ZXQQMO03&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You may please guide me now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(I am having a module in PAI also, where the code is working without any such message)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jogeswara Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 05:47:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930008#M1599705</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2011-06-22T05:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930009#M1599706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes SAP_WIZ,&lt;/P&gt;&lt;P&gt;I've tried withat too for a long time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jogeswara Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 06:49:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930009#M1599706</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2011-06-22T06:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930010#M1599707</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;in PBO module, where r u writing this code for hiding? i mean between loop and endloop? can u pls paste ur code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you can also try once again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'your field name'.&lt;/P&gt;&lt;P&gt;screen-active = '0'&lt;/P&gt;&lt;P&gt;screen-invisible = '1'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 08:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930010#M1599707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T08:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930011#M1599708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Medha, &lt;/P&gt;&lt;P&gt;My code is there in my first post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Thank you all for replying&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;The problem is solved. As i wrote there is no syntax error. It started working with the same code after I deleted the screen (0103)&lt;/P&gt;&lt;P&gt;and recreated (SE51). Used the same code.&lt;/P&gt;&lt;P&gt;Tried both disabling and hiding codes, both are working.&lt;/P&gt;&lt;P&gt;But with the disabling code, the fields are filled with ******.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way to hide entire screen-area (0103)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jogeswara Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 09:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930011#M1599708</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2011-06-22T09:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930012#M1599709</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;  we can do it in the way use group option in the screen.&lt;/P&gt;&lt;P&gt;better create one group for all the screen elements ref the group 'G1' and write the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT SCREEN.
IF screen-group1 = 'G1'.

screen-ACTIVE = '0'.

ENDIF.
MODIFY SCREEN.
ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope its helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhina..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 10:51:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930012#M1599709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T10:51:58Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930013#M1599710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for response.&lt;/P&gt;&lt;P&gt;But I am using exactly the same code at present which does not hide the screen area, but hides all the fields belonging to this grooup.&lt;/P&gt;&lt;P&gt;The screen Box and Text Headings remain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jogeswara Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 11:09:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930013#M1599710</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2011-06-22T11:09:56Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930014#M1599711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to make sure you have selected screen box and all the fields and assigned them to the same group.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 11:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930014#M1599711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T11:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930015#M1599712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's it.&lt;/P&gt;&lt;P&gt;I did that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to SAP_wiz and Dhina DMD.&lt;/P&gt;&lt;P&gt;Closing the thread now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Jogeswara Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 11:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930015#M1599712</guid>
      <dc:creator>jogeswararao_kavala</dc:creator>
      <dc:date>2011-06-22T11:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: PBO module code for field diable/hide not working</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930016#M1599713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please mark the thread as answered if your problem is solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2011 11:34:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pbo-module-code-for-field-diable-hide-not-working/m-p/7930016#M1599713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-06-22T11:34:46Z</dc:date>
    </item>
  </channel>
</rss>

