<?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 Disable second selection block. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308440#M505252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt; Can anyone answer this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the selection screen there are 2 blocks. In the first selection screen there is a check box.The user can input values in either if the selection blocks,NOT both. If the user checks the checkbox the second selection block should be disabled.How should i code this...Please advice.Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 May 2007 14:30:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-14T14:30:33Z</dc:date>
    <item>
      <title>Disable second selection block.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308440#M505252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt; Can anyone answer this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the selection screen there are 2 blocks. In the first selection screen there is a check box.The user can input values in either if the selection blocks,NOT both. If the user checks the checkbox the second selection block should be disabled.How should i code this...Please advice.Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 14:30:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308440#M505252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T14:30:33Z</dc:date>
    </item>
    <item>
      <title>Re: Disable second selection block.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308441#M505253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi madhavi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Just copy paste&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : CHK AS CHECKBOX USER-COMMAND ABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;  Block 1&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME .&lt;/P&gt;&lt;P&gt;PARAMETERS : A(10) TYPE C  MODIF ID BK1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------" /&gt;&lt;P&gt;  Block 2&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME .&lt;/P&gt;&lt;P&gt;PARAMETERS : B(10) TYPE C  MODIF ID BK2.&lt;/P&gt;&lt;P&gt;PARAMETERS : C(10) TYPE C  MODIF ID BK2.&lt;/P&gt;&lt;P&gt;PARAMETERS : D(10) TYPE C  MODIF ID BK2.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------------------------" /&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF CHK = 'X'.&lt;/P&gt;&lt;P&gt;      IF SCREEN-GROUP1 = 'BK1'.&lt;/P&gt;&lt;P&gt;        SCREEN-INVISIBLE = 1.&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;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF CHK IS INITIAL.&lt;/P&gt;&lt;P&gt;      IF SCREEN-GROUP1 = 'BK2'.&lt;/P&gt;&lt;P&gt;        SCREEN-INVISIBLE = 1.&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;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 14:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308441#M505253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T14:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: Disable second selection block.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308442#M505254</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;You can use the event AT SELECTION-SCREEN OUTPUT and LOOP AT SCREEN to disable the selection block. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this link for sample programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="39476"&gt;&lt;/A&gt;&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 14:40:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308442#M505254</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-05-14T14:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Disable second selection block.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308443#M505255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try something like this,&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 first_chk eq 'X' AND secnd_check eq 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE 'NOT BOTH' TYPE 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2007 14:41:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/disable-second-selection-block/m-p/2308443#M505255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-14T14:41:07Z</dc:date>
    </item>
  </channel>
</rss>

