Hi there!
I have some operations that need to be performed when an AD account gets inserted in a specific group. I've created a business role, let's call it "AccesosPermitidos" for that, so when the Person gets the role, the ad account is inserted in an AD group and some files are copied to the AD user profile. To accomplish this, I've created a custom process attached to the ADSAccountinADSGroup table and the insert event.
With this scenario, I'm having trouble trying to figure out when the event INSERT is triggered for the table ADSAccountinADSGroup. Sometimes is triggered, sometimes is not.
Cases:
- Locate the AD account , add the AD group: Insert triggered
- Locate the AD group, add the AD account. Insert triggered
- Now I grant the role "AccesosPermitidos" to a Person. In this case, the Insert event is not triggered, only Update on the table ADSGroup. The result is the same, I mean, an insert is performed in the ADSAccountinADSGroup (checked via Object Browser) but the Insert event is not triggered though. Why is that?
Thanks!