How to Create Notification for Specific Locality during Onboarding of employee

Dear Experts,

We recently implemented Identity Manager and I would like to seek guidance on how to create simple notification base on the locality of employees or identities that is newly hired.

Appreciate it if anyone can point me in the right direction.

Thank you in Advance.

Parents
  • Welcome!

    To create a notification (email?) if a new entry in the person table is made you configure a process listening to the INSERT event. If you want to limit the process execution to only those primarily assigned to specific locations, you create a generation condition at the process similar to the following

    Value = ($FK(UID_Location).Ident_Locality$ = "My special location")

    HtH

Reply
  • Welcome!

    To create a notification (email?) if a new entry in the person table is made you configure a process listening to the INSERT event. If you want to limit the process execution to only those primarily assigned to specific locations, you create a generation condition at the process similar to the following

    Value = ($FK(UID_Location).Ident_Locality$ = "My special location")

    HtH

Children