<?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/disable the screen fields dynamically in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655771#M880628</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this,&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;check1 type c as checkbox user-command fcode,&lt;/P&gt;&lt;P&gt;check2 type c as checkbox user-command fcode,&lt;/P&gt;&lt;P&gt;rad1 type c radiobutton group grp1 ,&lt;/P&gt;&lt;P&gt;rad2 type c radiobutton group  grp1 ,&lt;/P&gt;&lt;P&gt;rad3 type c radiobutton group grp2 ,&lt;/P&gt;&lt;P&gt;rad4 type c radiobutton group  grp2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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 check1 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'RAD3' or screen-name = 'RAD4' .&lt;/P&gt;&lt;P&gt;        screen-active = 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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if check2 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'RAD1' or screen-name = 'RAD2' .&lt;/P&gt;&lt;P&gt;        screen-active = 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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data:&lt;/P&gt;&lt;P&gt;  itab type table of sy-datar,&lt;/P&gt;&lt;P&gt;  wa like line of itab.&lt;/P&gt;&lt;P&gt;  wa = 'SAVE'.&lt;/P&gt;&lt;P&gt;  append wa to itab.&lt;/P&gt;&lt;P&gt;  wa = 'CANCEL'.&lt;/P&gt;&lt;P&gt;  append wa to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The gap will adjust automatically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Apr 2008 12:35:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-16T12:35:46Z</dc:date>
    <item>
      <title>Enable/disable the screen fields dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655769#M880626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can you pls provide the solution for the below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my requirement i have a screen which contains the 9 fields and looks like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1  2  3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4  5  6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7  8  9&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in some conditions i need to disable the fields 5 &amp;amp; 8. in this case the gap will remove automatically and the fields 6 &amp;amp; 9 will sit in the 5 &amp;amp; 8 places.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 12:27:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655769#M880626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T12:27:15Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/disable the screen fields dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655770#M880627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in your screen loop, use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead of &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 12:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655770#M880627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T12:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/disable the screen fields dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655771#M880628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try like this,&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;check1 type c as checkbox user-command fcode,&lt;/P&gt;&lt;P&gt;check2 type c as checkbox user-command fcode,&lt;/P&gt;&lt;P&gt;rad1 type c radiobutton group grp1 ,&lt;/P&gt;&lt;P&gt;rad2 type c radiobutton group  grp1 ,&lt;/P&gt;&lt;P&gt;rad3 type c radiobutton group grp2 ,&lt;/P&gt;&lt;P&gt;rad4 type c radiobutton group  grp2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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 check1 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'RAD3' or screen-name = 'RAD4' .&lt;/P&gt;&lt;P&gt;        screen-active = 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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if check2 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'RAD1' or screen-name = 'RAD2' .&lt;/P&gt;&lt;P&gt;        screen-active = 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;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data:&lt;/P&gt;&lt;P&gt;  itab type table of sy-datar,&lt;/P&gt;&lt;P&gt;  wa like line of itab.&lt;/P&gt;&lt;P&gt;  wa = 'SAVE'.&lt;/P&gt;&lt;P&gt;  append wa to itab.&lt;/P&gt;&lt;P&gt;  wa = 'CANCEL'.&lt;/P&gt;&lt;P&gt;  append wa to itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The gap will adjust automatically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 12:35:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655771#M880628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T12:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/disable the screen fields dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655772#M880629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Venkat,
set &lt;STRONG&gt;screen-active = '0'&lt;/STRONG&gt; . Automatically adjusted on Selection-screen and on dialog program screen as well.

Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 13:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655772#M880629</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-04-16T13:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Enable/disable the screen fields dynamically</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655773#M880630</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;Simply do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   if (give u r condition).&lt;/P&gt;&lt;P&gt;   screen-active = 0.&lt;/P&gt;&lt;P&gt;   endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it may help u...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sunil kumar mutyala..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 15:12:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enable-disable-the-screen-fields-dynamically/m-p/3655773#M880630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T15:12:29Z</dc:date>
    </item>
  </channel>
</rss>

