<?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: Fixed value on selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682756#M886814</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;parameters:      pa_autyp  type aufk-autyp obligatory.&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;     check screen-name = 'SO_AUART-LOW'&lt;/P&gt;&lt;P&gt;        or screen-name = 'PA_AUTYP'.&lt;/P&gt;&lt;P&gt;     screen-input      = '0'.                " grayout&lt;/P&gt;&lt;P&gt;     modify              screen.&lt;/P&gt;&lt;P&gt;endloop."screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best!&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Apr 2008 14:57:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-03T14:57:03Z</dc:date>
    <item>
      <title>Fixed value on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682754#M886812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Group,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Curious how I can create a fixed value on the selection screen.  Either a parameter or selection option that appears on selection screen of a report, but a user is not able to change the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, if I want to default the chart of accounts to 'CAUS' and not allow it to be changed, is there an extension I can use here:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS:   p_ktopl TYPE ktopl OBLIGATORY DEFAULT 'CAUS'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want these fields on the screen for informational purposes, although I do use some of the selection ranges later in the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:50:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682754#M886812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed value on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682755#M886813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is ur solution&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:   p_ktopl TYPE ktopl OBLIGATORY DEFAULT 'CAUS'.&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;&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = 'P_KTOPL'.&lt;/P&gt;&lt;P&gt;      screen-required = 1.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;do reward&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ashish Paliwal on Apr 3, 2008 8:26 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:55:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682755#M886813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:55:06Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed value on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682756#M886814</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;parameters:      pa_autyp  type aufk-autyp obligatory.&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;     check screen-name = 'SO_AUART-LOW'&lt;/P&gt;&lt;P&gt;        or screen-name = 'PA_AUTYP'.&lt;/P&gt;&lt;P&gt;     screen-input      = '0'.                " grayout&lt;/P&gt;&lt;P&gt;     modify              screen.&lt;/P&gt;&lt;P&gt;endloop."screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best!&lt;/P&gt;&lt;P&gt;Jim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:57:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682756#M886814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed value on selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682757#M886815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks both of you!  That did it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Apr 2008 14:58:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fixed-value-on-selection-screen/m-p/3682757#M886815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-03T14:58:28Z</dc:date>
    </item>
  </channel>
</rss>

