<?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>question How to apply conditional data anonymization in ServiceNow in ITSM forum</title>
    <link>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3466832#M552922</link>
    <description>&lt;DIV&gt;&lt;P&gt;We have a requirement to apply anonymization in ServiceNow, but only under specific conditions. For example, anonymize sensitive fields (like caller name, email, etc.) only when an Incident record is in a &lt;STRONG&gt;Closed&lt;/STRONG&gt; state.&lt;/P&gt;&lt;P&gt;Has anyone implemented conditional anonymization using &lt;STRONG&gt;Data Anonymization policies&lt;/STRONG&gt; or &lt;STRONG&gt;Flow Designer&lt;/STRONG&gt;?&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Is it possible to configure anonymization rules to run based on a condition (such as state = Closed)?&lt;/LI&gt;&lt;LI&gt;What’s the best approach: using out-of-the-box anonymization features, business rules, or a custom flow?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Any guidance, best practices, or sample configurations would be greatly appreciated!&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Kunica&lt;/P&gt;&lt;/DIV&gt;</description>
    <pubDate>Wed, 14 Jan 2026 09:17:20 GMT</pubDate>
    <dc:creator>kunica katke</dc:creator>
    <dc:date>2026-01-14T09:17:20Z</dc:date>
    <item>
      <title>How to apply conditional data anonymization in ServiceNow</title>
      <link>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3466832#M552922</link>
      <description>&lt;DIV&gt;&lt;P&gt;We have a requirement to apply anonymization in ServiceNow, but only under specific conditions. For example, anonymize sensitive fields (like caller name, email, etc.) only when an Incident record is in a &lt;STRONG&gt;Closed&lt;/STRONG&gt; state.&lt;/P&gt;&lt;P&gt;Has anyone implemented conditional anonymization using &lt;STRONG&gt;Data Anonymization policies&lt;/STRONG&gt; or &lt;STRONG&gt;Flow Designer&lt;/STRONG&gt;?&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Is it possible to configure anonymization rules to run based on a condition (such as state = Closed)?&lt;/LI&gt;&lt;LI&gt;What’s the best approach: using out-of-the-box anonymization features, business rules, or a custom flow?&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Any guidance, best practices, or sample configurations would be greatly appreciated!&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Kunica&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 14 Jan 2026 09:17:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3466832#M552922</guid>
      <dc:creator>kunica katke</dc:creator>
      <dc:date>2026-01-14T09:17:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to apply conditional data anonymization in ServiceNow</title>
      <link>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3467452#M552946</link>
      <description>&lt;P&gt;Yes, this is doable, but it’s not something the out-of-the-box anonymization policies handle by themselves.&lt;/P&gt;&lt;P&gt;ServiceNow’s Data Anonymization policies don’t really have a built-in “only run when state = Closed” switch. They’re meant to run on demand or on a schedule, not react to a record changing state. So if you rely on policies alone, you don’t get true conditional behavior.&lt;/P&gt;&lt;P&gt;The cleanest and most practical approach is to control anonymization with Flow Designer. You create a flow that runs when an Incident is updated, add a condition like &lt;EM&gt;State changes to Closed&lt;/EM&gt;, and then anonymize the required fields in the flow. That way, nothing is anonymized until the record actually meets your condition.&lt;/P&gt;&lt;P&gt;You could do this with a Business Rule as well, but that tends to get messy and harder to audit over time. Flows are easier to understand, log, and maintain, especially for something as sensitive as anonymization.&lt;/P&gt;&lt;P&gt;So in short:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;OOTB anonymization alone isn’t enough for conditional logic&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Flow Designer is the best and most supportable option&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Business Rules work, but are generally a last resort&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;This is a fairly common pattern, and Flow-based anonymization on state change is what most teams end up using in practice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/451395"&gt;@kunica katke&lt;/a&gt;&amp;nbsp;- &lt;EM&gt;&lt;STRONG&gt;Please mark as &lt;FONT color="#800080"&gt;Accepted Solution&lt;/FONT&gt; and &lt;FONT color="#800080"&gt;Thumbs Up&lt;/FONT&gt; if you find helpful&lt;/STRONG&gt; &lt;/EM&gt;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jan 2026 03:14:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3467452#M552946</guid>
      <dc:creator>Matthew_13</dc:creator>
      <dc:date>2026-01-15T03:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to apply conditional data anonymization in ServiceNow</title>
      <link>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3468469#M553073</link>
      <description>&lt;DIV&gt;&lt;P&gt;&lt;STRONG&gt;Thanks, Matthew, for your solution!&lt;BR /&gt;I’m using the Data Privacy module for anonymization, and your approach makes sense. I’m looking for a way to keep using the module but still trigger anonymization through Flow Designer when the state changes to Closed.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Do you have any suggestions on how to integrate the Data Privacy API with Flow Designer? Any guidance would be appreciated.&lt;/STRONG&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jan 2026 07:56:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3468469#M553073</guid>
      <dc:creator>kunica katke</dc:creator>
      <dc:date>2026-01-16T07:56:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to apply conditional data anonymization in ServiceNow</title>
      <link>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3501054#M555221</link>
      <description>&lt;P&gt;Hi Kunica, thanks for reaching out. We are working on a condition-based anonymization feature in the upcoming release. This will allow you to define specific conditions on the tables belonging to the data class being used in the anonymization policy. These condition filters can also be applied and run on a recurring schedule e.g., weekly or monthly.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Mar 2026 03:22:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/how-to-apply-conditional-data-anonymization-in-servicenow/m-p/3501054#M555221</guid>
      <dc:creator>lawrenceosa</dc:creator>
      <dc:date>2026-03-04T03:22:07Z</dc:date>
    </item>
  </channel>
</rss>

