<?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: modifying the selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850803#M925739</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;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_char type c,&lt;/P&gt;&lt;P&gt;            p_num  type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt; loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-name = 'P_NUM'.&lt;/P&gt;&lt;P&gt;    if not p_char is initial.&lt;/P&gt;&lt;P&gt;     screen-input = 0.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;     screen-input = 1.&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 screen-name = 'P_CHAR'.&lt;/P&gt;&lt;P&gt;    if not p_num is initial.&lt;/P&gt;&lt;P&gt;     screen-input = 0.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;     screen-input = 1.&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;  modify screen.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 May 2008 07:14:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-16T07:14:42Z</dc:date>
    <item>
      <title>modifying the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850798#M925734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;I have two fields in selection screen sales order &amp;amp; SV Note.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here if i enter SO,the SV Note field should be disabled &amp;amp; if i enter SV Note, SO field should be disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one give me the code for this ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Naresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:20:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850798#M925734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T06:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: modifying the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850799#M925735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS       : r_one     RADIOBUTTON GROUP r2 USER-COMMAND u2.
PARAMETER        : p_one(10) TYPE c.
PARAMETERS       : r_two     RADIOBUTTON GROUP r2 DEFAULT 'X'.
PARAMETER        : p_two(10) TYPE c.


AT SELECTION-SCREEN OUTPUT.

  LOOP AT SCREEN.
    IF r_one = 'X'.
      IF screen-name = 'P_TWO'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDIF.
    IF r_two = 'X'.
      IF screen-name = 'P_ONE'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850799#M925735</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2008-05-16T06:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: modifying the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850800#M925736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;parameters : p type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : d type i.&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;loop at screen.&lt;/P&gt;&lt;P&gt;if p is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if screen-name   = 'D'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;endif.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;user just need to press enter to make that effect&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850800#M925736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T06:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: modifying the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850801#M925737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_order .... modif id 'ABC',&lt;/P&gt;&lt;P&gt;                       s_sv..........modif id 'DEF'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'DEF'.&lt;/P&gt;&lt;P&gt;   if not s_order is initial and screen-fieldname = 'S_SV'.&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;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this and get back to me incase of any queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Dont forget to reward points if found useful.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Satyesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 06:31:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850801#M925737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T06:31:51Z</dc:date>
    </item>
    <item>
      <title>Re: modifying the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850802#M925738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear gopi,&lt;/P&gt;&lt;P&gt;can you tell me how to use only with the paramaters &amp;amp; i am not using the radio buttons...kindly revert me ASAP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 07:03:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850802#M925738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T07:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: modifying the selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850803#M925739</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;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_char type c,&lt;/P&gt;&lt;P&gt;            p_num  type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt; loop at screen.&lt;/P&gt;&lt;P&gt;   if screen-name = 'P_NUM'.&lt;/P&gt;&lt;P&gt;    if not p_char is initial.&lt;/P&gt;&lt;P&gt;     screen-input = 0.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;     screen-input = 1.&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 screen-name = 'P_CHAR'.&lt;/P&gt;&lt;P&gt;    if not p_num is initial.&lt;/P&gt;&lt;P&gt;     screen-input = 0.&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;     screen-input = 1.&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;  modify screen.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 07:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifying-the-selection-screen/m-p/3850803#M925739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T07:14:42Z</dc:date>
    </item>
  </channel>
</rss>

