<?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 screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491635#M1256675</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi all,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; in the selection screen i need to have field account number , the account number 1000 should be standard no one can change . if i put default they can have an option to change how can i restrict with out changing the account number .&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; s_hkont FOR bseg-hkont default '1000'&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I HAVE few more fields in the selection screen as BUKRS GJAHR MONAT which i can change them only HKONT i cannot change&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HI Manujnath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

" 1. By using screen Options you can make that field display.. so no one can change..

Loop at screen .
if screen-name = 'HKONT'.  "Write your screen field at place of HKONT
screen-input = 0.
modify screen.
endif.
endloop.

 " 2. By validation the screen field by writing the code at at selction-screen on field

at selction-screen on p_field. "write your selction screen field at [place of p+field
if hkont ne 1000.
write : ' error'.
endif.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Apr 2009 13:32:11 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-20T13:32:11Z</dc:date>
    <item>
      <title>Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491633#M1256673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the selection screen i need to have field account number , the account number 1000 should be standard no one can change . if i put default they can have an option to change how can i restrict with out changing the account number .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_hkont FOR bseg-hkont default '1000'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I HAVE few more fields in the selection screen as BUKRS GJAHR MONAT which i can change them only HKONT i cannot change&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:26:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491633#M1256673</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:26:25Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491634#M1256674</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 this code to make it input disabled.&lt;/P&gt;&lt;P&gt;this code is tested and it works too&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select-options s_hkont FOR bseg-hkont default '1000'.
AT selection-screen output.
loop at screen.
  if screen-name cs 'S_HKONT'.
      clear screen-input.
      modify screen.
  endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Siddharth Chordia on Apr 20, 2009 3:35 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:30:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491634#M1256674</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491635#M1256675</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi all,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; in the selection screen i need to have field account number , the account number 1000 should be standard no one can change . if i put default they can have an option to change how can i restrict with out changing the account number .&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; s_hkont FOR bseg-hkont default '1000'&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; I HAVE few more fields in the selection screen as BUKRS GJAHR MONAT which i can change them only HKONT i cannot change&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HI Manujnath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

" 1. By using screen Options you can make that field display.. so no one can change..

Loop at screen .
if screen-name = 'HKONT'.  "Write your screen field at place of HKONT
screen-input = 0.
modify screen.
endif.
endloop.

 " 2. By validation the screen field by writing the code at at selction-screen on field

at selction-screen on p_field. "write your selction screen field at [place of p+field
if hkont ne 1000.
write : ' error'.
endif.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491635#M1256675</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491636#M1256676</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;s_hkont FOR bseg-hkont default '1000' MODIF-ID DIS.&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 = 'DIS'.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:33:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491636#M1256676</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491637#M1256677</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 may do as mentioned below by keeping the field as obligatory and defaulting it to '1000'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. You give a text to the side of the parameter saying ' This will work only for 1000'.&lt;/P&gt;&lt;P&gt;2. And do a validation in 'AT selection screen' event '1000' value. If any thing else is entered you can give a error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sitharamaraju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:33:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491637#M1256677</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:33:35Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491638#M1256678</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: bseg.

SELECT-OPTIONS: s_hkont FOR bseg-hkont DEFAULT '1000' MODIF ID jay.

AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF screen-group1 = 'JAY'.
*      screen-active = '0'.
      screen-input = '0'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:35:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491638#M1256678</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-04-20T13:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491639#M1256679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if i give as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_hkont  FOR bseg-hkont  default '23440104'.&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 cs 'S_HKONT'.&lt;/P&gt;&lt;P&gt;      screen-input = space.&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;it is directly going to output screen , i  have to see the selction screen and change the BUKRS AND other fields only HKONT should be disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not able to see selectio screen at all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491639#M1256679</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491640#M1256680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; it is directly going to output screen , i  have to see the selction screen and change the BUKRS AND other fields only HKONT should be disabled.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; i am not able to see selectio screen at all.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Modif id is missing...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:37:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491640#M1256680</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-04-20T13:37:36Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491641#M1256681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;would you please paste the code of your declaration part and the at selection-screen events..&lt;/P&gt;&lt;P&gt;so that it can be analyzed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491641#M1256681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491642#M1256682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_bukrs  FOR bkpf-bukrs  &lt;/P&gt;&lt;P&gt;                s_gjahr  FOR bkpf-gjahr  OBLIGATORY,&lt;/P&gt;&lt;P&gt;                s_monat  FOR bkpf-monat  OBLIGATORY,&lt;/P&gt;&lt;P&gt;               s_hkont  FOR bseg-hkont  default '1000' .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491642#M1256682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491643#M1256683</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;this is fine...&lt;/P&gt;&lt;P&gt;please paste the rest of the code.....&lt;/P&gt;&lt;P&gt;not able to understand where it is missing out on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:43:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491643#M1256683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T13:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491644#M1256684</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sree , we had enough spoon fed you, now you know what to do.. so please put some efforts to understand the code people gave. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 13:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491644#M1256684</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-04-20T13:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491645#M1256685</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 open the Program in SE51 ( Screen Painter ) with the Screen number of the Selection screen.( To obtain the screen number of selection screen; Open the program in SE38,Execute it. Once selection screen is displayed , Go to Menu &lt;STRONG&gt;Systems&lt;/STRONG&gt; under that select &lt;STRONG&gt;Status&lt;/STRONG&gt; . ) &lt;/P&gt;&lt;P&gt;Now Click on the layout button. Double Click on the Field that you want to Make Uneditable and uncheck the property &lt;STRONG&gt;Input Field&lt;/STRONG&gt; . Save the Screen and Activate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Execute your Program. You will see that field is Grayed Out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 15:49:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491645#M1256685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T15:49:43Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491646#M1256686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sree,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: bkpf, bseg.

SELECT-OPTIONS: s_bukrs  FOR bkpf-bukrs,
                s_gjahr  FOR bkpf-gjahr  OBLIGATORY,
                s_monat  FOR bkpf-monat  OBLIGATORY,
                s_hkont  FOR bseg-hkont  DEFAULT '1000' MODIF ID mo1.

INITIALIZATION.

  LOOP AT SCREEN.
    IF screen-group1 = 'MO1'.
      screen-input = 0.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 16:07:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491646#M1256686</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-04-20T16:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491647#M1256687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1 goto screen painter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 select the field and double click on it..&lt;/P&gt;&lt;P&gt;(property window for the field opens)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3 select the appropriate option to disable the field, sothat user can not edit the account number, but can see it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 in source code, in the select query, statically specify the account number in the where clause&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 16:26:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491647#M1256687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T16:26:56Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491648#M1256688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are my suggestions :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. If you want to keep a single constant value for the account number, why use a select option, why not go for a parameters instead and assign 0 to screen-input for that field in the at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Or the best would be to simply give a selection screen comment saying "Account no : 1000" and internally use a constant with a value 1000 and use that in the where clause.This way you won't have to take any extra efforts of disabling the field.&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>Mon, 20 Apr 2009 17:12:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/5491648#M1256688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T17:12:38Z</dc:date>
    </item>
  </channel>
</rss>

