- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2018 03:54 AM
Hi All,
I am getting more than 6 crore log message entry for single log message. I have forgot where I have put this log. I have checked in the customer updates table "sys_update_xml" payload contains that log message but no records found. Is there any way to find the log message's source in servicenow?
Thanks in Advance!!!!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2018 06:17 AM
Open Studio and open any application.
In the upper right corner you find 'code search'.
check 'Search in all applications', and search.
With this you should find everything.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2018 06:00 AM
Hi Venkatesh,
Can you check the following server side components:
1) script include
2) business rules
3) script actions
4) schedule job
5) transform script
6) field map script
Mark Correct if this solves your issue and also hit Like and Helpful if you find my response worthy based on the impact.
Thanks
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-14-2018 06:17 AM
Open Studio and open any application.
In the upper right corner you find 'code search'.
check 'Search in all applications', and search.
With this you should find everything.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-04-2019 04:50 PM
This is a huge help, I was getting pretty sick of searching script fields in a million different places - Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-23-2023 04:44 AM
i tried, indeed it does find "most" but not all..
I get hundreds/thousands of these:
com.glide.script.RhinoEcmaError: "datediff" is not defined.
<refname> : Line(4) column(0)
1: (function calculatedFieldValue(current) {
2:
3: // Add your code here
==> 4: return datediff(current.resolved, current.created); // return the calculated value
5:
6: })(current);
as Source I see "Evaluator"...
it will find (function calculatedFieldValue(current), but the function definition is NOT the one from the error log...
searching just for return datediff returns nothing...