<?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: selection option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622973#M872812</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to display default value and the user should not change the default value then no need of giving obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this code...&lt;/P&gt;&lt;P&gt;PARAMETERS : p_newko LIKE rf05a-newko DEFAULT '0000165016' MODIF ID SC1.&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;    IF screen-group1 = 'SC1'.&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;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REWARD IF USEFUL&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sunil kairam on Mar 24, 2008 1:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Mar 2008 07:30:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-24T07:30:58Z</dc:date>
    <item>
      <title>selection option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622970#M872809</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;i have declared selection option as below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_newko  LIKE rf05a-newko OBLIGATORY DEFAULT '0000165016'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to make this field non editable i.e. user shuld not change this.  can u tell me how to do this ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 07:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622970#M872809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T07:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: selection option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622971#M872810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;write like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
PARAMETERS : p_newko LIKE rf05a-newko DEFAULT '0000165016' MODIF ID SC1.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-group1 = 'SC1'.
screen-INPUT = '0'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful give reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pankaj vashista&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 07:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622971#M872810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T07:22:16Z</dc:date>
    </item>
    <item>
      <title>Re: selection option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622972#M872811</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 this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
At selection-screen ouput.
Loop at screen.
 if screen-name = 'P_NEWKO'.
    screen-input = 1.
 modify screen.
endif.
enloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either its screen-input = 1 or screen-input = 0. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check both.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Akshay Raj on Mar 24, 2008 8:31 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 07:30:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622972#M872811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T07:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: selection option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622973#M872812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to display default value and the user should not change the default value then no need of giving obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this code...&lt;/P&gt;&lt;P&gt;PARAMETERS : p_newko LIKE rf05a-newko DEFAULT '0000165016' MODIF ID SC1.&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;    IF screen-group1 = 'SC1'.&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;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REWARD IF USEFUL&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sunil kairam on Mar 24, 2008 1:02 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 07:30:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622973#M872812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T07:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: selection option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622974#M872813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh..&lt;/P&gt;&lt;P&gt;may be it is useful...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assign parameter to a screen group...like below way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS &amp;lt;p&amp;gt;.. MODIF ID &amp;lt;key&amp;gt; ....&lt;/P&gt;&lt;P&gt;after that  u use below events and code like that..&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;IF SCREEN-GROUP1 = 'SCREENGROUP NAME'.&lt;/P&gt;&lt;P&gt;SCREEN-editable = '1'.&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 u want other options on selection screen like editable/noneditable, intensified..etc see SCREEN table in SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 07:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622974#M872813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T07:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: selection option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622975#M872814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;if u want to disable the text field u need to modify it using the following code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At selection-screen ouput.&lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt; if screen-name = 'P_NEWKO'.&lt;/P&gt;&lt;P&gt;    screen-invisible = 1.&lt;/P&gt;&lt;P&gt; modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;enloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 07:33:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622975#M872814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T07:33:21Z</dc:date>
    </item>
    <item>
      <title>Re: selection option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622976#M872815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Mar 2008 08:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-option/m-p/3622976#M872815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-24T08:53:11Z</dc:date>
    </item>
  </channel>
</rss>

