<?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/2178201#M462885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use screen group and set input = 1. That will work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the check box value in the loop. then it will work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_text(5) type c default '1234' modif id the.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;     LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'THE'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 0.&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 May 2007 05:53:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-09T05:53:10Z</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/2178199#M462883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rakesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 05:49:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2178199#M462883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:49:58Z</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/2178200#M462884</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;to catch it in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;at selection-screen&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Reshma&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/2178200#M462884</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/2178201#M462885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use screen group and set input = 1. That will work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the check box value in the loop. then it will work...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_text(5) type c default '1234' modif id the.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;     LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'THE'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 0.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 05:53:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2178201#M462885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T05:53:10Z</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/2178202#M462886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes use the other screen fields input and output otherthan active.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 06:37:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2178202#M462886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-09T06:37:09Z</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/2178203#M462887</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;I think you did not set the user-command for the check box.That is why AT SELECTION-SCREEN OUTPUT event is not triggerred when u click the check box.Please check the following code this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT-OPTIONS: s_matnr FOR makt-matnr   .&lt;/P&gt;&lt;P&gt; PARAMETERS: p_werks TYPE ekpo-werks . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:p_chk AS CHECKBOX USER-COMMAND cmd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'P_WERKS' AND p_chk = 'X'.&lt;/P&gt;&lt;P&gt;      screen-input = 0.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      screen-input = 1.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 May 2007 09:26:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2178203#M462887</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-05-09T09:26:08Z</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/2178204#M462888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U need to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;award points for all  the useful replies&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;, and also u nees to &amp;lt;b&amp;gt;&amp;lt;u&amp;gt;mark it as Answered if ur problem is solved&amp;lt;/u&amp;gt;&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 09:41:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2178204#M462888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T09:41:35Z</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/2178205#M462889</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;   When you write anything under the event AT SELECTION-SCREEN OUTPUT, it will be triggered only in the PBO event of the screen not in the PAI . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   for making the screen fields active write the code in the PAI part of the screen , then it will work fine .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 11:39:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-disable/m-p/2178205#M462889</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-05-18T11:39:21Z</dc:date>
    </item>
  </channel>
</rss>

