<?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 Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964550#M396237</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to write this in LOOP AT SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO of that Screen, write the satement LOOP AT SCREEN and ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen. &lt;/P&gt;&lt;P&gt;      if screen-name = 'text box name'. &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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Feb 2007 12:13:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-09T12:13:42Z</dc:date>
    <item>
      <title>password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964547#M396234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can we make * for password field in dialog programming.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 12:09:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964547#M396234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T12:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964548#M396235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI ,&lt;/P&gt;&lt;P&gt;ITS SIMPLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U HAVE FOUR POSSIBLE THINGS ON A SCREEN FIELD:--  &amp;lt;b&amp;gt;ACTIVE, INPUT, OUTPUT, and INVISIBLE,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET THEM AS FOLLOWS&lt;/P&gt;&lt;P&gt;ACTIVE = '1'.&lt;/P&gt;&lt;P&gt;INPUT = '1'.&lt;/P&gt;&lt;P&gt;OUTPUT = '0'.&lt;/P&gt;&lt;P&gt;INVISIBLE = '1'.&lt;/P&gt;&lt;P&gt;SET THESE ATTRIBUTES DYNAMICALLY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHEERS!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 12:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964548#M396235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T12:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964549#M396236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Password Field on Selection-screen   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following code sets a PARAMETER to be a password input field, where for security &lt;/P&gt;&lt;P&gt; purposes only *'s are displayed on the screen during input   &lt;/P&gt;&lt;P&gt;				i.e. Password: ******* &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Parameters: p_password like sy-uname. 

*******************************************************
*AT SELECTION-SCREEN OUTPUT.
AT SELECTION-SCREEN OUTPUT. 
loop at screen. 
  check screen-name eq 'P_PASSWORD'. 
  move: 1 to screen-invisible. 
  modify screen. 
endloop&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 12:13:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964549#M396236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T12:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964550#M396237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to write this in LOOP AT SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PBO of that Screen, write the satement LOOP AT SCREEN and ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at screen. &lt;/P&gt;&lt;P&gt;      if screen-name = 'text box name'. &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;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 12:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964550#M396237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T12:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964551#M396238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Trsy this.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;parameters: p_pass type indxpwd.&lt;/P&gt;&lt;P&gt; &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_PASS'.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;      screen-invisible = '1'.&amp;lt;/b&amp;gt;&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; &lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  write:/ p_pass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 12:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964551#M396238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T12:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964552#M396239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this pop up function POPUP_GET_USER_PASSWORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pretty decent &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2007 12:16:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964552#M396239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T12:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: password</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964553#M396240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;execute the code .&lt;/P&gt;&lt;P&gt;This is in a report .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;parameters : p_name(10)  type c modif id abc.
at selection-screen output.

loop at screen.
if screen-group1 = 'ABC'.
screen-invisible = '1'.
modify screen.
endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;in dialog program assign a screen group for that field in field attributes &lt;/P&gt;&lt;P&gt;there will be four screen groups avaliable for each field .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here assign it as ABC &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in the PBO &lt;/P&gt;&lt;P&gt;write the code as&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-group1 = 'ABC'.&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;this will do.&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>Fri, 09 Feb 2007 12:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/password/m-p/1964553#M396240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-09T12:24:02Z</dc:date>
    </item>
  </channel>
</rss>

