<?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 radio button in module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool/m-p/2889409#M678965</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am having 3 radio button say r1,r2,r3. the r1 or r2 button selected means their corresponding input field will be enable otherwise it will be inactive. the code which i return for that is working fine. but the problem is the default option is r3 so i dont want the input buttons to be active while the page is loading. but always it showing the input fields. after that if i try its working fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code which i am using is&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;  when 'RB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if RB3 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;       if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         screen-active = 0.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;         CLEAR SCREEN.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;       if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&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;  if RB1 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;       if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 1.&lt;/P&gt;&lt;P&gt;         screen-active = 1.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;       if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         screen-active = 0.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;&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;  if RB2 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         screen-active = 0.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 1.&lt;/P&gt;&lt;P&gt;         screen-active = 1.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;         &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;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Oct 2007 09:43:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-12T09:43:07Z</dc:date>
    <item>
      <title>radio button in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool/m-p/2889409#M678965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am having 3 radio button say r1,r2,r3. the r1 or r2 button selected means their corresponding input field will be enable otherwise it will be inactive. the code which i return for that is working fine. but the problem is the default option is r3 so i dont want the input buttons to be active while the page is loading. but always it showing the input fields. after that if i try its working fine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code which i am using is&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;  when 'RB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if RB3 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;       if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         screen-active = 0.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;         CLEAR SCREEN.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;       if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&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;  if RB1 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;       if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 1.&lt;/P&gt;&lt;P&gt;         screen-active = 1.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;       if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         screen-active = 0.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;&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;  if RB2 = 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         screen-active = 0.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;      if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;         screen-input = 1.&lt;/P&gt;&lt;P&gt;         screen-active = 1.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;         &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;thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 09:43:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool/m-p/2889409#M678965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-12T09:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: radio button in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool/m-p/2889410#M678966</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 to disable them in PBO also(when radio button R3 is selected)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 09:52:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool/m-p/2889410#M678966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-12T09:52:28Z</dc:date>
    </item>
    <item>
      <title>Re: radio button in module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool/m-p/2889411#M678967</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 AT SELECTION-SCREEN ON OUTPUT event and try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON OUTPUT.&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'RB'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if RB3 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;CLEAR SCREEN.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&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;if RB1 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;screen-input = 1.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&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;if RB2 = 'X'.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'DATE' or screen-name = 'DATE1'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;if screen-name = 'AIRLINE_CODE' or screen-name = 'AIRLINE_CODE1'.&lt;/P&gt;&lt;P&gt;screen-input = 1.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;&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;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Suresh Aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Oct 2007 10:25:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/radio-button-in-module-pool/m-p/2889411#M678967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-12T10:25:06Z</dc:date>
    </item>
  </channel>
</rss>

