<?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 modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037723#M85554</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Similar.&lt;/P&gt;&lt;P&gt;I have a module pool program with PBO and PAI, after the user enter the value for 1st field the second field should be either enabled or disabled depending on the value of the field one.&lt;/P&gt;&lt;P&gt;I did the exact way (like what you mentioned), I am able to get the second field disabled when I click enter for the first time after entering some value for the first field.  The second field here is getting disabled.  Till this point everything looks good.  But when click 'Enter' again, the second field is becoming enabled from disabled status.  This should not happen until I change the value for the first field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I clear in explaining the question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Kavitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Dec 2005 04:17:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-21T04:17:46Z</dc:date>
    <item>
      <title>screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037721#M85552</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 have a question regarding screen modifications.&lt;/P&gt;&lt;P&gt;I have 2 fields on the infotype screen,first is the listbox,second is one input field.&lt;/P&gt;&lt;P&gt;Based on value of the list box, if 1 the other field should be disabled(grayed out)and for all other values the field should be enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could u please help as this is a urgent requirement.&lt;/P&gt;&lt;P&gt;kavitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:05:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037721#M85552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037722#M85553</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This isn't exactly what you're doing, but it's similar:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECT-OPTIONS: s_fictr FOR  zzfbud_mig_tot-zf_fictr
                        MEMORY ID fis,
                s_geber FOR  zzfbud_mig_tot-zf_geber
                        MEMORY ID fic
                        MODIF ID cfc,
                s_prof  FOR  zzfbud_mig_tot-zf_profil
                        MEMORY ID bp1
                        MODIF ID cfc,
                s_class FOR  zzfbud_mig_tot-zf_classif
                        MEMORY ID kla NO INTERVALS
                        MODIF ID cfc,
                s_gjahr FOR  zzfbud_mig_tot-zf_gjahr
                        MEMORY ID gjr.
PARAMETERS:     p_test  AS CHECKBOX DEFAULT 'X',
                p_cfc   AS CHECKBOX DEFAULT 'X'
                        USER-COMMAND ucom.
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF screen-group1 = 'CFC'.
      IF p_cfc = 'X'.
        screen-input = 0.
      ELSE.
        IF screen-group3 &amp;lt;&amp;gt; 'OPU'.
          screen-input = 1.
        ENDIF.
      ENDIF.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037722#M85553</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037723#M85554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Similar.&lt;/P&gt;&lt;P&gt;I have a module pool program with PBO and PAI, after the user enter the value for 1st field the second field should be either enabled or disabled depending on the value of the field one.&lt;/P&gt;&lt;P&gt;I did the exact way (like what you mentioned), I am able to get the second field disabled when I click enter for the first time after entering some value for the first field.  The second field here is getting disabled.  Till this point everything looks good.  But when click 'Enter' again, the second field is becoming enabled from disabled status.  This should not happen until I change the value for the first field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I clear in explaining the question?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Kavitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:17:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037723#M85554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037724#M85555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It sounds like a data transport problem between the screen and the program. Have you put a break point at the point in the code where you loop at the screen? If you have, what is the value of the variable that you are testing after you press enter the second time? Is it the same as the first time?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:26:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037724#M85555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037725#M85556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I put a break point and after clicking enter, everytime i am getting the same value.and even it sets screen input=0 everytime in debug mode,but the same is not reflecting on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;kavitha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037725#M85556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037726#M85557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you do the "MODIFY SCREEN"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037726#M85557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037727#M85558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes. please see the code below which i am using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p9918-textt = 'ONE'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group3 = '002'.&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;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group3 = '001'.&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;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:42:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037727#M85558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037728#M85559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what are you doing in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how many fields are there in your screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037728#M85559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037729#M85560</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am developing a custom infotype in HR.  I have designed the screen with 2 fields, the first one is a list box with two values (lets say 1 and 2), the second one is a input field.  My requirement is when the user selects '1' for the first field and when he clicks enter, the second field should be disabled.  And if the value = '2' then the field should be input enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kavita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 04:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037729#M85560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T04:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037730#M85561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;if list_value = '1'.
loop at screen.
if screen-name = 'SECOND'.
screen-input = '0'.
modify screen.
clear SECOND.
endif.

endloop.

else.
loop at screen.
if screen-name = 'SECOND'.
screen-input = '1'.
modify screen.
clear SECOND.
endif.

endloop.

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:00:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037730#M85561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037731#M85562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still the same problem.&lt;/P&gt;&lt;P&gt;For the first 'Enter' the second field gets disabled, but if I click enter again, the field is enabling.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kavita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:05:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037731#M85562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037732#M85563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did you checked it in debug mode what is happening...&lt;/P&gt;&lt;P&gt;after second time enter(might be value in the list in not populated)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:08:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037732#M85563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:08:03Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037733#M85564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See in your PAI, if you are manipulating the value of p9918-textt and when you are pressing ENTER second time, may be this value is no longer ONE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037733#M85564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037734#M85565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes,it is retaining the value 'ONE',everytime i click enter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:13:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037734#M85565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037735#M85566</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;try with removing quotes .&lt;/P&gt;&lt;P&gt;use &lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;screen-input = 0&amp;lt;/b&amp;gt; instead of screen-input = '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more option is use can assaign fcode to list box,&lt;/P&gt;&lt;P&gt;then whenever you change the list box contexts PAI triggers no need to press enter.&lt;/P&gt;&lt;P&gt;And you can use this fcode in your screen modify logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:15:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037735#M85566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037736#M85567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;then the problem lies in your code, where you are modifying...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and is it going there where we are checking and modifying screen after you press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check that..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:16:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037736#M85567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037737#M85568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please post your PAI logic for ENTER and also the code where this table is manipulated in any module?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037737#M85568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037738#M85569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried with 0 without single quotes,but still the same problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037738#M85569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037739#M85570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give the code in which you are doing those check under PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037739#M85570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: screen modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037740#M85571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking at this code you posted.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IF p9918-textt = 'ONE'.
  LOOP AT SCREEN.
    IF screen-group3 = '002'.
      screen-input = '0'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.
ELSE.
  LOOP AT SCREEN.
    IF screen-group3 = '001'.&amp;lt;-- why is this 001 instead of the 002 that you made input 0 earlier
      screen-input = '1'.
    ENDIF.
    MODIFY SCREEN.
  ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srinivas Adavi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and don't use quotes around the zero or one for screen-input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Dec 2005 05:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-modification/m-p/1037740#M85571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-21T05:23:45Z</dc:date>
    </item>
  </channel>
</rss>

