<?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 Selection Screen - Field dehighlight in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983790#M72527</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;How can i make an Selection screen field not as an Input field.&lt;/P&gt;&lt;P&gt;The field is a parameter P_GJAHR which will always be set to 2005. So, i would like to see FY 2005 on the selection screen field as dehighlighted.&lt;/P&gt;&lt;P&gt;Would be glad if views are provided on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;- PSK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Jun 2005 06:13:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-30T06:13:47Z</dc:date>
    <item>
      <title>Selection Screen - Field dehighlight</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983790#M72527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;How can i make an Selection screen field not as an Input field.&lt;/P&gt;&lt;P&gt;The field is a parameter P_GJAHR which will always be set to 2005. So, i would like to see FY 2005 on the selection screen field as dehighlighted.&lt;/P&gt;&lt;P&gt;Would be glad if views are provided on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;- PSK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 06:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983790#M72527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-30T06:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen - Field dehighlight</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983791#M72528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sravan,&lt;/P&gt;&lt;P&gt;  Use this code.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_GJAHR TYPE gjahr default &amp;#145;2005&amp;#146; MODIF ID md1,&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-group1 = 'MD1'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&lt;/P&gt;&lt;P&gt;        screen-input  = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&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;Best Regards&lt;/P&gt;&lt;P&gt;Swagatika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 06:18:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983791#M72528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-30T06:18:11Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen - Field dehighlight</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983792#M72529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS : P_GJAHR LIKE BKPF-GJAHR MODIF ID SG1.

...

AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-GROUP1 = 'SG1'.
      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;Erwan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 06:18:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983792#M72529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-30T06:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen - Field dehighlight</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983793#M72530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erwan &amp;amp; Swagatika,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thankyou, the issue has been resolved.&lt;/P&gt;&lt;P&gt; At the same time this approach has issues as the Selection Screen parameter can be modified at the Variant level using TVARV Variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt; - PSK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jun 2005 09:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-dehighlight/m-p/983793#M72530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-30T09:27:59Z</dc:date>
    </item>
  </channel>
</rss>

