Hi @Prince Chauhan , in AAD connect, go to the Syncrnization Rules Edutor. In the editor, either create a new rule or edit an existing one that syncs the "Division" attribute. Select "Inbound Synchronization Rule".
Go to the "Transformations" tab and add a new transformation (or edit the existing one for "Division"). Choose "Expression" for the FlowType. In the source field, use this expression to remove "/Technician":
IIF(InStr([division], "/Technician") > 0, Left([division], InStr([division], "/Technician") - 1), [division])
This expression checks if "/Technician" is in the "Division" value. If it is, it keeps everything before "/Technician". If not, it just uses the original value.
Set the target to "employeeOrgData" in Entra ID.
Save your changes and make sure the rule is applied.
Run a full sync to see the changes in action. Please let me know if you have any questions and I can help you further.
If this answer helps you please mark "Accept Answer" so other users can reference it.
Thank you,
James