<?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: on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229523#M770376</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Chandu&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;  Use 'DYNP_VALUES_READ' function module for read screen values with out triggereng any event i.e with out press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See my Code it is in PAI.&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;   EXPORTING&lt;/P&gt;&lt;P&gt;    DYNAME                         = sy-repid         DYNUMB                         = sy-dynnr&lt;/P&gt;&lt;P&gt;      TRANSLATE_TO_UPPER             = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DYNPFIELDS                     = dynpro_values&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; READ TABLE dynpro_values INDEX 1 INTO field_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_val2  =  field_value-fieldvalue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plzz Reward if it is useful,&lt;/P&gt;&lt;P&gt;Mahi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Jan 2008 17:59:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-07T17:59:55Z</dc:date>
    <item>
      <title>on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229520#M770373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiiiiiiiiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I had 2 fields on the selection screen.both r dependent say A and B.&lt;/P&gt;&lt;P&gt;i give value for A and i want B  values to be displayed without pressing enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg i give value for A if i press ENTER i am getting values of B but i want the values to be display as soon as i enter A value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Urgent plz.....................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 12:00:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229520#M770373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T12:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229521#M770374</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;Check this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: a RADIOBUTTON GROUP gr1 USER-COMMAND rcomm,&lt;/P&gt;&lt;P&gt;            b RADIOBUTTON GROUP gr1,&lt;/P&gt;&lt;P&gt;            p_val(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  a = 'X'.&lt;/P&gt;&lt;P&gt;  p_val = 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;  if a = 'X'.&lt;/P&gt;&lt;P&gt;    p_val = 'A'.&lt;/P&gt;&lt;P&gt;  ELSEIF b = 'X'.&lt;/P&gt;&lt;P&gt;    p_val = 'B'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if it helps please.&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;George&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 12:08:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229521#M770374</guid>
      <dc:creator>George_Lioumis</dc:creator>
      <dc:date>2008-01-07T12:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229522#M770375</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 DYNP_VALUES_READ and DYNP_VALUES_UPDATE for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The standard behavior of selection screen is, it will store the values in buffers which you input in input box and when u press enter it will update into screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYNP_VALUES_READ will read the screen values at that point of time into a variable which you provide and at the same time you use FM DYNP_VALUES_UPDATE to update the value into screen field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 13:51:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229522#M770375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T13:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229523#M770376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Chandu&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;  Use 'DYNP_VALUES_READ' function module for read screen values with out triggereng any event i.e with out press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See my Code it is in PAI.&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;   EXPORTING&lt;/P&gt;&lt;P&gt;    DYNAME                         = sy-repid         DYNUMB                         = sy-dynnr&lt;/P&gt;&lt;P&gt;      TRANSLATE_TO_UPPER             = 'X'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      DYNPFIELDS                     = dynpro_values&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; READ TABLE dynpro_values INDEX 1 INTO field_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;p_val2  =  field_value-fieldvalue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plzz Reward if it is useful,&lt;/P&gt;&lt;P&gt;Mahi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Jan 2008 17:59:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/on-selection-screen/m-p/3229523#M770376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-07T17:59:55Z</dc:date>
    </item>
  </channel>
</rss>

