- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2025 02:30 AM
If an email is marked by the sender in their email client as sensitive, or the word private is used in the subject then Support Services (scoped application) picks this up and marks the Support Request as private. This is done by this._determinePrivacy() function in a script include. The client has asked if this could be disabled. I have searched and found this function. Suggestions I found asked I search for the BR or Inbound action that calls the function and disable it, however I could not find any. What is the best way to disable this function?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2025 02:51 AM
let the function be there.
Simply comment the code which calls that
how is that function called?
Since it starts with _ so it is a private function defined and called within the same script include.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-28-2025 04:30 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2025 02:51 AM
let the function be there.
Simply comment the code which calls that
how is that function called?
Since it starts with _ so it is a private function defined and called within the same script include.
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-28-2025 08:56 PM
Hope you are doing good.
Did my reply answer your question?
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-06-2025 10:20 AM
Thank you @Ankur Bawiskar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2025 04:09 AM
Hello,
it's a very common scenario in ServiceNow, especially with scoped applications like Support Services where logic is hidden in script includes and not always clearly linked from a BR or Inbound Action.
Since you've already identified the this._determinePrivacy() function in a Script Include, and you're trying to prevent its logic from affecting incoming emails.
Best Regard,
Emily