<?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: hide screen elements using screen-active in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381793#M186296</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First you assign a group to all of your fields which you want to hide and also set invisible mode of screen field by going attributes properties.Than try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ID1'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-output = 1.&lt;/P&gt;&lt;P&gt;screen-invisible = 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;Regards&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 08 Jul 2006 04:45:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-07-08T04:45:54Z</dc:date>
    <item>
      <title>hide screen elements using screen-active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381790#M186293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI, I used screen-active = 0 to set a input field to be invisible(hiden), such as: &lt;/P&gt;&lt;P&gt;parameters: p_batch as checkbox default 'X' user-command batch.&lt;/P&gt;&lt;P&gt;parameters: param like rlgrap-filename default 'c:\test.xls' modif&lt;/P&gt;&lt;P&gt;id id1.&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 = 'id1'.&lt;/P&gt;&lt;P&gt;screen-active = 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;after executing it, the input field of param is hiden, but the selection-text of this field is still there, how to solve that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;legend.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jul 2006 03:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381790#M186293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-08T03:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: hide screen elements using screen-active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381791#M186294</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;to make ur fields invisible use this syntax-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        IF screen-group1 = 'G1'.&lt;/P&gt;&lt;P&gt;          screen-active = 1.&lt;/P&gt;&lt;P&gt;          screen-input = 0.&lt;/P&gt;&lt;P&gt;          screen-output = 1.&lt;/P&gt;&lt;P&gt;          screen-invisible = 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;Hope this helps u.&lt;/P&gt;&lt;P&gt;Seema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jul 2006 03:57:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381791#M186294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-08T03:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: hide screen elements using screen-active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381792#M186295</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;Copy this example and check the result. It is hiding both field and its text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZWA_TEST .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_batch as checkbox default 'X' user-command batch.&lt;/P&gt;&lt;P&gt;parameters: param like rlgrap-filename default 'c:\test.xls' modif&lt;/P&gt;&lt;P&gt;id id1.&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;if screen-group1 = 'ID1'.&lt;/P&gt;&lt;P&gt;screen-active = 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;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Wasim Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jul 2006 04:44:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381792#M186295</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-07-08T04:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: hide screen elements using screen-active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381793#M186296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First you assign a group to all of your fields which you want to hide and also set invisible mode of screen field by going attributes properties.Than try this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ID1'.&lt;/P&gt;&lt;P&gt;screen-active = 1.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;screen-output = 1.&lt;/P&gt;&lt;P&gt;screen-invisible = 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;Regards&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jul 2006 04:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381793#M186296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-08T04:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: hide screen elements using screen-active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381794#M186297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, thanks to all. i have tested it, successfully. i only used active = 0 to hide. i don't know why i failed while testing last night, anyway, thanks a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jul 2006 04:49:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381794#M186297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-07-08T04:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: hide screen elements using screen-active</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381795#M186298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Legend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your problem is solved then close this thread after rewarding points.&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;Wasim Ahmed&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Jul 2006 04:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-screen-elements-using-screen-active/m-p/1381795#M186298</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-07-08T04:51:54Z</dc:date>
    </item>
  </channel>
</rss>

