Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2019 11:55 AM
Hi,
There does not exists OOB.
You can try using below business rule on User (sys_user) tablethat runs after insert/update with condition as
(function executeRule(current, previous /*null when async*/) {
// Add your code here
var livetable=new GlideRecord('live_profile');
livetable.addQuery('document',current.sys_id);
livetable.query();
while(livetable.next())
{
livetable.photo=current.photo;
livetable.update();
}
})(current, previous);
Would not have any negative impact as the source of image would most possibly be AD always & thus avoid having different photos for same User.
Thanks,
Jaspal Singh
Hit Helpful or Correct on the impact of response.