<?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 gray in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205914#M764298</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;    I want to gray the two fields WERKS and BURKS.Here is my piece of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block prog with frame title text-001.&lt;/P&gt;&lt;P&gt;parameters: p_werks  type pa0001-werks default 'ABC',&lt;/P&gt;&lt;P&gt;                   p_burks  type zabc-burks default 'Y'.&lt;/P&gt;&lt;P&gt;selection-screen end of block prog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;if p_werks = '1221'.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = 'p_werks'.&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;endif.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = 'p_burks'.&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;Please help me in fixing this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Dec 2007 18:11:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-13T18:11:55Z</dc:date>
    <item>
      <title>selection screen Field gray</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205914#M764298</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;    I want to gray the two fields WERKS and BURKS.Here is my piece of code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block prog with frame title text-001.&lt;/P&gt;&lt;P&gt;parameters: p_werks  type pa0001-werks default 'ABC',&lt;/P&gt;&lt;P&gt;                   p_burks  type zabc-burks default 'Y'.&lt;/P&gt;&lt;P&gt;selection-screen end of block prog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;if p_werks = '1221'.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = 'p_werks'.&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;endif.&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name = 'p_burks'.&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;Please help me in fixing this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 18:11:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205914#M764298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T18:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen Field gray</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205915#M764299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
selection-screen begin of block prog with frame title text-001.
parameters: p_werks type pa0001-werks default 'ABC' modif id mid,
p_burks type zabc-burks default 'Y' modif id mid.
selection-screen end of block prog.

at selection-screen output.
*if p_werks = '1221'.
loop at screen.
if screen-group1 = 'MID'.
screen-input = '0'.
modify screen.
endif.
endloop.
*endif.
*loop at screen.
*if screen-name = 'p_burks'.
*screen-input = '0'.
*modify screen.
*endif.
*endloop.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 18:17:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205915#M764299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T18:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen Field gray</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205916#M764300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at selection screen output event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you just put &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check the screen header line... U will know what all can be done with selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 18:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205916#M764300</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2007-12-13T18:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen Field gray</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205917#M764301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Message was deleted by priyaabap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 19:23:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-field-gray/m-p/3205917#M764301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T19:23:41Z</dc:date>
    </item>
  </channel>
</rss>

