- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 09:28 AM
Hello All.
One my first day working in Service Now, I added a custom reference field called "Club Name" (u_locationref_1) to the incident form.
I didn't realize at the time that there is some out of the box functionality built using the "location" field. We ended up with about 100k incidents where the "location" field is blank but the good news in I do have the values in my custom field.
I need a background script that will go in to every incident and copy the value of my "Club Name" (u_locationref_1) to the "Location" field and not send notifications or run BR's?
Once it's done, I will be able to delete the custom field and just use location.
Can any one help?
Thanks
Carl
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 09:31 AM
Hi Carl,
Here you go.
updateincidents();
function updateincidents()
{
var gr = new GlideRecord('incident');
//gr.addQuery('u_locationref_1ISNOTEMPTY'); add this line if you want to filter records i.e locationref is not empty
gr.query();
while(gr.next())
{
gr.location = gr.getValue('u_locationref_1');
gr.setWorkflow(false);
gr.autoSysFields(false);
gr.update();
}
}
Background Scripts — ServiceNow Elite

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 09:31 AM
Hi Carl,
Here you go.
updateincidents();
function updateincidents()
{
var gr = new GlideRecord('incident');
//gr.addQuery('u_locationref_1ISNOTEMPTY'); add this line if you want to filter records i.e locationref is not empty
gr.query();
while(gr.next())
{
gr.location = gr.getValue('u_locationref_1');
gr.setWorkflow(false);
gr.autoSysFields(false);
gr.update();
}
}
Background Scripts — ServiceNow Elite
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 09:35 AM
Thanks Pradeep.
To be sure I have to ask. Would this be a bad idea to run during working hours?
Almost 100k records
Get Outlook for iOS<https://aka.ms/o0ukef>

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 09:36 AM
Hi Carl,
It shouldn't but I would prefer it to be run during NON BUSINESS HOURS.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 09:37 AM
100K records will take a few minutes. If this is production, then I agree with Pradeep - after hours.