Odd template behavior in 9.3

I have a template for UNSAccountB and when I create an account manually the template works fine, but when I do it using a business role it doesn't work.

This is the relevant portion of the template (they are identical between FullManaged and Unmanaged):

Else
	Dim CentralAccount As String = $FK(UID_Person).CentralAccount$

	If $FK(UID_Person).CCC_ImportSource$ = "ACME" Then
		CentralAccount = CentralAccount.Substring(0, CentralAccount.Length - 4)
	End If

	Value = CentralAccount
End If

Parents
  • I take it the BR assigns the account definition, right?

    I've made some tests and it works fine in my case.

    • Modified the template for the CN attr on a custom UnsAccountB
    • Created the UNSAccountB and linked a user. The template works.
    • or, located the user in Manager, assigned the corresponding account definition and the template applied, too

Reply
  • I take it the BR assigns the account definition, right?

    I've made some tests and it works fine in my case.

    • Modified the template for the CN attr on a custom UnsAccountB
    • Created the UNSAccountB and linked a user. The template works.
    • or, located the user in Manager, assigned the corresponding account definition and the template applied, too

Children