<?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 INVISIBLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099389#M437477</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;have you put your code in the AT SELECTION-SCREEN OUTPUT event?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kostas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 09:14:54 GMT</pubDate>
    <dc:creator>kostas_tsioubris</dc:creator>
    <dc:date>2007-04-16T09:14:54Z</dc:date>
    <item>
      <title>SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099385#M437473</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;I want when the user enters some name in the field UNAME it should be shown as ******.&lt;/P&gt;&lt;P&gt;I am doing like the below but not working.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'UNAME'.&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = 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;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:10:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099385#M437473</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-04-16T09:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099386#M437474</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;assign a modif-id 'md1'to the screen field 'UNAME' and use &lt;/P&gt;&lt;P&gt;SCREEN-GROUP1 eq 'md1' in place of SCREEN-NAME eq 'UNAME'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u have to write this code in AT SELECTION-SCREEN OUTPUT event&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099386#M437474</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099387#M437475</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN.
IF SCREEN-NAME = 'UNAME'.
SCREEN-INVISIBLE = '1'.      "&amp;lt;-----------------1 in quotes
MODIFY SCREEN.
ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:13:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099387#M437475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:13:36Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099388#M437476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELCTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'UNAME'.
 SCREEN-INVISIBLE = '1'.
 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;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:14:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099388#M437476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099389#M437477</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;have you put your code in the AT SELECTION-SCREEN OUTPUT event?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kostas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:14:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099389#M437477</guid>
      <dc:creator>kostas_tsioubris</dc:creator>
      <dc:date>2007-04-16T09:14:54Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099390#M437478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sankar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is saying NOT A VALID USER NAME AND NOT DISPLAYING THE SELECTION TEXTS TOO BY ABRUPTLY EXITING FROM THE PROG.&lt;/P&gt;&lt;P&gt;KIRAN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:16:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099390#M437478</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-04-16T09:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099391#M437479</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;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using screen then go to layout --- double click field name -- ATTRIBUTES -- program -- chk this box  "* entry "&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:18:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099391#M437479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099392#M437480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;DO u want the field to be invisible or value should be ******&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for invisible,&lt;/P&gt;&lt;P&gt;at selection-screen on outout.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'UNAME'.&lt;/P&gt;&lt;P&gt;SCREEN-INVISIBLE = 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;&lt;/P&gt;&lt;P&gt;or converting into ****&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME = 'UNAME'.&lt;/P&gt;&lt;P&gt;SCREEN-value = '******'.&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;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099392#M437480</guid>
      <dc:creator>former_member632991</dc:creator>
      <dc:date>2007-04-16T09:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099393#M437481</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;I am not using Module Pool but a report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099393#M437481</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-04-16T09:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099394#M437482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;post ur code so that its easy to understand&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chk this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT YCHATEST.

PARAMETERS : UNAME LIKE SY-UNAME.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.
IF SCREEN-NAME = 'UNAME'.
SCREEN-INVISIBLE = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:30:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099394#M437482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099395#M437483</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;I am trying the following code but in vain.kindly help me.&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-NAME = 'UNAME'.&lt;/P&gt;&lt;P&gt;   SCREEN-INVISIBLE = '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;kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:37:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099395#M437483</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-04-16T09:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: SCREEN INVISIBLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099396#M437484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;show the declaration of UNAME also????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-invisible/m-p/2099396#M437484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:40:30Z</dc:date>
    </item>
  </channel>
</rss>

