<?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 Code for selection screen,  urgent in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860073#M927791</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;  I need code for selection screen.&lt;/P&gt;&lt;P&gt;  I have four radio buttons, p1, p2,p3,p4(assume)&lt;/P&gt;&lt;P&gt;If I select second radiobutton, remaining three radiobuttons should be in disable mode and also the information under them should be in disable mode. Give the coding details. Thanks in advance. U will be rewarded.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2008 03:23:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-15T03:23:12Z</dc:date>
    <item>
      <title>Code for selection screen,  urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860073#M927791</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;  I need code for selection screen.&lt;/P&gt;&lt;P&gt;  I have four radio buttons, p1, p2,p3,p4(assume)&lt;/P&gt;&lt;P&gt;If I select second radiobutton, remaining three radiobuttons should be in disable mode and also the information under them should be in disable mode. Give the coding details. Thanks in advance. U will be rewarded.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 03:23:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860073#M927791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T03:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: Code for selection screen,  urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860074#M927792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;assing modif id to ur parameters :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: pa_logic RADIOBUTTON GROUP e1 USER-COMMAND inv DEFAULT 'X',
pa_equip RADIOBUTTON GROUP e1,
pa_ob RADIOBUTTON GROUP e1.

PARAMETERS: pa_zpms AS CHECKBOX MODIF ID i1.

SELECTION-SCREEN BEGIN OF BLOCK a2 WITH FRAME TITLE text-002.

PARAMETERS :
pa_pex1 TYPE rlgrap-filename MODIF ID i2, " buyers list PC
pa_uex1(200) LOWER CASE MODIF ID i2. " buyers list Unix
SELECTION-SCREEN END OF BLOCK a2.

SELECTION-SCREEN BEGIN OF BLOCK a1 WITH FRAME TITLE text-001.
PARAMETERS:
pa_pex2 TYPE rlgrap-filename MODIF ID i2, "Commercial list PC
pa_uex2(200) LOWER CASE MODIF ID i2. "Commercial list Unix

SELECTION-SCREEN END OF BLOCK a1.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Play with the parameters here..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AT SELECTION-SCREEN OUTPUT.

IF pa_equip &amp;lt;&amp;gt; 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'I1'.
screen-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.

IF pa_logic &amp;lt;&amp;gt; 'X'.
LOOP AT SCREEN.
IF screen-group1 = 'I2'.
screen-active = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 03:44:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860074#M927792</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2008-05-15T03:44:36Z</dc:date>
    </item>
    <item>
      <title>Re: Code for selection screen,  urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860075#M927793</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;REPORT ZTEST222 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_add  RADIOBUTTON GROUP radi&lt;/P&gt;&lt;P&gt;                         USER-COMMAND radio MODIF ID MOD,&lt;/P&gt;&lt;P&gt;  p_disp RADIOBUTTON GROUP radi DEFAULT 'X'  MODIF ID pod,&lt;/P&gt;&lt;P&gt;  p_chng RADIOBUTTON GROUP radi MODIF ID rad,&lt;/P&gt;&lt;P&gt;  p_er_log RADIOBUTTON GROUP radi MODIF ID cod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_idn    FOR  vendor   MODIF ID mod,&lt;/P&gt;&lt;P&gt;                               s_pcode  FOR ws_c_pcode MODIF ID pod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:  p_plant    LIKE  zaw_pol_plan-plant   MODIF ID rad,&lt;/P&gt;&lt;P&gt;             p_zzvend   LIKE  zaw_pol_plan-zzvendor   MODIF ID cod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF p_add EQ 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 EQ 'MOD'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ELSE.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF p_disp EQ 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 EQ 'POD'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ELSE.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_chng EQ 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 EQ 'RAD'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ELSE.&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;&lt;/P&gt;&lt;P&gt;IF p_er_log EQ 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 EQ 'COD'.&lt;/P&gt;&lt;P&gt;        screen-active = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ELSE.&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;&lt;/P&gt;&lt;P&gt;Pls. reward if useful&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 03:49:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860075#M927793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T03:49:18Z</dc:date>
    </item>
    <item>
      <title>Re: Code for selection screen,  urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860076#M927794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Murali Krishna,&lt;/P&gt;&lt;P&gt;    Entire selection screen is empty after using ur code when executing F8. Thanks a lot, i would be glad if u can correct me.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 14:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860076#M927794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T14:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Code for selection screen,  urgent</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860077#M927795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When you say rest of the radio buttons should be disabled do u mean that they should be unselected ? &lt;/P&gt;&lt;P&gt;secondly can i ask you what is the need for you to disable the radio buttons. If you use the same radiobutoon group on all the four rardiobuttons , then u will anywas be able to only select one radiobutton at a time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : p1 as radiobutton group radi,&lt;/P&gt;&lt;P&gt;                  p2 as radiobutton group radi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when u run the program system only allows to select one radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 14:48:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/code-for-selection-screen-urgent/m-p/3860077#M927795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T14:48:42Z</dc:date>
    </item>
  </channel>
</rss>

