<?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: Screen Painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785619#M910771</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;Yes. You need to check/uncheck the option to show the field (or not) in screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look for Visible check box, change it and test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Apr 2008 20:23:18 GMT</pubDate>
    <dc:creator>rodrigo_paisante3</dc:creator>
    <dc:date>2008-04-30T20:23:18Z</dc:date>
    <item>
      <title>Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785616#M910768</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;I have a small question :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a screen # 520 which has got few element list...if I want that a particular  element should not get displayed whn that particular screen is being called then to do this I think we need to uncheck the input and output option for that particular item in the screen painter. Am i right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me through &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rajeev Gupta&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rajeev  Gupta on Apr 30, 2008 10:16 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:16:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785616#M910768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T20:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785617#M910769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can give the screen group and use the screen-active = 0 for that field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Assign GP1 in the screen group for that field. If you want to remove more than one field at a time than assign the same group in both the fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In your PBO, write this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT SCREEN.
  IF SCREEN-GROUP1 = 'GP1'.
    SCREEN-ACTIVE = 0.
    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;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785617#M910769</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-04-30T20:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785618#M910770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;input an doutput check box controls, whether  that field is an input enabled field or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to make it visible/invisible ... you can do it in the pbo of screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = ' your fieldname'.&lt;/P&gt;&lt;P&gt;screen-invisible = 1.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:22:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785618#M910770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T20:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785619#M910771</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;Yes. You need to check/uncheck the option to show the field (or not) in screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look for Visible check box, change it and test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:23:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785619#M910771</guid>
      <dc:creator>rodrigo_paisante3</dc:creator>
      <dc:date>2008-04-30T20:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785620#M910772</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;Set a flag(Global variable) which will hold the value say 'X' if the elements need to be display on screen 520(say). &lt;/P&gt;&lt;P&gt;If that flag is not set - in the PBO of thta screen, u can put - &lt;/P&gt;&lt;P&gt;pbo of screen - 520.&lt;/P&gt;&lt;P&gt;if flag = ' '.&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name = 'control name'.&lt;/P&gt;&lt;P&gt;screen-nooutput = 1.&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;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sheel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Apr 30, 2008 4:25 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785620#M910772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T20:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785621#M910773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;                  You are wrong. Input means that allows for user data entry . We can enter input, Out put means it is only for display purpose and not editable. Both cases the element will be visible on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnaks,&lt;/P&gt;&lt;P&gt;Greetson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:26:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785621#M910773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T20:26:12Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785622#M910774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think I can achieve this under the Display attribute...there is one tab which says Invisible and I think if I check it infront of the field I am looking for then I think this won't display and also there are three options and I want to hide two of it and want that the third one should trigger automatically. is it possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:27:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785622#M910774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T20:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785623#M910775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rajeev,&lt;/P&gt;&lt;P&gt;                      On the element Screen attributs Display tab there is a check box for the Invisible. Use that field for your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Greetson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 20:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3785623#M910775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T20:29:49Z</dc:date>
    </item>
  </channel>
</rss>

