<?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: disable table control field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804782#M1468025</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 Murali,
&amp;lt;li&amp;gt;Check my reply in the below post which is right solution to change table control screen attributes dynamically. 
&amp;lt;b&amp;gt;&lt;SPAN __jive_macro_name="message" id="8699359"&gt;&lt;/SPAN&gt;&amp;lt;/b&amp;gt;

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 06 Apr 2010 03:28:59 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2010-04-06T03:28:59Z</dc:date>
    <item>
      <title>disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804776#M1468019</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 have create a module pool program where in there is a table control with some fields. I had a requirement where I need to disable all the tablecontrol fields when I click DISPLAY button. ( Display button ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
loop at screen.
 if screen-group1 = 'GR'.
 if sy-ucomm = 'CHANGE'.
 screen-input = 1.
else.
 screen-input = 0.      " when clicked DISPLAY button.
endif.
endif.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is only menge ( Quantity) field is not disabling.&lt;/P&gt;&lt;P&gt;please provide your suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murali Krishna. T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2010 06:49:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804776#M1468019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-02T06:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804777#M1468020</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;Check the screen group of quantity field in the table control  it should be GR only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2010 07:00:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804777#M1468020</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2010-04-02T07:00:30Z</dc:date>
    </item>
    <item>
      <title>Re: disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804778#M1468021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi niraj,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;             Thanks for your view. quantity field also exist in group 'GR'.  Still problem is arising.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2010 07:05:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804778#M1468021</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-02T07:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804779#M1468022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your code i guess the modify screen statement missing. just add the modify screen statement within the loop screen and try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.
 if screen-group1 = 'GR'.
 if sy-ucomm = 'CHANGE'.
 screen-input = 1.
else.
 screen-input = 0.      " when clicked DISPLAY button.
endif.
endif.
modify screen. " add line here
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2010 07:11:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804779#M1468022</guid>
      <dc:creator>nirajgadre</dc:creator>
      <dc:date>2010-04-02T07:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804780#M1468023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Niraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           I tried with modify screen as you suggested. But no solution. &lt;/P&gt;&lt;P&gt;Here one thing I need to make clear.  Here Iam using TabStrip. The tabstrip control exits in screen 320. For this I declared a subscreen in the screen 340. Here in 340, the table control is there.&lt;/P&gt;&lt;P&gt;The push buttons DISPLAY and CHANGE are in screen 320. For these push buttons Iam writing the disable and enable functionality. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, If Iam able to identify the tablecontrol field in screen 320, the problem will be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen Group ' GR ' is already used for another internal table for screen 320. &lt;/P&gt;&lt;P&gt;Do I need to use another Screen Group for my table control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also please make me clear about    the difference between      screen-group1&lt;/P&gt;&lt;P&gt;                                                                                screen-group2&lt;/P&gt;&lt;P&gt;                                                                                screen-group3&lt;/P&gt;&lt;P&gt;                                                                                screen-group4&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murali Krishna T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Apr 2010 06:17:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804780#M1468023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-03T06:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804781#M1468024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.
 if screen-group1 = 'GR'  OR screen-name = &amp;lt;Meins field&amp;gt;. "Add field and try
 if sy-ucomm = 'CHANGE'.
 screen-input = 1.
else.
 screen-input = 0.      " when clicked DISPLAY button.
endif.
endif.
modify screen. " add line here
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Pramod M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Apr 2010 10:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804781#M1468024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-05T10:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804782#M1468025</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 Murali,
&amp;lt;li&amp;gt;Check my reply in the below post which is right solution to change table control screen attributes dynamically. 
&amp;lt;b&amp;gt;&lt;SPAN __jive_macro_name="message" id="8699359"&gt;&lt;/SPAN&gt;&amp;lt;/b&amp;gt;

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Apr 2010 03:28:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804782#M1468025</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-04-06T03:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: disable table control field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804783#M1468026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HAI Murali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make some small change in ur code..Make the Active attribute of Screen to 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.
 if screen-group1 = 'GR'.
 if sy-ucomm = 'CHANGE'.
 screen-input = 1.
else.
 screen-active = 0.    " Add this line to ur code here
 screen-input = 0.      " when clicked DISPLAY button.
endif.
endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;rama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Apr 2010 08:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-table-control-field/m-p/6804783#M1468026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-07T08:22:05Z</dc:date>
    </item>
  </channel>
</rss>

