<?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 using Paramters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017081#M80282</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;Check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/tips/security_password.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/tips/security_password.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Sep 2005 09:58:56 GMT</pubDate>
    <dc:creator>jayanthi_jayaraman</dc:creator>
    <dc:date>2005-09-20T09:58:56Z</dc:date>
    <item>
      <title>Password using Paramters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017077#M80278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Requirement is,&lt;/P&gt;&lt;P&gt;In the parameters screen, the user has to enter the password.&lt;/P&gt;&lt;P&gt;But it should be Mask on screen as asterisks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the user has to enter the password But it should not be Visible in screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I am clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do this in Parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 09:44:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017077#M80278</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T09:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: Password using Paramters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017078#M80279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this thread:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="634988"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ville&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 09:49:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017078#M80279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T09:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Password using Paramters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017079#M80280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumi (again),&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's and example from the thread I just referred:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_pwd(10) TYPE c LOWER CASE OBLIGATORY DEFAULT 'secret' MODIF ID 999.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.
IF screen-group1 = '999'.
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;Ville&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 09:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017079#M80280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T09:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Password using Paramters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017080#M80281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sumi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the following code, it will be help ful to you.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
parameter: p_pass(10) type c.

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;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Phani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 09:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017080#M80281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-20T09:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: Password using Paramters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017081#M80282</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;Check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/tips/security_password.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/tips/security_password.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2005 09:58:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-using-paramters/m-p/1017081#M80282</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-09-20T09:58:56Z</dc:date>
    </item>
  </channel>
</rss>

