<?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: Enable and disable button on screen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927275#M1692133</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your screen is not a standard SAP screen then put you logic in PAI and put module for modify screen between chain endchain for particular field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Aug 2012 05:04:18 GMT</pubDate>
    <dc:creator>bharat_rathod2</dc:creator>
    <dc:date>2012-08-13T05:04:18Z</dc:date>
    <item>
      <title>Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927261#M1692119</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 need to enable and Disable button on Screen based on the screen field entry on the screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had written the logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN. &lt;/P&gt;&lt;P&gt;IF INPUT1 IS INITIAL.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'INSERT'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF INPUT1 = 'X'.&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;P&gt;&lt;/P&gt;&lt;P&gt;this logic is working when i am pressing Enter after any entry to the input field. but my aim is &lt;/P&gt;&lt;P&gt;when there is no entry in the input field the button should be in disable mode when i start entering the data the button should be in enable&amp;nbsp; mode&amp;nbsp; simultaneously without pressing enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any methods in OO ABAP Please help me out,&lt;/P&gt;&lt;P&gt;or any example program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 14:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927261#M1692119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-08T14:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927262#M1692120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;Hi,&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;First understand what is the difference between Active = 0 or 1 and Input = 0 or 1.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;Active = 0 - Means the screen element will not be shown while run-time.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;Input = 0&amp;nbsp;&amp;nbsp; - Means the Screen element will be shown but it will not accept any input. i.e. it is the element will be shown in grey mode.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;So, If you want the screen element will be shown to the user but no action will be done on that then use :&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;Loop at Screen.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;If screen-name eq 'xyz'.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; screen-input = 0.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;endif.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;endloop.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;If you want the screen element will not be shown to the user i.e. no display of that element then use:&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;Loop at Screen.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;If screen-name eq 'xyz'.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; screen-active = 0.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;endif.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-family: inherit; font-style: inherit;"&gt; you must write this code in &lt;/SPAN&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;PBO&lt;/STRONG&gt;&lt;SPAN style="font-family: inherit; font-style: inherit;"&gt; only.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;hope this will help you.&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;Regards,&lt;/P&gt;&lt;P style="font-style: inherit; font-family: inherit;"&gt;Naveen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 14:42:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927262#M1692120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-08T14:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927263#M1692121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Naveen for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is not respect to the logic which i had posted&amp;nbsp; its just the sample code which can be done in abap while pressing enter to meet my aim ,but i want the way to do so without pressing Enter on the screen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Again...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 14:55:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927263#M1692121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-08T14:55:58Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927264#M1692122</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;what you want is only possible if you find a way to trigger a function when you start typing. Unfortunately I think it isn't possible. You can trigger a function when you click on a checkbox or change the selection of a radiobutton group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 15:49:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927264#M1692122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-08T15:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927265#M1692123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi burde,&lt;/P&gt;&lt;P&gt;It can be achieved by OO ABAP but i don't know which method to use,&lt;/P&gt;&lt;P&gt;hope so any one can help me out on this.&lt;/P&gt;&lt;P&gt;thanks for your reply.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 16:39:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927265#M1692123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-08T16:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927266#M1692124</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;no, You need an action triggers the PAI event (so AT SELECTION-SCREEN and AT SELECTION-SCREEN OUTPUT), that means you need to assign a functional code to I/O fields, but it's possible for checkbox and radiobutton only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 16:47:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927266#M1692124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-08T16:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927267#M1692125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sir&lt;/P&gt;&lt;P&gt;Try this way &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;IF SCREEN-NAME = '&amp;nbsp; '.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;Keep it as blank and check it is disabling &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 17:17:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927267#M1692125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-08T17:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927268#M1692126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If INPUT1 is a checkbox or radio button use the keyword USER-COMMAND in the parameter definition, with a default value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;SPAN class="L0S52" style="font-family: 'courier new', courier;"&gt;PARAMETER&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp; p_list &lt;SPAN class="L0S52"&gt;as &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;checkbox &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;default &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'X' &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN class="L0S52"&gt;user-command &lt;/SPAN&gt;&lt;/STRONG&gt;col.&lt;/SPAN&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 18:55:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927268#M1692126</guid>
      <dc:creator>sjeevan</dc:creator>
      <dc:date>2012-08-08T18:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927269#M1692127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ppy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;yes, screen processing allows only radiobutton group and parameters and Listbox to have the supplement USER-COMMAND &amp;lt;any&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It does not matter which user-comand you use, even a non-existing will trigger PAI and then PBO and again the screen. In PBO you can set screen-input accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is advisable to assign a MODIF ID to the parameters you want to set active/inactive. You can use SCREEN-GROUP1 to compare with MODIF ID in LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if you can not use Checkbox or radiobutton, put all possible input values into Listbox. If the parameter is created with a data type from ABAP Dictionary, and the data type is associated with the input help in the Dictionary, the first column of the input help is displayed in the list box. &lt;/P&gt;&lt;P&gt;Otherwise, use&amp;nbsp; &lt;SPAN id="inhalt"&gt;FUNCTION 'VRM_SET_VALUES' to set the selectable values.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Clemens&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2012 21:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927269#M1692127</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2012-08-08T21:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927270#M1692128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks All for the reply,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But my main intention remains the same is it possible or not to do so without any key pressing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks all for your intention again.. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 09:06:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927270#M1692128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-09T09:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927271#M1692129</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;&lt;/P&gt;&lt;P&gt;I think the replies are clear: no it's not possible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it's not a problem on which kind of ABAP (object or classical) used, but it needs to have an event triggers the PAI:&lt;/P&gt;&lt;P&gt;if you don't want to press ENTER key, it needs to assign a functional code to i/o field: but it's possible only for certain kinds of fields (checkbox, etc,....).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 09:17:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927271#M1692129</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-09T09:17:09Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927272#M1692130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is a FAQ and the answer is NO (on SAPGUI) if the tested field doesn't allow a function code to trigger a PAI/PBO cycle.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So only those are allowed in selection-screen&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;A class="active_link" href="http://help.sap.com/abapdocu_70/en/ABAPPARAMETERS_SCREEN.htm#&amp;amp;ABAP_ADDITION_4@4@" style="color: #000080;"&gt;&lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;AS CHECKBOX [USER-COMMAND fcode]&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_70/en/ABAPPARAMETERS_SCREEN.htm#&amp;amp;ABAP_ADDITION_5@5@" style="color: #000080;"&gt; &lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;RADIOBUTTON GROUP group [USER-COMMAND fcode]&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_70/en/ABAPPARAMETERS_SCREEN.htm#&amp;amp;ABAP_ADDITION_6@6@" style="color: #000080;"&gt; &lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;AS LISTBOX VISIBLE LENGTH vlen [USER-COMMAND fcode]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;A href="http://help.sap.com/abapdocu_70/en/ABAPPARAMETERS_SCREEN.htm#&amp;amp;ABAP_ADDITION_6@6@" style="color: #000080;"&gt; &lt;/A&gt;And in classic dynpro (extract from &lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/d1/801c3a454211d189710000e8322d00/content.htm" style="color: #000080;"&gt; &lt;SPAN style="font-size: 10pt; font-family: Courier New;"&gt;&lt;STRONG&gt;General Attributes&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;/A&gt;)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;Function code: This attribute is only for pushbuttons and input/output fields with the &lt;EM&gt;Dropdown&lt;/EM&gt;&lt;EM&gt;List box&lt;/EM&gt; attribute.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 09:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927272#M1692130</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-08-09T09:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927273#M1692131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;follow this code.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S31" style="font-style: inherit; font-family: inherit;"&gt;**********************************************************************&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;SELECTION-SCREEN: &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32" style="font-style: inherit; font-family: inherit;"&gt;1100.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;PARAMETERS: u1 &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;RADIOBUTTON &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;GROUP &lt;/SPAN&gt;a &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;USER-COMMAND &lt;/SPAN&gt;sel &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;DEFAULT &lt;/SPAN&gt;&lt;SPAN class="L0S33" style="font-style: inherit; font-family: inherit;"&gt;'X'&lt;/SPAN&gt;,&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; u2 &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;RADIOBUTTON &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;GROUP &lt;/SPAN&gt;a,&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; u3 &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;RADIOBUTTON &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;GROUP &lt;/SPAN&gt;a.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;SELECTION-SCREEN: &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32" style="font-style: inherit; font-family: inherit;"&gt;1100.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S32" style="font-style: inherit; font-family: inherit;"&gt;1100.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;AT &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;SELECTION-SCREEN &lt;/SPAN&gt;OUTPUT.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;IF &lt;/SPAN&gt;u1 = &lt;SPAN class="L0S33" style="font-style: inherit; font-family: inherit;"&gt;'X'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;AT &lt;/SPAN&gt;SCREEN.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;MODIFY &lt;/SPAN&gt;SCREEN.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;ELSEIF &lt;/SPAN&gt;u2 = &lt;SPAN class="L0S33" style="font-style: inherit; font-family: inherit;"&gt;'X'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;AT &lt;/SPAN&gt;SCREEN.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;MODIFY &lt;/SPAN&gt;SCREEN.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;ELSEIF &lt;/SPAN&gt;u3 = &lt;SPAN class="L0S33" style="font-style: inherit; font-family: inherit;"&gt;'X'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;LOOP &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;AT &lt;/SPAN&gt;SCREEN.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;MODIFY &lt;/SPAN&gt;SCREEN.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDLOOP.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;IF &lt;/SPAN&gt;U1 &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;EQ &lt;/SPAN&gt;&lt;SPAN class="L0S33" style="font-style: inherit; font-family: inherit;"&gt;'X'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;PERFORM &lt;/SPAN&gt;user_email_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;ELSEIF &lt;/SPAN&gt;U2 &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;EQ &lt;/SPAN&gt;&lt;SPAN class="L0S33" style="font-style: inherit; font-family: inherit;"&gt;'X'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;PERFORM &lt;/SPAN&gt;user_editable_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;ELSEIF &lt;/SPAN&gt;U3 &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;EQ &lt;/SPAN&gt;&lt;SPAN class="L0S33" style="font-style: inherit; font-family: inherit;"&gt;'X'&lt;/SPAN&gt;.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52" style="font-style: inherit; font-family: inherit;"&gt;PERFORM &lt;/SPAN&gt;user_without_email_list.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;venkat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Aug 2012 09:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927273#M1692131</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-09T09:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927274#M1692132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Check out the below link for module should be called when cusor is positioned on particular screen element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_470/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/content.htm"&gt;http://help.sap.com/saphelp_470/helpdata/en/9f/dbabbd35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The module &amp;lt;mod&amp;gt; is only called if the cursor is positioned on an input/output field &amp;lt;f&amp;gt; or an input/output field &amp;lt;f&lt;SUB&gt;i&lt;/SUB&gt;&amp;gt; in the processing chain.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2012 04:44:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927274#M1692132</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-13T04:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Enable and disable button on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927275#M1692133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your screen is not a standard SAP screen then put you logic in PAI and put module for modify screen between chain endchain for particular field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Aug 2012 05:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-and-disable-button-on-screen/m-p/8927275#M1692133</guid>
      <dc:creator>bharat_rathod2</dc:creator>
      <dc:date>2012-08-13T05:04:18Z</dc:date>
    </item>
  </channel>
</rss>

