<?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 dynamically disabling a text field in dialogue programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-disabling-a-text-field-in-dialogue-programming/m-p/2198578#M469503</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;i am doing a case study on library management . I made a screen for editing the book details.. The initial screen will display the all the information regarding a book based on ISBN no. In top i have a change button. &amp;lt;b&amp;gt;My need is to disable only the  ISBN text field when i press change button&amp;lt;/b&amp;gt; .   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am using this code ..But this code will activate all text field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF OK_CODE EQ 'CHANGE'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Make all the Fields non-Editable&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CLEAR OK_CODE.&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;&lt;/P&gt;&lt;P&gt;Please give a solution regarding this issue...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 May 2007 04:20:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-08T04:20:35Z</dc:date>
    <item>
      <title>dynamically disabling a text field in dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-disabling-a-text-field-in-dialogue-programming/m-p/2198578#M469503</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;i am doing a case study on library management . I made a screen for editing the book details.. The initial screen will display the all the information regarding a book based on ISBN no. In top i have a change button. &amp;lt;b&amp;gt;My need is to disable only the  ISBN text field when i press change button&amp;lt;/b&amp;gt; .   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am using this code ..But this code will activate all text field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF OK_CODE EQ 'CHANGE'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Make all the Fields non-Editable&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      CLEAR OK_CODE.&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;&lt;/P&gt;&lt;P&gt;Please give a solution regarding this issue...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 04:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-disabling-a-text-field-in-dialogue-programming/m-p/2198578#M469503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T04:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically disabling a text field in dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-disabling-a-text-field-in-dialogue-programming/m-p/2198579#M469504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Umesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U r correct but modify the codesw as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF OK_CODE EQ 'CHANGE'.
* Make all the Fields non-Editable
LOOP AT SCREEN.
IF SCREEN-NAME = 'URSCR_FLD'.
SCREEN-INPUT = 1.
MODIFY SCREEN.
ENDIF.
CLEAR OK_CODE.
ENDLOOP.
ENDIF&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 04:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-disabling-a-text-field-in-dialogue-programming/m-p/2198579#M469504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T04:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: dynamically disabling a text field in dialogue programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-disabling-a-text-field-in-dialogue-programming/m-p/2198580#M469505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Umesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to the Screen Painter and Double click on the Text field you are discussing here. It will open a window. In that window u will see group boxes (they are 4). For that text button sepcify group as GRP1 in any of the box. Then write foolwing code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP = 'GRP1'.&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;CLEAR OK_CODE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;Please  Reward points if this solves your query. it motivates us.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Darshan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 May 2007 05:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamically-disabling-a-text-field-in-dialogue-programming/m-p/2198580#M469505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-08T05:52:31Z</dc:date>
    </item>
  </channel>
</rss>

