05-25-2018
08:07 AM
- last edited on
07-24-2020
02:15 AM
by
TechCommunityAP
05-25-2018
08:07 AM
- last edited on
07-24-2020
02:15 AM
by
TechCommunityAP
Hallo,
i use active sync service to connect my on-premise AD with the azure AD. It works fine. Then I create an input sync role to set the azure ad field “usage location” depended on the country field. It works fine when the user is created in the azure AD and for the first time synced to azure AD. But it will not update the “usage location” (when the country field are changed).
What I can do to update the field “usage location” when the country field in the on-premise AD will change?
Thanks for your help
Stefan
05-29-2018 12:28 PM
Hi Stefan can you describe the exact steps you have taken so far to push this attribute to Azure AD? Be as specific as possible
05-30-2018 03:06 AM
Hi,
here is description of the rule
New-ADSyncRule `
-Name 'usage location' `
-Identifier '' `
-Description '' `
-Direction 'Inbound' `
-Precedence 100 `
-PrecedenceAfter '00000000-0000-0000-0000-000000000000' `
-PrecedenceBefore '00000000-0000-0000-0000-000000000000' `
-SourceObjectType 'user' `
-TargetObjectType 'person' `
-Connector '' `
-LinkType 'Join' `
-SoftDeleteExpiryInterval 0 `
-ImmutableTag '' `
-OutVariable syncRule
Add-ADSyncAttributeFlowMapping `
-SynchronizationRule $syncRule[0] `
-Source @('c') `
-Destination 'usageLocation' `
-FlowType 'Expression' `
-ValueMergeType 'Update' `
-Expression 'IIF(IsNullOrEmpty([c],"DE",[c])' `
-OutVariable syncRule
05-30-2018 03:30 AM
All looks good to me, except TO Azure AD should be "outbound" not inbound right?
I must admit I have not created a rule with PS yet but I don't see how you have a source AND an expression, in the GUI the source IS the expression
i.e. displayname transformation source is below but you specify a source as 'c' as well as an expression, wondering how this looks in the source field for your rule?
IIF(IsNullOrEmpty([displayName]),[cn],[displayName])