Manager Certification triggered for 56 other reviewers

Hi,
We have a requirement to trigger the manager certification from the workflow as part of mover process. The json for the workflow is attached herein.

MoverCertificationWorkflow20220506.txt (2.5 KB)

The issues we are facing are:
The certification is triggered for 56 other reviewers instead of the manager
Also, an action is added to activate the certification in the workflow itself, but the workflow is launched in Preview Phase only.

Hi Mahak,

Two things that jump out at me right away. First, in your Create Certification Campaign action, you have a value for Identity ID that is $.identity.id. Under the new additive model, this shouldn’t even work, as that variable doesn’t exist. Using the variable selector to select the identity ID, I came up with $.trigger.identity.id. This could be the cause for the 56 reviewers, but I’m not sure how that would even work or what value was being populated with $.identity.id.

Second, in your Activate Certification Campaign, I see two issues. The Campaign ID is set as a Enter Value type. It should be Choose Variable. Enter Value is for static text, while Choose Variable allows you to select a variable from the data model. Also, you have the Campaign ID as $.id. Using the variable selector, I came up with $.createCertificationCampaign.id. This could have been the cause for the campaign not activating, as the ID you provided would have been invalid.

I attached my revisions to this post. Please try them out to see if it fixes your issues.
ManagerCertForum20220506.json (2.5 KB)

Thanks Colin, your solution worked for me.