<?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: Hide the Table entry in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010172#M1496505</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. If you want to make it case sensitive, then set this flag in the domain of the corresponding field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to mask the contents of the field, then in PBO, modify screen field properties as follows:&lt;/P&gt;&lt;P&gt;In screen layout, set the screen group (1, 2, 3, or 4) of this field (column) as, say PWD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO add the following line..&lt;/P&gt;&lt;P&gt;MODULE MASK_PASSWORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add the following code to this module:&lt;/P&gt;&lt;P&gt;LOOP at SCREEN.&lt;/P&gt;&lt;P&gt;screen-active = 1&lt;/P&gt;&lt;P&gt;screen-input = 1..&lt;/P&gt;&lt;P&gt;screen-output = 0.&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;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;This will make the entries in the field (or all fields with screen group = PWD) show as '*********'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 29 May 2010 13:33:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-05-29T13:33:26Z</dc:date>
    <item>
      <title>Hide the Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010171#M1496504</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;&lt;/P&gt;&lt;P&gt;I need to maintained the passwords in the table, while maintaing need to take the case sensitive.&lt;/P&gt;&lt;P&gt;But it is taking CAPS. and It should not visible in the display mode. is it possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 11:47:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010171#M1496504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-29T11:47:25Z</dc:date>
    </item>
    <item>
      <title>Re: Hide the Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010172#M1496505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. If you want to make it case sensitive, then set this flag in the domain of the corresponding field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to mask the contents of the field, then in PBO, modify screen field properties as follows:&lt;/P&gt;&lt;P&gt;In screen layout, set the screen group (1, 2, 3, or 4) of this field (column) as, say PWD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO add the following line..&lt;/P&gt;&lt;P&gt;MODULE MASK_PASSWORD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add the following code to this module:&lt;/P&gt;&lt;P&gt;LOOP at SCREEN.&lt;/P&gt;&lt;P&gt;screen-active = 1&lt;/P&gt;&lt;P&gt;screen-input = 1..&lt;/P&gt;&lt;P&gt;screen-output = 0.&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;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;This will make the entries in the field (or all fields with screen group = PWD) show as '*********'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 13:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010172#M1496505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-29T13:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Hide the Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010173#M1496506</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;If you have a custom program to do the maintenance of data, you can set the field of password on screen (as  "invisible" in screen painter).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you wish that the password do not appear is table in SE16, you have to criptography the password before save and de-criptography when read from table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leandro Mengue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 May 2010 13:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010173#M1496506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-05-29T13:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hide the Table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010174#M1496507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I got the solution, just define the Domain as XUBCODE for the particular field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jun 2010 06:43:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-the-table-entry/m-p/7010174#M1496507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-01T06:43:42Z</dc:date>
    </item>
  </channel>
</rss>

