- 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 10:52 AM
You will have to go with the time stamp on the response. He corrected his script later

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 10:53 AM
It happens with all of us everytime in one or other thread

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 11:00 AM
I agree. I was just kidding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 11:04 AM
Hahah I was starting to stress thinking you guys were seriously battling for the mark.
Thanks you guys. I have more easy ones coming soon…

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-22-2016 11:07 AM
"Proof that gamification works!" Ask the Expert: Community Etiquette, TechNow Ep 27