- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2016 06:55 AM
Hi-
Is there a way to copy over bookmarks from one user's profile to another? I've looked but haven't found a way to do so, and I'm not sure if this is possible.
Thanks!
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-01-2016 06:59 AM
Option 1: Copy them manually by going to sys_ui_bookmark.list, filter for the user and bookmarks you want, open each, replace the user name, right click the form header and select "Insert".
Option 2: Write a script to filter and copy them. This is a bit more involved and a knowledge of JavaScript and the GlideRecord API.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2020 08:12 AM
I've been trying to figure out the same every time I come across this task... Let us know if you figure it out!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-09-2020 02:31 PM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2019 04:54 AM
[The below XML solution doesn't work but I will leave it here for the others]
I've found a different non-scripting method to perform copy/paste of bookmarks from one account to another.
Steps:
- Navigate to Bookmarks,
- Filter by records which should be copied,
- Export xml
- Edit the xml with Notepad++
- Copy sys_id of a user where you want to copy bookmarks to
- In Notepad++ select sys_id, click CTRL + H and replace all values
- Do the same as above (point 5 & 6) for user's display_value
- Save xml
- Import xml to your instance.
I don't know if this is a bug free method but so far it worked for me.
I created my own script and managed to copy --> paste bookmarks from one account to another as well but the syntax is not as advanced as presented above by

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2019 06:05 AM
I would be careful of that method because the original records from sys_ui_bookmark each have their own sys_ids and if you upload those back to the same instance, you are basically overwriting the old records since sys_id is the system's coalesce value to determine uniqueness.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2019 01:12 PM
And this is exactly what happened 😄 At least if someone tries to do the same he will stop after reading this 😛