Hi , I am trying to generate unique AccountID with the below pattern
($ADseed)$(uniqueCounter)
in which ADseed is an identity attribute with transform that combines (firstInitial & lastname).
however its not populating the value also has no errors detected post test.
Can someone pls help ?
hello @nidhipriya,
Try this format - $(ADseed)$(uniqueCounter)
sorry , for typo..
i used $(ADseed)$(uniqueCounter) format itself
I think the pattern is set for this OOB generator–$fi$ln$(Uniquecounter)–unless you create your own rule
ADseed generates the pattern that we want , when we check separately,
but if i combine with uniqueCounter its not giving result
Hi @nidhipriya,
The Generator that you are trying to use expects a specific template as described in this document.
So, anything other than ${firstname}.${lastname}${uniqueCounter}
will not be supported.
You can consider using the username generator transform if you are specifically targeting to creating the Account ID value.
Else, you will need to depend on a custom cloud rule type - AttributeGenerator.