Jaspal Singh
Mega Patron

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

find_real_file.png

(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.