Compare list items to security group

  • 8 November 2016
  • 1 reply
  • 0 views

Badge +4

I need to be able to compare a SharePoint list with users to an AD security group. Based on the comparison, I need to add new users since the last comparison but not over write the existing members. Does anyone know how I would accomplish this with a Nintex workflow? Thanks


1 reply

Badge +4

I was able to accomplish this on my own. Here's how I set it up in case anyone else is looking to do the same:

Actions:

- Query List: store in collection variable.

- Query LDAP: store in collection variable.

- For each: Loops through list variable and stores it in user/group variable

- Collection operation: Remove by value action to remove list users from the LDAP collection variable.

- For each: Loops through LDAP collection variable and stores it in user/group variable.

- Create item: Creates and item in list from the LDAP user/group variable.

Reply