<?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: call screen 2000 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115966#M739930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.. I have created a small test program which works fine for me, it also updates the description of the material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZTEST_NP.

PARAMETER:
P_WERKS TYPE T001W-WERKS.

*pushbutton select
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN PUSHBUTTON /30(10) SELECT USER-COMMAND RETR.


SELECTION-SCREEN BEGIN OF SCREEN 2000.
PARAMETERS: P_MATNR TYPE MATNR,
            P_MAKTX TYPE MAKTX.
SELECTION-SCREEN END   OF SCREEN 2000.


AT SELECTION-SCREEN.
  CASE SY-UCOMM.
    WHEN 'RETR'.
      CALL SELECTION-SCREEN 2000.
  ENDCASE.

AT SELECTION-SCREEN ON P_MATNR. " &amp;lt;&amp;lt; your field for material
  DATA BEGIN OF LNA_DYNPF OCCURS 1.
          INCLUDE STRUCTURE DYNPREAD.
  DATA END OF LNA_DYNPF.

  SELECT SINGLE MAKTX
         INTO P_MAKTX
         FROM MAKT
         WHERE MATNR = P_MATNR
         AND   SPRAS = SY-LANGU.
  IF SY-SUBRC = 0.

    LNA_DYNPF-FIELDNAME  = 'P_MAKTX'.   " field name
    LNA_DYNPF-FIELDVALUE = P_MAKTX.   " value
    APPEND LNA_DYNPF.


    CALL FUNCTION 'DYNP_VALUES_UPDATE'
      EXPORTING
        DYNAME               = SY-CPROG        " your program
        DYNUMB               = '2000'        " your screen
      TABLES
        DYNPFIELDS           = LNA_DYNPF
      EXCEPTIONS
        INVALID_ABAPWORKAREA = 1
        INVALID_DYNPROFIELD  = 2
        INVALID_DYNPRONAME   = 3
        INVALID_DYNPRONUMMER = 4
        INVALID_REQUEST      = 5
        NO_FIELDDESCRIPTION  = 6
        UNDEFIND_ERROR       = 7
        OTHERS               = 8.

  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Nov 2007 22:21:15 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2007-11-26T22:21:15Z</dc:date>
    <item>
      <title>call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115954#M739918</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;i have created a new screen 2000 and in the screen i have some parameter which is a user will input a value of the material and in the same screen i need to output a material description based on the material inputted..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does any body know how to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you regards,&lt;/P&gt;&lt;P&gt;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:32:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115954#M739918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T21:32:39Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115955#M739919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Mae,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Material desciption van be found in MAKT Table . So for the Material on the Screen go to MAKT table , Pass the same to MATNR and provide the language key and MAKTX field of MAKT hold the material description.&lt;/P&gt;&lt;P&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;&lt;/P&gt;&lt;P&gt;Saket Sharma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;null&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:39:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115955#M739919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T21:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115956#M739920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can find it out in MAKT.&lt;/P&gt;&lt;P&gt;You have to make sure of the language also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE MAKTX
INTO L_MAKTX
FROM MAKT
WEHRE MATNR = L_MATNR " &amp;lt;&amp;lt; FROM THE SCREEN
SPRAS = SY-LANGU.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:40:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115956#M739920</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-26T21:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115957#M739921</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;what i was trying to asked is that is there an "at selection screen" in the new screen which i created?&lt;/P&gt;&lt;P&gt;i none..then what is the alternative for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you &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;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:41:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115957#M739921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T21:41:13Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115958#M739922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have created a screen 2000 in dynpro than you can write down a code to PAI section to facth the material description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:48:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115958#M739922</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-26T21:48:06Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115959#M739923</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;&lt;/P&gt;&lt;P&gt;When i try it it has an error l_matnr is unknown...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by the way i already have two screen in here the default 1000 and the one which i was created the 2000&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:49:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115959#M739923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T21:49:34Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115960#M739924</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;Is the Screen used for Dialog Program or Report Program ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Case its a Dialog program , Declare a Screen Field for Material description and mark it as out put only. In your PAI, Say at Sy-UCOMM = 'ENTE' (After Matnr is filled, then user will have to press Enter), Write the Query Mentioned above and fill the value obtained to the Screen Field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a Report, then you will have to disable the field for Input in AT SELECTION SCREEN OUTPUT Event.&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;Saket Sharma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:52:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115960#M739924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T21:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115961#M739925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naimesh Patel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how will i do that?&lt;/P&gt;&lt;P&gt;i'm sorry but i am just new to  the screen painter...&lt;/P&gt;&lt;P&gt;can you teach me how to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:52:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115961#M739925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T21:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115962#M739926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok.. Now, I got it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use this FM to update your materila description on the screen 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
at selection screen on P_MATNR. " &amp;lt;&amp;lt; your field for material
DATA BEGIN OF LNA_DYNPF OCCURS 1.
INCLUDE STRUCTURE DYNPREAD.
DATA END OF LNA_DYNPF.
 
 SELECT SINGLE MAKTX
INTO P_MAKTX
FROM MAKT
WEHRE MATNR = P_MATNR " &amp;lt;&amp;lt;your field from the screen
SPRAS = SY-LANGU.


 
   LNA_DYNPF-FIELDNAME  = 'P_MAKTX'.   " field name 
    LNA_DYNPF-FIELDVALUE = P_MATKX.   " value
    APPEND LNA_DYNPF.
 
 
    CALL FUNCTION 'DYNP_VALUES_UPDATE'
         EXPORTING
              DYNAME               = l_cporg        " your program
              DYNUMB               = '2000'        " your screen
         TABLES
              DYNPFIELDS           = LNA_DYNPF
         EXCEPTIONS
              INVALID_ABAPWORKAREA = 1
              INVALID_DYNPROFIELD  = 2
              INVALID_DYNPRONAME   = 3
              INVALID_DYNPRONUMMER = 4
              INVALID_REQUEST      = 5
              NO_FIELDDESCRIPTION  = 6
              UNDEFIND_ERROR       = 7
              OTHERS               = 8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 21:53:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115962#M739926</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-26T21:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115963#M739927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where will i put it because&lt;/P&gt;&lt;P&gt;there is an error p_matnr is unknown but i had already made it in the screen 2000..&lt;/P&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&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;thank you...&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;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 22:00:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115963#M739927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T22:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115964#M739928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please post your code for selection screen here?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 22:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115964#M739928</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-26T22:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115965#M739929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETER:&lt;/P&gt;&lt;P&gt;                 p_werks  TYPE   t001w-werks,    &lt;/P&gt;&lt;P&gt;                 p_aufnr    TYPE   afpo-aufnr ,    &lt;/P&gt;&lt;P&gt;                 p_vornr    TYPE   plpo-vornr ,&lt;/P&gt;&lt;P&gt;                 p_datum    TYPE   sy-datum,&lt;/P&gt;&lt;P&gt;                 p_zsc1     TYPE   z2cwarpl-zsc1 OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*pushbutton select&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /30(10) select USER-COMMAND retr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when you click on the push button a new selection screen will appear which was i created as the screen 2000:&lt;/P&gt;&lt;P&gt;in the screen 2000 there is a parameter P_matnr wich is a user will input a material number and as long as the user inputted the material number the material description will automatically appear in the same 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;thank you...&lt;/P&gt;&lt;P&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;mae&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 22:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115965#M739929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-26T22:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: call screen 2000</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115966#M739930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.. I have created a small test program which works fine for me, it also updates the description of the material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZTEST_NP.

PARAMETER:
P_WERKS TYPE T001W-WERKS.

*pushbutton select
SELECTION-SCREEN SKIP 1.
SELECTION-SCREEN PUSHBUTTON /30(10) SELECT USER-COMMAND RETR.


SELECTION-SCREEN BEGIN OF SCREEN 2000.
PARAMETERS: P_MATNR TYPE MATNR,
            P_MAKTX TYPE MAKTX.
SELECTION-SCREEN END   OF SCREEN 2000.


AT SELECTION-SCREEN.
  CASE SY-UCOMM.
    WHEN 'RETR'.
      CALL SELECTION-SCREEN 2000.
  ENDCASE.

AT SELECTION-SCREEN ON P_MATNR. " &amp;lt;&amp;lt; your field for material
  DATA BEGIN OF LNA_DYNPF OCCURS 1.
          INCLUDE STRUCTURE DYNPREAD.
  DATA END OF LNA_DYNPF.

  SELECT SINGLE MAKTX
         INTO P_MAKTX
         FROM MAKT
         WHERE MATNR = P_MATNR
         AND   SPRAS = SY-LANGU.
  IF SY-SUBRC = 0.

    LNA_DYNPF-FIELDNAME  = 'P_MAKTX'.   " field name
    LNA_DYNPF-FIELDVALUE = P_MAKTX.   " value
    APPEND LNA_DYNPF.


    CALL FUNCTION 'DYNP_VALUES_UPDATE'
      EXPORTING
        DYNAME               = SY-CPROG        " your program
        DYNUMB               = '2000'        " your screen
      TABLES
        DYNPFIELDS           = LNA_DYNPF
      EXCEPTIONS
        INVALID_ABAPWORKAREA = 1
        INVALID_DYNPROFIELD  = 2
        INVALID_DYNPRONAME   = 3
        INVALID_DYNPRONUMMER = 4
        INVALID_REQUEST      = 5
        NO_FIELDDESCRIPTION  = 6
        UNDEFIND_ERROR       = 7
        OTHERS               = 8.

  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Nov 2007 22:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-2000/m-p/3115966#M739930</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-11-26T22:21:15Z</dc:date>
    </item>
  </channel>
</rss>

