<?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 in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476747#M223469</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;Using the code given below, the password will be masked in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_user type sy-uname,&lt;/P&gt;&lt;P&gt;            p_passwd(10) lower case.&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_PASSWD'.&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;    START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     WRITE : / 'Password Entered   :' , p_passwd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Aug 2006 10:48:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-17T10:48:20Z</dc:date>
    <item>
      <title>password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476737#M223459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;how to create a password field in a selection screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:33:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476737#M223459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476738#M223460</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>Thu, 17 Aug 2006 10:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476738#M223460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476739#M223461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer the following links:&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="459240"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the important thing to not is that you have to make the field as invisible using dynamic screen modifications:&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-name = 'P_PWD'.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:38:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476739#M223461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476740#M223462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer the following links:&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="459240"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the important thing to not is that you have to make the field as invisible using dynamic screen modifications:&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-name = 'P_PWD'.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476740#M223462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476741#M223463</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;Navigate to SCREEN PAINTER and click on the field PASSWORD --- you`ll get the attributes / properties screen, in the display properties check 'INVISIBLE'. Then whatever you type in the PASSWORD field, it`ll appear as *****.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try it, once u find success reward me the points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:39:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476741#M223463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476742#M223464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Ronnie,&lt;/P&gt;&lt;P&gt; Check out this thread..&lt;/P&gt;&lt;P&gt;&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="455574"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZSAMP .

Tables: mara.

select-options: s_matnr for mara-matnr.

at selection-screen output.

loop at screen.

if screen-name = 'S_MATNR-LOW'.
screen-invisible = 1.
SCREEN-ACTIVE = 1.
modify screen.

endif.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&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>Thu, 17 Aug 2006 10:39:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476742#M223464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:39:32Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476743#M223465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ronie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can do using the following code.&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_PWD'.&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;P&gt;&lt;/P&gt;&lt;P&gt;If helps reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476743#M223465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476744#M223466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz refer these posts, they might proove helful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="131817"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:40:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476744#M223466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:40:30Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476745#M223467</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 the sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ZTEST_LOGIN                             .
 
 
parameters: p_user type sy-uname,
            p_passwd(10).
 
 
    at selection-screen output.
 
    loop at screen.
    if screen-name = 'P_PASSWD'.
    screen-invisible = 1.
    modify screen.
    endif.
    endloop.&lt;/CODE&gt;&lt;/PRE&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;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476745#M223467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476746#M223468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZTESTH .&lt;/P&gt;&lt;P&gt;tables: mara.&lt;/P&gt;&lt;P&gt;PARAMETER: a TYPE I.&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-name = 'A'.&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;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;WRITE A.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXECUTE ABOVE REPORT AND CHECK.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:43:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476746#M223468</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-08-17T10:43:13Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476747#M223469</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;Using the code given below, the password will be masked in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_user type sy-uname,&lt;/P&gt;&lt;P&gt;            p_passwd(10) lower case.&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_PASSWD'.&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;    START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     WRITE : / 'Password Entered   :' , p_passwd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 10:48:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476747#M223469</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T10:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: password in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476748#M223470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ronie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Is there anything wrong with all the other codes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you answer my question so that i can correct it next time?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Aug 2006 11:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password-in-selection-screen/m-p/1476748#M223470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-17T11:06:19Z</dc:date>
    </item>
  </channel>
</rss>

