<?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: F4 help (Process on value request) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764932#M643845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;   As per the requirement , i need to use the function module  only once and that to for classification id and not for classification description, so based on the classification id selected by the user, automatically the corresponding classification description should be displayed in the second field. I am able to see the classification id on the screen which is selected by the user,, but this value is not captured in the screen field variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the code for help : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT class class_descr status&lt;/P&gt;&lt;P&gt;         FROM zvc01&lt;/P&gt;&lt;P&gt;         INTO TABLE lt_class_status&lt;/P&gt;&lt;P&gt;         WHERE status = c_active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            retfield    = 'CLASS'&lt;/P&gt;&lt;P&gt;            dynpprog    = lv_prog&lt;/P&gt;&lt;P&gt;            dynpnr      = lv_dynnr&lt;/P&gt;&lt;P&gt;            dynprofield = 'ZVC01-CLASS'&lt;/P&gt;&lt;P&gt;            value_org   = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab   = lt_class_status[].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Aug 2007 10:49:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-31T10:49:14Z</dc:date>
    <item>
      <title>F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764928#M643841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When I Press f4 key on a Screen field of Module pool screen, it has show the data in the internal table which has two fields. 1. classification id  2. classification description. For populating these values, i am using the function module 'F4IF_INT_TABLE_VALUE_REQUEST' where i am returning classification id based on user selection.&lt;/P&gt;&lt;P&gt;Now the requiremnt is when the user selects any classification id, the value is displayed in the screen field, now based on that value the corresponding classification description should be displayed in the next screen field  automatically wihich is description field. I am not using any search helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:38:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764928#M643841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:38:35Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764929#M643842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you are using the fm - 'F4IF_INT_TABLE_VALUE_REQUEST'  to return the classification id, use the same and return classification description also. I mean in the internal table that is returned by the function module, add another column for Classificationd escription.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when you are assigning the value to the screen field, assign the classification description to the second field where you want it to be displayed...&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;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:41:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764929#M643842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:41:33Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764930#M643843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;               Use FM 'REUSE_ALV_POPUP_TO_SELECT' to fulfill ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer this code  :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_POPUP_TO_SELECT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;   I_TITLE                       = 'Material No'&lt;/P&gt;&lt;P&gt;   I_SELECTION                   = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_ALLOW_NO_SELECTION          = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_ZEBRA                       = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_START_COLUMN         = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_START_LINE           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_END_COLUMN           = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_END_LINE             = 10&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_CHECKBOX_FIELDNAME          = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_LINEMARK_FIELDNAME          = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   I_SCROLL_TO_SEL_LINE          = 'X'&lt;/P&gt;&lt;P&gt;   i_tabname                     = 'T_MARA'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_STRUCTURE_NAME              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IT_FIELDCAT                   = t_fieldcat&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IT_EXCLUDING                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   I_CALLBACK_PROGRAM            = 'Z8HG_TEXT_MPOOL'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_CALLBACK_USER_COMMAND       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IS_PRIVATE                    = i_private&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ES_SELFIELD                   = i_selfield&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  E_EXIT                        = W_exit&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    t_outtab                      = t_mara&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   PROGRAM_ERROR                 = 1&lt;/P&gt;&lt;P&gt;   OTHERS                        = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table t_mara with key matnr = t_mara-matnr.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;w_mara-matnr = t_mara-matnr.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:44:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764930#M643843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764931#M643844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try using function module DYNP_VALUES_UPDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Alpesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764931#M643844</guid>
      <dc:creator>alpesh_saparia3</dc:creator>
      <dc:date>2007-08-31T10:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764932#M643845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;P&gt;   As per the requirement , i need to use the function module  only once and that to for classification id and not for classification description, so based on the classification id selected by the user, automatically the corresponding classification description should be displayed in the second field. I am able to see the classification id on the screen which is selected by the user,, but this value is not captured in the screen field variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer to the code for help : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT class class_descr status&lt;/P&gt;&lt;P&gt;         FROM zvc01&lt;/P&gt;&lt;P&gt;         INTO TABLE lt_class_status&lt;/P&gt;&lt;P&gt;         WHERE status = c_active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            retfield    = 'CLASS'&lt;/P&gt;&lt;P&gt;            dynpprog    = lv_prog&lt;/P&gt;&lt;P&gt;            dynpnr      = lv_dynnr&lt;/P&gt;&lt;P&gt;            dynprofield = 'ZVC01-CLASS'&lt;/P&gt;&lt;P&gt;            value_org   = 'S'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            value_tab   = lt_class_status[].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:49:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764932#M643845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764933#M643846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sridhar &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;declare a global variable for  description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u select from f4 value you will get the id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read the internal table which you are passing to FM 'F4IF_INT_TABLE_VALUE_REQUEST'    which contains both id &amp;amp; description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;on your next screen you can populate the field with the value from global variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764933#M643846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764934#M643847</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;F4IF_INT_TABLE_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;This FM use the RETTab which contain the Values of Returned fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then  Call the FM DYNP_VALUES_UPDATE to Get the Value into Second field.&lt;/P&gt;&lt;P&gt;Sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: dynpfields  LIKE dynpread OCCURS 5 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA: l_stepl     LIKE  sy-stepl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REFRESH dynpfields.&lt;/P&gt;&lt;P&gt;CLEAR   dynpfields.&lt;/P&gt;&lt;P&gt;dynpfields-fieldname  = 'SCREENFIELD1-COL1'. "Screen field name&lt;/P&gt;&lt;P&gt;dynpfields-fieldvalue = 10.                  "New value&lt;/P&gt;&lt;P&gt;dynpfields-stepl      = l_stepl.             "Step loop for table controls&lt;/P&gt;&lt;P&gt;APPEND dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    dyname     = 'SAPLBDT_GMGR'   "Program name &lt;/P&gt;&lt;P&gt;    dynumb     = '0270'           "Screen number&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    dynpfields = dynpfields&lt;/P&gt;&lt;P&gt;  EXCEPTIONS&lt;/P&gt;&lt;P&gt;    OTHERS     = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if Helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:55:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764934#M643847</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-31T10:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764935#M643848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You dont need to call the fm two times..You can do it with &amp;lt;b&amp;gt;one function module&amp;lt;/b&amp;gt; itself...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While you call the function module, you dont need to pass "DYNPROFIELD" and "DYNPNR" etc.. just check the code below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
      EXPORTING
        retfield        = c_s_lsyst
        value_org       = c_bool
      TABLES
        value_tab       = it_l_oijts
        return_tab      = fp_t_return_tab
      EXCEPTIONS
        parameter_error = 1
        no_values_found = 2
        OTHERS          = 3.
    IF sy-subrc EQ 0.
  READ TABLE it_return_tab INTO w_gs_return INDEX 1.
  IF sy-subrc EQ c_0.
    screen-field  = w_gs_return-fieldval.
  ENDIF.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameter "RETURN_TAB" will contain the values..you can read it and assign it to the screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for helpful answers&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 10:57:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764935#M643848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T10:57:43Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764936#M643849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ram,&lt;/P&gt;&lt;P&gt;  can you show me how to declare the fp_t_return_tab internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 11:28:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764936#M643849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T11:28:15Z</dc:date>
    </item>
    <item>
      <title>Re: F4 help (Process on value request)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764937#M643850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"fp_t_return_tab" - You can declare it by checking the type in function module tables parameter..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In run time check what value it holds and accordingly you need to assign it to the screen field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: fp_t_return_tab TYPE ty_t_ddhretval.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What you can do is, when you press F4 on field for Classification ID, call this function module. Put a break point and check what value is existing in the return table (You will get the value in return table after selecting any particular record from the F4 pop-up). accordingly assign it to classification id and classification description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 11:35:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-process-on-value-request/m-p/2764937#M643850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T11:35:27Z</dc:date>
    </item>
  </channel>
</rss>

