synchronize the user status from HR to applications in FIM 2010

  • Create a custom attribute called estatus in MV under MV designer in Synchronization Service screen. The custom attribute should be –

String (Indexable)

 

image

 

image

  • Refresh the schema.
  • In the HR inbound rule –

Map Status => estatus

image

 

image

  • In the AD Outbound Sync rule
    • Go to Outbound attribute mapping tab

IIF(customexpression(Eq(estatus,”Active”)),512,514)èuseraccountcontrol

  • Ensure that the useraccountcontrol attribute mapping is not selected as “initial flow”.

Whenever the status in HR is changed i.e. no more active, it would disable the account on AD.

image

 

 

  • Similarly, update the outbound sync rules for other applications to reflect the status of employee in HR.

The value in estatus can be whatever the HR is sending across. It could be active or 001 or anything.