Hi all, I'm interested in setting an inbound rule based on the following criteria: on premise user accounts must be synchronized if and only if the following condition applies
- company NOT NULL (AND)
- department NOT NULL (AND)
- mail NOT NULL (AND)
- division NOT NULL (AND)
- title NOT NULL (AND)
- the account is not disabled (AND)
- the account is not expired
I've tried to set a rule implemented like this
- connected system = my local domain
- object type = user
- metaverse = person
- link type = join
- precedence = 20
- scoping filter = none
- join rules = none
- transformations =
flow type: expression
target attribute: cloudFiltered
source: IIF(IsNullOrEmpty([department]) || IsNullOrEmpty([company]) || IsNullOrEmpty([division]) || IsNullOrEmpty([title]) || IsNullOrEmpty([mail]) || [userAccountControl] = 514 || [userAccountControl] = 66050 || [accountExpires] < Now, True, False)
apply once: unchecked
merge type: update
But it doesn't work :( :(
Any suggestions? Thanks in advance!!