<?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: DropDownList event issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006832#M710491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may i know what are you doing in &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR SELXMZT.&lt;/P&gt;&lt;P&gt;PERFORM XXX.&lt;/P&gt;&lt;P&gt;if you are trying to fill the data in list box you can fill it in INITIALIZATION or &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT event also. So you can avoid at selection-screen on value-request event.&lt;/P&gt;&lt;P&gt;If you can pls paste the full code also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 10 Nov 2007 08:40:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-10T08:40:24Z</dc:date>
    <item>
      <title>DropDownList event issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006829#M710488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;  i want to change some input fields to uneditable when i select a value from a dropdownlist, how can i do it?&lt;/P&gt;&lt;P&gt;i know use AT SELECTION-SCREEN OUTPUT can change screen elements attributes,but this is triggered after you press 'enter'. when a list value selected, this event doesn't triggered.experts, would you show me what events triggered after a list valued selected? hunger for your advices, thanks!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2007 07:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006829#M710488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-10T07:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: DropDownList event issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006830#M710489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare the list box with user command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_matnr like mara-matnr as listbox visible length 18 &amp;lt;b&amp;gt;user-command ucom.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;now when  you will select any value from list it will trigger at selection-screen and at selection-screen output respectively.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2007 07:49:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006830#M710489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-10T07:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: DropDownList event issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006831#M710490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,thanks for your advice,but i try your code and get compile error&lt;/P&gt;&lt;P&gt;my code is below:&lt;/P&gt;&lt;P&gt;PARAMETERS:  SELXMZT like zfi_budget-pbukr AS LISTBOX visible length 18 user-command ucom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR SELXMZT.&lt;/P&gt;&lt;P&gt;  PERFORM XXX.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT .&lt;/P&gt;&lt;P&gt; XXX...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and get the compile error:&lt;/P&gt;&lt;P&gt;The addition "ON VALUE-REQUEST FOR" is not allowed with parameters or select-options if matchcode object is present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need the "on value-request for",how can i solve the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2007 08:24:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006831#M710490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-10T08:24:17Z</dc:date>
    </item>
    <item>
      <title>Re: DropDownList event issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006832#M710491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;may i know what are you doing in &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR SELXMZT.&lt;/P&gt;&lt;P&gt;PERFORM XXX.&lt;/P&gt;&lt;P&gt;if you are trying to fill the data in list box you can fill it in INITIALIZATION or &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT event also. So you can avoid at selection-screen on value-request event.&lt;/P&gt;&lt;P&gt;If you can pls paste the full code also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Nov 2007 08:40:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dropdownlist-event-issue/m-p/3006832#M710491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-10T08:40:24Z</dc:date>
    </item>
  </channel>
</rss>

