Rename Quicklink Task Result

Which IIQ version are you inquiring about?

Version 8.3

Share all details about your problem, including any error messages you may have received.

Hello,

We recently implemented a Quicklink to initiate a custom workflow, and it’s working well.

However, the task results now display with the following label:

Would you happen to know if it’s possible to customize the name shown in the task result? Ideally, we’d like it to reflect something more descriptive or tailored to the workflow being launched.

Thanks in advance for your insight!

Hello @bruno-co If possible, could you share the QuickLink object and workflow for a better understanding?

@santhirajumunganda - To replicate Bruno Carvalho issue, I have created custom workflow and quicklink. for me also it is generated same quick link launch object.

Hello @bruno-co

You can set it up in a step using below -

wfcontext.getWorkflowCase().getTaskResult().setName("XYZ");

I agree with @jainanimesh . you can get workflowCase from wfcontext in the start step and then setName whatever you like. something like https://community.sailpoint.com/t5/IdentityIQ-Forum/wfcontext-getWorkflowCase-getTaskResult-setName-quot-xxxxxx-quot/m-p/202938

@dheerajk27 : I am not able to open the link. could you please double check the link.

you would be required to login to complass with your credential to login. Meanwhile i am pasting the code :

wfcontext.getWorkflowCase().setName("Some request for : " +requestedFor);
wfcontext.getWorkflowCase().getTaskResult().setName("Some request for : " +requestedFor);

this should work, you can implement this in the start step of the workflow you are calling from quicklink.