asked on May 22, 2017
I see in the Laserfiche help files I can get the member difference between two roles. What if I want to get all of the role members excluding one member who's AD username is in a field/variable. So if RoleA contains User1, User2 and User3 and I want to exclude User2. I am getting User2's domain name from a field/variable. Is this possible?
Here's the code I mentioned from the help files.
var analysts = team.findMembersByRole('Analyst'); var accountants = team.findMembersByRole('Accountant'); $result = $util.difference(analysts, accountants);
1
0