Can't change the profile picture!!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2019 06:49 AM
Hi!
I am not able to change my profile picture, or any users profile image. I am security admin, and the only acl that we have (read) is admin override. I don't know where to look anyomore. I have debugged the field and that is the only acl on the field. I can see the image, but I can't change it. I've created a write acl too, but it doesn't make any difference.
Thanks!

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2019 06:58 AM
Hi Nora,
When you say, you cannot change, what is the issue you are facing?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2019 07:10 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-01-2019 08:23 AM
Hi,
It is a known issue in London version and it will be fixed in New York (PRB1316118).
Workaround: delete the picture from the background script, make sure table name and field names are correct.
var gr = new GlideRecord('sys_user');
gr.get('user sys id');
gr.picture = '';
gr.update();
Reference link: https://community.servicenow.com/community?id=community_question&sys_id=0b9322d7dbf3eb48a39a0b55ca96...
Mark my answer as correct or helpful if it helped.