<?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 problem in subscreen(dialog program) &amp; how to deactivate pushbutton in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094438#M101730</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi freinds ,&lt;/P&gt;&lt;P&gt;i had two subscreeen one of each with table control, in output of my program i had both subcreen with table control and had two pushbutton to compress data areas when i click on one compress data area pushbutton one of the table control gets disappear at the same time i want the the other subcreen tablecontrol should increase, for example if it has 8 lines then it should be 24 lines or full screen .&lt;/P&gt;&lt;P&gt;(2)- i had pushbutton created on my layout i want to deactivate it ...not by using excluding syntax.&lt;/P&gt;&lt;P&gt;i will be thankfull if any body help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Dec 2005 10:41:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-27T10:41:59Z</dc:date>
    <item>
      <title>problem in subscreen(dialog program) &amp; how to deactivate pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094438#M101730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi freinds ,&lt;/P&gt;&lt;P&gt;i had two subscreeen one of each with table control, in output of my program i had both subcreen with table control and had two pushbutton to compress data areas when i click on one compress data area pushbutton one of the table control gets disappear at the same time i want the the other subcreen tablecontrol should increase, for example if it has 8 lines then it should be 24 lines or full screen .&lt;/P&gt;&lt;P&gt;(2)- i had pushbutton created on my layout i want to deactivate it ...not by using excluding syntax.&lt;/P&gt;&lt;P&gt;i will be thankfull if any body help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2005 10:41:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094438#M101730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-27T10:41:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem in subscreen(dialog program) &amp; how to deactivate pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094439#M101731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this...&lt;/P&gt;&lt;P&gt;IN PBO&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at screen.
if screen-name = 'BUTTON'.
screen-INVISIBLE = 1.
endif.
modify screen.
endloop.&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: Vijay Babu Dudla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2005 10:49:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094439#M101731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-27T10:49:45Z</dc:date>
    </item>
    <item>
      <title>Re: problem in subscreen(dialog program) &amp; how to deactivate pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094440#M101732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Try changing the checking the check box of Output Field attribute while developing screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2005 11:00:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094440#M101732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-27T11:00:44Z</dc:date>
    </item>
    <item>
      <title>Re: problem in subscreen(dialog program) &amp; how to deactivate pushbutton</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094441#M101733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'PUSHBUTTON NAME'.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2005 11:09:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-subscreen-dialog-program-how-to-deactivate-pushbutton/m-p/1094441#M101733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-27T11:09:23Z</dc:date>
    </item>
  </channel>
</rss>

