<?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: problem in loop screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534727#M1264292</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;Test the following Code i have made the Changes and it is working according to your requirement now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b1.
PARAMETERS: p_new RADIOBUTTON GROUP new USER-COMMAND a DEFAULT 'X',
            p_saved RADIOBUTTON GROUP new.
SELECTION-SCREEN END OF BLOCK b1.

SELECTION-SCREEN :BEGIN OF BLOCK b3 WITH FRAME TITLE text-013.
PARAMETERS:p_rec TYPE string.
SELECTION-SCREEN :END OF BLOCK b3.

SELECTION-SCREEN: BEGIN OF BLOCK b4 WITH FRAME TITLE text-014.
PARAMETERS:p_excel LIKE rlgrap-filename MEMORY ID m01.
SELECTION-SCREEN:END OF BLOCK b4.

AT SELECTION-SCREEN OUTPUT.
  PERFORM f_disable.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  f_disable
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
FORM f_disable.

  LOOP AT SCREEN.
    IF p_new EQ 'X'.

      IF screen-name = 'P_EXCEL'.
        screen-input = 0 .
        screen-intensified = 0.
        MODIFY SCREEN.
      ENDIF.

    ENDIF.

    IF p_saved EQ 'X'.
      IF screen-name = 'P_REC'.
        screen-input = 0.
        screen-intensified = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDIF.

  ENDLOOP.

ENDFORM.                    "f_disable

INITIALIZATION.
  PERFORM f_disable.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 27 Apr 2009 12:18:20 GMT</pubDate>
    <dc:creator>faisalatsap</dc:creator>
    <dc:date>2009-04-27T12:18:20Z</dc:date>
    <item>
      <title>problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534717#M1264282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection screen: begin of block b1.&lt;/P&gt;&lt;P&gt;p_new     radiobutton group new,&lt;/P&gt;&lt;P&gt;p_saved   radiobutton group new.&lt;/P&gt;&lt;P&gt;selection screen: end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen :begin of block b3 with frame title text-013.&lt;/P&gt;&lt;P&gt;parameters:p_rec type string.&lt;/P&gt;&lt;P&gt;selection-screen :end of block b3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: begin of block b4 with frame title text-014.&lt;/P&gt;&lt;P&gt;parameters:p_excel like RLGRAP-FILENAME MEMORY ID M01.&lt;/P&gt;&lt;P&gt;selection-screen:end of block b4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now my requirment is that when radio button p_new is selected p_excel should be disabled&lt;/P&gt;&lt;P&gt;and when p_saved in checked p_REC should be disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen output.&lt;/P&gt;&lt;P&gt;perform f_disable-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form f_disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if p_new eq 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name = 'P_EXCEL'.&lt;/P&gt;&lt;P&gt;screen-input = 0 .&lt;/P&gt;&lt;P&gt;screen-intensified = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_saved eq 'X'.&lt;/P&gt;&lt;P&gt;if screen-name = 'P_REC'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-intensified = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;The code is also working but i have one problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when the slection screen is displayed no field is disabled&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;I have to press enter for the code to work i.e when i press enter only then the code for the particular radio button works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to get around this and the code should work without pressing enter when any radio buttton is changed.&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;Aditya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ADITYA KULKARNI on Apr 27, 2009 1:55 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ADITYA KULKARNI on Apr 27, 2009 1:56 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ADITYA KULKARNI on Apr 27, 2009 1:56 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 11:54:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534717#M1264282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T11:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534718#M1264283</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;Use the code this way....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;selection-screen: begin of block b1.
parameters: p_new radiobutton group new USER-COMMAND fcode,
p_saved radiobutton group new.
selection-screen: end of block b1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:00:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534718#M1264283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534719#M1264284</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;Can you please elobrate how to use the user-command addition for the radio-button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:03:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534719#M1264284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534720#M1264285</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;You just have to declare it in the declaration with radio-button and need not write any other code apart from it... this will automatically work when you select any of the radio button the fields will get disabled....&lt;/P&gt;&lt;P&gt;just copy and paste the declaration I gave you above and that works as I have tested it as well....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534720#M1264285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534721#M1264286</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;see the change in code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
selection screen: begin of block b1.
p_new radiobutton group new user-command 'ABC' ,        "add user commandthis it will work..
p_saved radiobutton group new.
selection screen: end of block b1.

selection-screen :begin of block b3 with frame title text-013.
parameters:p_rec type string.
selection-screen :end of block b3.

selection-screen: begin of block b4 with frame title text-014.
parameters:p_excel like RLGRAP-FILENAME MEMORY ID M01.
selection-screen:end of block b4.

now my requirment is that when radio button p_new is selected p_excel should be disabled
and when p_saved in checked p_REC should be disabled.

I have written the following code:

At selection-screen output.
perform f_disable-screen.



form f_disable.

loop at screen.
if p_new eq 'X'.

if screen-name = 'P_EXCEL'.
screen-input = 0 .
screen-intensified = 0.
modify screen.
endif.

endif.

if p_saved eq 'X'.
if screen-name = 'P_REC'.
screen-input = 0.
screen-intensified = 0.
modify screen.
endif.

endloop.

endform.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534721#M1264286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534722#M1264287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Siddarth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are absolutely correct .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i have one question this user command is valid for the entire group of radio button right?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:08:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534722#M1264287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534723#M1264288</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;yes its correct... its valid for entire group&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:09:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534723#M1264288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534724#M1264289</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 MODIFY SCREEN has no effect because p_new and p_save will always be blank when you enter the AT SELECTION-SCREEN OUTPUT statement for the frist time. Change the initial values of your parameters p_new and p_save so you will see deactivations (DEFAULT...).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you change a value on your selection screen you will always have to hit ENTER to make the system take the new field value and process your selection screen events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Issa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:10:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534724#M1264289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:10:05Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534725#M1264290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Aditya,&lt;/P&gt;&lt;P&gt; This code working fine i have to give one suggestion. At starting of selection screen not a single input is disabled for that u have to assign default value 'X' to any radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: begin of block b1.&lt;/P&gt;&lt;P&gt;parameter : p_new radiobutton group  new USER-COMMAND fcode  default 'X',  "change&lt;/P&gt;&lt;P&gt;p_saved radiobutton group new.&lt;/P&gt;&lt;P&gt;selection-screen: end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that at starting p_excel is by default disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regeards,&lt;/P&gt;&lt;P&gt;   Yogesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:16:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534725#M1264290</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534726#M1264291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends , &lt;/P&gt;&lt;P&gt;I think Even if u add the Key Word ' &lt;EM&gt;USER-COMMAND '&lt;/EM&gt; in the statement for parameter definition --&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_NEW RADIOBUTTON GROUP NEW USER-COMMAND ABC  .&lt;/P&gt;&lt;P&gt;for the first time when u will execute ,this will not work as per requiremnt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just add default option as well in yr parameter definition ,will give u the best suited solution ,&lt;/P&gt;&lt;P&gt;just check out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_NEW RADIOBUTTON GROUP NEW USER-COMMAND ABC  DEFAULT 'X',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:17:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534726#M1264291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-27T12:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem in loop screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534727#M1264292</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;Test the following Code i have made the Changes and it is working according to your requirement now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b1.
PARAMETERS: p_new RADIOBUTTON GROUP new USER-COMMAND a DEFAULT 'X',
            p_saved RADIOBUTTON GROUP new.
SELECTION-SCREEN END OF BLOCK b1.

SELECTION-SCREEN :BEGIN OF BLOCK b3 WITH FRAME TITLE text-013.
PARAMETERS:p_rec TYPE string.
SELECTION-SCREEN :END OF BLOCK b3.

SELECTION-SCREEN: BEGIN OF BLOCK b4 WITH FRAME TITLE text-014.
PARAMETERS:p_excel LIKE rlgrap-filename MEMORY ID m01.
SELECTION-SCREEN:END OF BLOCK b4.

AT SELECTION-SCREEN OUTPUT.
  PERFORM f_disable.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  f_disable
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
FORM f_disable.

  LOOP AT SCREEN.
    IF p_new EQ 'X'.

      IF screen-name = 'P_EXCEL'.
        screen-input = 0 .
        screen-intensified = 0.
        MODIFY SCREEN.
      ENDIF.

    ENDIF.

    IF p_saved EQ 'X'.
      IF screen-name = 'P_REC'.
        screen-input = 0.
        screen-intensified = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDIF.

  ENDLOOP.

ENDFORM.                    "f_disable

INITIALIZATION.
  PERFORM f_disable.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Apr 2009 12:18:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-loop-screen/m-p/5534727#M1264292</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-04-27T12:18:20Z</dc:date>
    </item>
  </channel>
</rss>

