<?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: SCREEN - INPUT = '0' i.e.Dis-abling input field in Selection screen???? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379132#M527847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ThanQ.&lt;/P&gt;&lt;P&gt;Yes, already I treid suggestion, it needs, ENTER button!&lt;/P&gt;&lt;P&gt;Am looking for with out ENTER button.&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jun 2007 14:03:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-18T14:03:00Z</dc:date>
    <item>
      <title>SCREEN - INPUT = '0' i.e.Dis-abling input field in Selection screen????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379129#M527844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hv a selection screen with,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)SELECT-OPTIONS: input_fld_1  with domain value range of A, B, C, D, E, F&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2)input_fld_2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)PARAMETERS: input_fld_3 has the LIST BOX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, my requirement is,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user selects/enters A, B, C, D in input_fld_1, the next moment/second (here, prog. shuld not ask the user to press any ENTER/button)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the input_fld_3 shuld b automatically dis-abled/un-able to input!&lt;/P&gt;&lt;P&gt;(I tried with MOD ID GRP1, but in this case, user has to press ENTER button, which is not suits to my requirement!)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, Is it possible? If so How?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Srikhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 03:15:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379129#M527844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T03:15:04Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN - INPUT = '0' i.e.Dis-abling input field in Selection screen????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379130#M527845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output.
  if not input_fld_1-low is initial or not input_fld_1-high is initial.
    loop at screen.
      if screen-name = 'input_fld_3'.
        screen-input = 0.
        modify screen.
      endif.
    endloop.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 03:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379130#M527845</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-06-18T03:19:30Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN - INPUT = '0' i.e.Dis-abling input field in Selection screen????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379131#M527846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Srikhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not possible to have your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the AT SELECTION SCREEN OUTPUT will be triggered only when you press the ENTER key.&lt;/P&gt;&lt;P&gt;You need to ask user to press the enter key or you need to have USER COMMAND to the selection screen parameter, which I think is not available with select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 03:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379131#M527846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T03:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN - INPUT = '0' i.e.Dis-abling input field in Selection screen????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379132#M527847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ThanQ.&lt;/P&gt;&lt;P&gt;Yes, already I treid suggestion, it needs, ENTER button!&lt;/P&gt;&lt;P&gt;Am looking for with out ENTER button.&lt;/P&gt;&lt;P&gt;thanq.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 14:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input-0-i-e-dis-abling-input-field-in-selection-screen/m-p/2379132#M527847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T14:03:00Z</dc:date>
    </item>
  </channel>
</rss>

