<?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: AT SELECTION-SCREEN ON VALUE-REQUEST FOR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936608#M1151436</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 this FM 'DYNP_VALUES_READ'  to get the values from the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_lgort-low.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   IF r_werks[] IS INITIAL.  &lt;/P&gt;&lt;P&gt;     populate lt_dynpread with S_WERKS-LOW and S_WERKS-HIGH&lt;/P&gt;&lt;P&gt;     CALL FM 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Dec 2008 04:19:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-09T04:19:46Z</dc:date>
    <item>
      <title>AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936603#M1151431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Experts,&lt;/P&gt;&lt;P&gt;I have two selection parameters on Selection_Screen as subscreen, as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Custom Selection Screen 1010&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;selection-screen begin of screen 1010 as subscreen.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS :&lt;/P&gt;&lt;P&gt;     s_matnr FOR mara-matnr  MODIF ID sc1,     "Material&lt;/P&gt;&lt;P&gt;     s_grid FOR mara-J_3APGNR MODIF ID sc6,    "Grid values   "pkb001&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 1010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i want to populate  s_grid (Grid value) based on the values enterd for s_matnr  (material ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i want use: &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_grid,   &lt;/P&gt;&lt;P&gt;I'm not getting the values eneterd in s_matnr.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is the problem beacuse of subcreen? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Answers are highly appriciated.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 22:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936603#M1151431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T22:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936604#M1151432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you are manually providing the value for s_matnr, ifso, then SAP will not able to recognize that value unless an event is trigger. So, press enter after inputting the value, it will take it in s_grid request. Otherwise, just allow user to choose value from F4 for matnr, this will help in suppressing the pressing of enter key.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 00:14:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936604#M1151432</guid>
      <dc:creator>amit_khare</dc:creator>
      <dc:date>2008-12-09T00:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936605#M1151433</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;Because the value manully input, so it should use an event to trigger  otherwise the value you can not get it. An easy way, after you input the value, press 'Enter' ,then you can get it.&lt;/P&gt;&lt;P&gt;Try it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&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;Chris Gu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 01:15:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936605#M1151433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T01:15:31Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936606#M1151434</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 1000 screen in place of 1010screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sreeni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 01:32:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936606#M1151434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T01:32:59Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936607#M1151435</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;the code have an error!&lt;/P&gt;&lt;P&gt;*AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_grid, *&lt;/P&gt;&lt;P&gt;Error Description: "ON VALUE-REQUEST FOR" should be followed by &amp;lt;parameter&amp;gt; or &amp;lt;select-option&amp;gt;-LOW / &amp;lt;select-option&amp;gt;-HIGH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And in AT SELECTION-SCREEN, the s_matnr is not getting the values eneterd. Because the value isn't write the s_matnr. Solution means: After you input the s_matnr, you need enter give system read the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best  Regards,&lt;/P&gt;&lt;P&gt;Wind lin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 04:14:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936607#M1151435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T04:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936608#M1151436</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 this FM 'DYNP_VALUES_READ'  to get the values from the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_lgort-low.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   IF r_werks[] IS INITIAL.  &lt;/P&gt;&lt;P&gt;     populate lt_dynpread with S_WERKS-LOW and S_WERKS-HIGH&lt;/P&gt;&lt;P&gt;     CALL FM 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;     ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 04:19:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936608#M1151436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T04:19:46Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936609#M1151437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you are not hitting enter after you enter the MATNR value there is no PAI  triggering so use DYNP_VALUES_READ to get the entered MATNR read by the program and used further in the Program where you can use in the F4 help for grid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function DYNP_VALUES_READ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ramchander Rao.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 04:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936609#M1151437</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T04:51:38Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936610#M1151438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that is correct, Once I hit enter key, then only the value for s_matnr populates, but it is not a good Idea to expect the user to hit the enter key. is there any way i can imitate/simulate "enter" key in the program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also I'm using the FM:'DYNP_VALUES_READ'  but that is also not getting me any value..&lt;/P&gt;&lt;P&gt;below is the code I'm using, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

FORM sub_get_grid .

  Refresh: t_mara.
  data: lin type i.

  data: l_dyname type standard table of dynpread,
  w_dynpread type dynpread.

  clear w_dynpread.
  w_dynpread-fieldname = 'S_MATNR'.
  append w_dynpread to l_dyname.
  clear w_dynpread.


  CALL FUNCTION 'DYNP_VALUES_READ'
    EXPORTING
      dyname     = sy-repid
      dynumb     = sy-dynnr
    TABLES
      dynpfields = l_dyname.


*Do not allow to select more than 1 material at a time.
  SELECT
    MARA~MATNR
    INTO TABLE t_mara
    FROM MARA
    WHERE MARA~MATNR IN s_matnr.

  describe table t_mara LINES lin.

  If lin &amp;gt; 1.
    Refresh: s_matnr.
    MESSAGE i000 WITH text-033.
    LEAVE LIST-PROCESSING.
*    LEAVE TO SCREEN 100.
  endif.

ENDFORM.    

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 14:30:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936610#M1151438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T14:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936611#M1151439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amit,&lt;/P&gt;&lt;P&gt;what did you meant by  saying "Otherwise, just allow user to choose value from F4 for matnr, this will help in suppressing the pressing of enter key" ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_matnr,  s_grid both uses F4 to get the values.&lt;/P&gt;&lt;P&gt;but when i press F4 for s_matnr  then the values are coming from MARA table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i press F4 for s_grid, then the above code i provided should execute...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 14:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936611#M1151439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T14:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936612#M1151440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Prema,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This link will help you. &lt;A href="https://www.sdn.sap.com/irj/scn/advancedsearch?query=at" target="test_blank"&gt;https://www.sdn.sap.com/irj/scn/advancedsearch?query=at&lt;/A&gt;&lt;EM&gt;SELECTION-SCREEN&lt;/EM&gt;ON&lt;EM&gt;VALUE-REQUEST&lt;/EM&gt;FOR+&amp;amp;cat=sdn_all&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;Flavya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 14:40:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936612#M1151440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T14:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936613#M1151441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sreeni,&lt;/P&gt;&lt;P&gt;i cant use 1000 as subscreen, beacuse that is default screen number.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my case; 1010 is subscreen on screen 100.  i had other elements to include using screen painter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 14:41:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936613#M1151441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T14:41:06Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936614#M1151442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/value-request-for-parameter.htm" target="test_blank"&gt;http://www.sap-img.com/abap/value-request-for-parameter.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;will help you for your answer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 14:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936614#M1151442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T14:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936615#M1151443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wind lin,&lt;/P&gt;&lt;P&gt;in my code I'm using..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_grid-LOW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 14:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936615#M1151443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T14:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936616#M1151444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sabyasachi,&lt;/P&gt;&lt;P&gt;even this URL is not helping me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 14:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936616#M1151444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T14:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: AT SELECTION-SCREEN ON VALUE-REQUEST FOR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936617#M1151445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks all for your help and time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got it resolved by using: MATCHCODE OBJECT (which is &lt;STRONG&gt;Elementary srch hlp&lt;/STRONG&gt;)&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*     s_grid FOR mara-J_3APGNR MODIF ID sc6,    "Grid values   "pkb001           (before)
     s_grid for mara-J_3APGNR MATCHCODE OBJECT /AFS/MTX_SIZE_SHLP MODIF ID sc6,   (now)

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I could reolve it by using thread: &lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4091536"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by Girish Kumar Loganathan.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;URL:  &lt;A href="http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_basic.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/dictionary/shelp/shelp_basic.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 20:58:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/at-selection-screen-on-value-request-for/m-p/4936617#M1151445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-09T20:58:05Z</dc:date>
    </item>
  </channel>
</rss>

