Workflow - Certification Creation with Identity Attribute - Name?

I have been digging for any direction with other posts, but did not see anything.

We have a requirement that when our workflow finds that a user’s dept changed, that when we create the certification the user’s whose dept changed, is actually the title of the Certification.

So if I had a department change we would want it to say “HR Event Review Required for - Margot B”.

At the Action - Create Certification Campaign - Campaign Name I have set is HR Event for {$.getIdentity.name}, but when it generated it did not populate the name, it generated just like this HR Event for {$.getIdentity.name}.

Thanks!

Hi @MBowen,

You can populate the identity attribute value dynamically in the name of the certification campaign by updating the campaign name from “HR Event for {$.getIdentity.name}” to “HR Event for {{$.getIdentity.name}}” in the workflow.

Thank you.
Shanmukh

2 Likes

Tried that - the certification was generated and the email as well as the certification title was
“HR Event for {$.getIdentity.name}”

I will try again and post a pic

You only have one set of curly braces. In order to use inline variables, you need two curly braces on each end.

HR Event for {{$.getIdentity.name}}

2 Likes

THANK YOU! This worked, I had to go to the displayName though. :slight_smile: but it worked!!!
{{$.getIdentity.displayName}}

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.