<?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: Get Screen element name at runtime in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142059#M1191851</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 can use the GET CURSOR statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Feb 2009 07:15:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-04T07:15:27Z</dc:date>
    <item>
      <title>Get Screen element name at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142058#M1191850</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 have 120 fields on the screen. My query, how can I get the screen element(Suppose Button) name at runtime.Is there any system field or any FM which returns the Screen element name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I do not want to use Loop at screen due to a lot of screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sanket sethi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 07:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142058#M1191850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T07:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: Get Screen element name at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142059#M1191851</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 can use the GET CURSOR statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 07:15:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142059#M1191851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T07:15:27Z</dc:date>
    </item>
    <item>
      <title>Re: Get Screen element name at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142060#M1191852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to check the name of Range Icon. How it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 07:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142060#M1191852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T07:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: Get Screen element name at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142061#M1191853</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;this is the sample code with using get cursor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES : LFA1, LFB1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES : BEGIN OF VENDOR,
        LIFNR LIKE LFA1-LIFNR,
        NAME1 LIKE LFA1-NAME1,
        ORT01 LIKE LFA1-ORT01,
        END OF VENDOR,

        BEGIN OF VENDOR1,
        LIFNR LIKE LFA1-LIFNR,
        LAND1 LIKE LFA1-LAND1,
        BUKRS LIKE LFB1-BUKRS,
        END OF VENDOR1.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : VENDOR_TAB TYPE STANDARD TABLE OF VENDOR INITIAL SIZE 20 WITH HEADER LINE,
       VENDOR1_TAB TYPE STANDARD TABLE OF VENDOR1 INITIAL SIZE 20 WITH HEADER LINE,
       FLDNAME(25),
       FLDVALUE(25).

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

TOP-OF-PAGE DURING LINE-SELECTION.
  WRITE :/ 'SECONDART LIST FOR VENDOR ID:', VENDOR_TAB-LIFNR COLOR 3.
  ULINE.

START-OF-SELECTION.

  SELECT LIFNR NAME1 ORT01
  FROM LFA1
  INTO CORRESPONDING FIELDS OF TABLE VENDOR_TAB.


AT LINE-SELECTION.

  GET CURSOR FIELD FLDNAME VALUE FLDVALUE.

  CASE FLDNAME.

    WHEN 'VENDOR_TAB-LIFNR' OR 'VENDOR_TAB-NAME1' OR 'VENDOR_TAB-ORT01'.

      IF SY-LSIND EQ 1.
        SELECT A~LIFNR A~LAND1 B~BUKRS
          FROM LFA1 AS A
          INNER JOIN LFB1 AS B
          ON A~LIFNR = B~LIFNR
          INTO CORRESPONDING FIELDS OF TABLE VENDOR1_TAB
          WHERE A~LIFNR = VENDOR_TAB-LIFNR.

        WRITE : /1 TEXT-001, 13 TEXT-004, 46 TEXT-005.
        ULINE.
        LOOP AT VENDOR1_TAB.

          WRITE : /1 VENDOR1_TAB-LIFNR, 13 VENDOR1_TAB-LAND1, 46 VENDOR1_TAB-BUKRS.

        ENDLOOP.
        ULINE.
        IF SY-SUBRC &amp;lt;&amp;gt; 0.
          MESSAGE E005.
        ENDIF.

      ENDIF.

    WHEN OTHERS.

      MESSAGE " any message that you want.

  ENDCASE.

END-OF-SELECTION.

  WRITE : /1 TEXT-001, 13 TEXT-002, 46 TEXT-003.
  ULINE.

  FORMAT HOTSPOT.

  LOOP AT VENDOR_TAB.

    WRITE : /1 VENDOR_TAB-LIFNR, 13 VENDOR_TAB-NAME1, 46 VENDOR_TAB-ORT01.

    HIDE : VENDOR_TAB-LIFNR.

  ENDLOOP.
  ULINE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it will help you.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Arun kayal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 07:19:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142061#M1191853</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T07:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Get Screen element name at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142062#M1191854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;see this &lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="1203646"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 07:21:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142062#M1191854</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T07:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Get Screen element name at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142063#M1191855</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 Sample hope will solve out your problem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: kna1, vbrp.
TYPES: BEGIN OF t_test,
  name(50),
END OF t_test.
DATA: it TYPE STANDARD TABLE OF t_test WITH HEADER LINE.

SELECTION-SCREEN BEGIN OF BLOCK a WITH FRAME TITLE text-001.
SELECT-OPTIONS: sodate FOR sy-datum NO-EXTENSION,
                sokunnr FOR kna1-kunnr NO INTERVALS,
                sopack FOR vbrp-mvgr1 NO INTERVALS.
SELECTION-SCREEN END OF BLOCK a.


LOOP AT it INTO it.
  WRITE: / it-name.
ENDLOOP.


AT SELECTION-SCREEN OUTPUT.
  CLEAR: it, it[].
  LOOP AT SCREEN.
    it-name = screen-name.
    APPEND it TO it.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any else issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 07:38:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142063#M1191855</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-02-04T07:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Get Screen element name at runtime</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142064#M1191856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Sanket,&lt;/P&gt;&lt;P&gt;There are two function modules - DYNP_VALUES_READ and DYNP_VALUES_UPDATE - that can read the &lt;/P&gt;&lt;P&gt;values of screen fields and return values to them during the POV event.&lt;/P&gt;&lt;P&gt;Please try-out with the following code, perhaps that can help you solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***********************************************************************&lt;/P&gt;&lt;P&gt;     Function Modules to Read Screen Fields&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;Sometimes it is required to read the screen field values before they get&lt;/P&gt;&lt;P&gt;transferred into programme variables. &lt;/P&gt;&lt;P&gt;To achive the same the following steps may be carried out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Create an internal table to hold the fields names that you want to read. &lt;/P&gt;&lt;P&gt; This internal table is a standard table of dynpread type.&lt;/P&gt;&lt;P&gt; For ex. :&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;T_DF LIKE STANDARD TABLE OF DYNPREAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;INITIAL SIZE 0 WITH HEADER LINE.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; Also, declare two local variables to pass the programme name and &lt;/P&gt;&lt;P&gt;screen number to the function module&lt;/P&gt;&lt;P&gt; For ex. : &lt;/P&gt;&lt;P&gt;  Variable to hold the program name&lt;/P&gt;&lt;P&gt;   l_repid LIKE d020s-prog&lt;/P&gt;&lt;P&gt;  Variable to hold the screen number&lt;/P&gt;&lt;P&gt;   l_scrnr LIKE d020s-dnum   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Populate the internal table with the field names that is to be read.&lt;/P&gt;&lt;P&gt; For ex. :&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;T_DF-FIELDNAME = 'KNA1-KUNNR'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;APPEND T_DF&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Take extra care when populating the field name of table control. &lt;/P&gt;&lt;P&gt;In that we will have to find out the line number where the cursor&lt;/P&gt;&lt;P&gt;is placed. To archive this the following piece of code may be used.&lt;/P&gt;&lt;P&gt; For ex. :&lt;/P&gt;&lt;P&gt;  Declare the following variables.&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;l_cline(2) TYPE c    "Holds the current line no&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;l_fld LIKE dynpread-fieldname   "Holds the field name&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;l_lno TYPE i   "Holds the current line no&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   Fetch the line number the cursor is&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;GET CURSOR LINE l_cline .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   The following peice of code may be used to concatenate extra zero(0) &lt;/P&gt;&lt;P&gt;if the line number is less than 2 digits.&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;l_lno = strlen( l_cline ).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;IF  l_lno &amp;lt;= 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;CONCATENATE '0' l_cline INTO l_cline.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;ENDIF.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   Then concatenate the line number along with a pair of parathesises&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;CONCATENATE 'T_ENLINES-MATNR(' l_cline ')' INTO l_fld.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;CONDENSE l_fld NO-GAPS.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   Then populate the internal table with field names&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;t_df-fieldname = l_fld.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;APPEND t_df.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Assign the SY-REPID to the local variable. This step is required&lt;/P&gt;&lt;P&gt;otherwise it will give a warning message.&lt;/P&gt;&lt;P&gt; For ex. :&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;l_repid = sy-repid&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;l_scrnr = 9010&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Call the function module, &lt;STRONG&gt;DYNP_VALUES_READ&lt;/STRONG&gt;, to read the screen fields.&lt;/P&gt;&lt;P&gt;        Export the programme name and screen number to the function module. Supply the internal table as parameter. This internal table will be&lt;/P&gt;&lt;P&gt;populated by the function module with the field values. &lt;/P&gt;&lt;P&gt;By trapping the value of sy-subrc, we can find out whether any error&lt;/P&gt;&lt;P&gt;occured or not.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;CALL FUNCTION 'DYNP_VALUES_READ'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;dyname                         = l_repid&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;dynumb                         = l_scrnr&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  TRANSLATE_TO_UPPER             = ' '*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  REQUEST                        = ' '*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  PERFORM_CONVERSION_EXITS       = ' '*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  PERFORM_INPUT_CONVERSION       = ' '*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;  DETERMINE_LOOP_INDEX           = ' '*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;     &lt;STRONG&gt;TABLES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;       &lt;STRONG&gt;dynpfields                     = T_DF&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;EXCEPTIONS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;invalid_abapworkarea           = 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;invalid_dynprofield            = 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;invalid_dynproname             = 3&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;invalid_dynpronummer           = 4&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;invalid_request                = 5&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;no_fielddescription            = 6&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;invalid_parameter              = 7&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;undefind_error                 = 8&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;double_conversion              = 9&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;stepl_not_found                = 10&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;OTHERS                         = 11&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; After successful execution of function module , we may read the &lt;/P&gt;&lt;P&gt;internal with the key field name, and find out the value by reading&lt;/P&gt;&lt;P&gt;the FIELDVALUE.&lt;/P&gt;&lt;P&gt; For ex.:&lt;/P&gt;&lt;P&gt;     READ TABLE T_DF WITH KEY FIELDNAME = 'KNA1-KUNNR'.&lt;/P&gt;&lt;P&gt; &lt;U&gt;*T&lt;/U&gt;DF-FIELDVALUE, will hold the value of the field 'KNA1-KUNNR'.*_&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Zahack&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Feb 2009 08:04:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-screen-element-name-at-runtime/m-p/5142064#M1191856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-04T08:04:31Z</dc:date>
    </item>
  </channel>
</rss>

