<?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: password declaration in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156023#M455523</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZTEST_ALV_CHECK MESSAGE-ID ZZ .
 
 
PARAMETERS : P_PASS(6).
 
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-NAME = 'P_PASS'.
      SCREEN-INVISIBLE = '1'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Apr 2007 06:16:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-03T06:16:49Z</dc:date>
    <item>
      <title>password declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156022#M455522</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;       how to declare password to make it appear as series of astericks * in selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 06:12:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156022#M455522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T06:12:34Z</dc:date>
    </item>
    <item>
      <title>Re: password declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156023#M455523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZTEST_ALV_CHECK MESSAGE-ID ZZ .
 
 
PARAMETERS : P_PASS(6).
 
AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN.
    IF SCREEN-NAME = 'P_PASS'.
      SCREEN-INVISIBLE = '1'.
      MODIFY SCREEN.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 06:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156023#M455523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T06:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: password declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156024#M455524</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;parameters p_pw(10) type c .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;  if screen-NAME = 'P_PW'.&lt;/P&gt;&lt;P&gt;     SCREEN-INVISIBLE = '1'.&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;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rammohan Nagam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 06:21:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156024#M455524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T06:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: password declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156025#M455525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make the data type of the password field as RAW in the table.&lt;/P&gt;&lt;P&gt;You will see only * in the selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 06:24:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156025#M455525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T06:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: password declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156026#M455526</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;Double click on text field on screen -- It will shows attribute screen -- attributes -- program and check box *entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jogdand M B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 06:26:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-declaration/m-p/2156026#M455526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T06:26:51Z</dc:date>
    </item>
  </channel>
</rss>

