<?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: Masking sensitive fields during display in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413478#M819835</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas, Rob &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your questions and answers for the maksing fields. I'm kindoff looking for a similar issue would appreciate and your responses if some one would have come up with a solution. I beleive SAP Would have a solution for this bcoz masking of social is a common scenario and it would come with security team or functional team while creating security matrix I'll check with my team. If any one have an anwer for this kindly update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Dec 2009 07:34:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-21T07:34:00Z</dc:date>
    <item>
      <title>Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413469#M819826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We want to mask some sensitive fields such as bank account number, social security number, credit card number etc during display based on an authority check. The displayed values, if not authorized, may look something like *****&lt;STRONG&gt;1234 or 1234&lt;/STRONG&gt;***** without fully displaying the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen some options to do that for credit card numbers but what are our options to do that for any such sensitive fields? Do we have to go for third party tools? If so, do they support only certain fields? Also, we want to do this at the domain level, so that no matter which transaction one of these sensitive fields is displayed on, we want this authority check and masking to happen. I looked for conversion routine option, but not all the domains have conversion routines attached to them. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Encryption of the data at the database level is something we want to keep as last resort. We are on ECC 6.0 version.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 15:02:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413469#M819826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T15:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413470#M819827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are these standard SAP tables and domains? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would think that some sort of conversion routine would be your best bet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I recall a similar question a while back, but I don't know if it was ever answered satisfactorily. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Feb 16, 2008 4:01 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2008 22:11:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413470#M819827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-15T22:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413471#M819828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are these fields in standard SAP transactions or in your own developments?  If you're considering encryption, I can only assume the latter.  In which case, you've full control over what is displayed.  Rob's suggestion of conversion functions is very neat.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the former, then you could use transaction variants (shd0), to create transactions that mask the sensitive fields completely.  Then create your own program that all users calls, that does a further CALL TRANSACTION, depending on the results of authority checks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 17 Feb 2008 06:23:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413471#M819828</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2008-02-17T06:23:13Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413472#M819829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Rob/Mathew, I have already looked into conversion routines as I mentioned in my post. But not all of them have conversion routines attached to their domains. So I will have to modify standard SAP domains to add the conversion routines, unless there is another way that I am missing here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are standard SAP transactions where we want to do this not custom ones. Hiding is not an option.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 15:31:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413472#M819829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T15:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413473#M819830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;did you think about Field-Exits (Transaction: CMOD and then FCOD: PRFB) instead of modification.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some useful Hints may be found in Note 29377.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Martin Pfeiffer on Feb 18, 2008 4:50 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Martin Pfeiffer on Feb 18, 2008 4:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 15:45:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413473#M819830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T15:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413474#M819831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This was the question I was referring to. It is obviously not answered, but you could contact the individual directly to see how he managed:&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="4614532"&gt;&lt;/A&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 21:37:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413474#M819831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T21:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413475#M819832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Rob, he is my collegue asking the same question. So I can say for sure that he hasn't found an answer to it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 21:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413475#M819832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T21:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413476#M819833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, OK - that gave me a chuckle!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2008 21:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413476#M819833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-19T21:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413477#M819834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi! Srinivas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you found any solution for your question yet ? Would you mind share it with me ? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Apr 2008 23:26:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413477#M819834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-16T23:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413478#M819835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srinivas, Rob &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Appreciate your questions and answers for the maksing fields. I'm kindoff looking for a similar issue would appreciate and your responses if some one would have come up with a solution. I beleive SAP Would have a solution for this bcoz masking of social is a common scenario and it would come with security team or functional team while creating security matrix I'll check with my team. If any one have an anwer for this kindly update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Dec 2009 07:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413478#M819835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-21T07:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413479#M819836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We still have no answer for this. Third party tools seem to be the only answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Aug 2010 20:17:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413479#M819836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-08-27T20:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413480#M819837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this configuration. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPRO -&amp;gt; Cross-application components -&amp;gt; Payment cards -&amp;gt; Make security settings for payment cards. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should take care of your issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Dec 2010 17:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413480#M819837</guid>
      <dc:creator>former_member753293</dc:creator>
      <dc:date>2010-12-29T17:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Masking sensitive fields during display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413481#M819838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Was anyone able to solve this problem? &lt;/P&gt;&lt;P&gt;Have you tried a Field Exit?&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/fr/c8/19765b43b111d1896f0000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/fr/c8/19765b43b111d1896f0000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2011 20:23:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/masking-sensitive-fields-during-display/m-p/3413481#M819838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-19T20:23:53Z</dc:date>
    </item>
  </channel>
</rss>

