<?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: ABOUT PUSH BUTTON IN DIALOG SCREEN in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452823#M1055746</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Jyothirmai :&lt;/P&gt;&lt;P&gt;Thanks a lot,I have done it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Sep 2008 01:11:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-11T01:11:54Z</dc:date>
    <item>
      <title>ABOUT PUSH BUTTON IN DIALOG SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452819#M1055742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts:&lt;/P&gt;&lt;P&gt;      This a dialog screen,there are two pushbuttons in it.The name as:but1,but2.&lt;/P&gt;&lt;P&gt;      What I need is ,when I press but1,but2 must be not active or no usable.&lt;/P&gt;&lt;P&gt;       How it can come true?&lt;/P&gt;&lt;P&gt;   Thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2008 14:30:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452819#M1055742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-10T14:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: ABOUT PUSH BUTTON IN DIALOG SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452820#M1055743</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;Write the code in PBO where you check for the but1 and is selected then deactivate the but2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Phani Diwakar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2008 14:42:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452820#M1055743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-10T14:42:14Z</dc:date>
    </item>
    <item>
      <title>Re: ABOUT PUSH BUTTON IN DIALOG SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452821#M1055744</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;Use the following logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GV_FLAG(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF GV_FLAG = 'X'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF SCREEN-NAME = 'BUT2'.&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;    CLEAR GV_FLAG.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;  WHEN 'BUT1'.&lt;/P&gt;&lt;P&gt;    GV_FLAG = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WHEN 'BUT2'.&lt;/P&gt;&lt;P&gt;    CLEAR GV_FLAG.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jyothi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Sep 2008 16:08:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452821#M1055744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-10T16:08:56Z</dc:date>
    </item>
    <item>
      <title>Re: ABOUT PUSH BUTTON IN DIALOG SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452822#M1055745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer,I have done it!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 01:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452822#M1055745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T01:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: ABOUT PUSH BUTTON IN DIALOG SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452823#M1055746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Jyothirmai :&lt;/P&gt;&lt;P&gt;Thanks a lot,I have done it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 01:11:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452823#M1055746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T01:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: ABOUT PUSH BUTTON IN DIALOG SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452824#M1055747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is easy to do,but my question is: if you press button1, button2 is not active, then you want to press button2(button2 is not active, it can not press), can you do this?????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Sep 2008 03:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452824#M1055747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-11T03:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: ABOUT PUSH BUTTON IN DIALOG SCREEN</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452825#M1055748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yeah,I can use this code,does it come true?&lt;/P&gt;&lt;P&gt;DATA : GV_FLAG(1).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF GV_FLAG = 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'BUT2'.&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;CLEAR GV_FLAG.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;WHEN 'BUT2'.&lt;/P&gt;&lt;P&gt;GV_FLAG = 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Sep 2008 13:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-push-button-in-dialog-screen/m-p/4452825#M1055748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-12T13:50:04Z</dc:date>
    </item>
  </channel>
</rss>

