<?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: Selection screen field disable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177983#M462833</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;write it in AT SELECTION-SCREEN event also.&lt;/P&gt;&lt;P&gt;then it will surely work fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Bharat Kalagara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 05:53:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-09T05:53:04Z</dc:date>
    <item>
      <title>Selection screen field disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177980#M462830</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
  &lt;P&gt; I have a report with a selection screen having a check box,cost centre,vendor no and other fields. My requirment is when the user clicks the check box the vendor no and the cost centre input should be enabled.I have written the below code but the AT SELECTION-SCREEN OUTPUT is getting triggred only during PBO but not during PAI when the user clicks the check box.plz help.&lt;/P&gt;
  &lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;
  &lt;P&gt; IF p_check EQ 'X'.&lt;/P&gt;
  &lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;
  &lt;P&gt; IF screen-name = 'FLIEF' OR screen-name = 'KOSTL'.&lt;/P&gt;
  &lt;P&gt; screen-active = 1.&lt;/P&gt;
  &lt;P&gt; MODIFY SCREEN.&lt;/P&gt;
  &lt;P&gt; ENDIF.&lt;/P&gt;
  &lt;P&gt; ENDLOOP.&lt;/P&gt;
  &lt;P&gt; ENDIF.&lt;/P&gt;
  &lt;P&gt;Thanks,&lt;/P&gt;
  &lt;P&gt;Rakesh.&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2007 05:48:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177980#M462830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen field disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177981#M462831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;USE THE FUNCTION MODULE &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DYPRO_VALUES_GET  using which u can the check box value entered,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the logic, if check box is blank  make inactive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else insetad of above, u can use radiobuttons logic .&lt;/P&gt;&lt;P&gt;u declare USER-COMMAND with radiobutton declaration and check for value = 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 05:51:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177981#M462831</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2007-05-09T05:51:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen field disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177982#M462832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rakesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign a user command to the checkbox &lt;/P&gt;&lt;P&gt;so the event will get triggered &lt;/P&gt;&lt;P&gt;also use screen-Input = '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 05:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177982#M462832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen field disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177983#M462833</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;write it in AT SELECTION-SCREEN event also.&lt;/P&gt;&lt;P&gt;then it will surely work fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Bharat Kalagara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 05:53:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177983#M462833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen field disable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177984#M462834</link>
      <description>&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Assing modif for the fields and write the relevant code in AT USER COMMAND IT will work&lt;/P&gt;&lt;P&gt;Reward points if it i helpful.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sangeetha.A&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2007 05:53:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2177984#M462834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:53:31Z</dc:date>
    </item>
  </channel>
</rss>

