One Identity 8.1 Template Triggers - API

Currently, when the Person record is updated, such as a name change, the system is not automatically updating referenced objects such as ADSAccount without manually going into object browser and clicking "execute template" when a property is changed via the API. Is there a extra step I need to do via the API to get the templates to fire?

Parents Reply
  • What about updates from a SyncProject? They also are not firing the templates. It must be related to the templates themselves. What needs to be changed/updated in my "LastName" template for example (set to overwites) that might prevent them firing?: 

    Dim Last As string
         Last = CCC_GetPreferredLastName($PreferredName$)
    If Last = string.Empty Then
         Last = $LastName$
    End If
    Value = Last

Children