I have created a quicklink that is calling workflow. when I am requesting for delete account based on application it call LCM provisioning then it is not showing purpose, only showing request id
I want Like this: first show Manage Account: xxxxxxx
I have created a quicklink that is calling workflow. when I am requesting for delete account based on application it call LCM provisioning then it is not showing purpose, only showing request id
I want Like this: first show Manage Account: xxxxxxx
Hi @puresoftware ,
You should include a flow variable in your workflow.
<Variable initializer="Delete Account" input="true" name="flow"/>
within the workflow step, reference this flow variable by adding it as an argument. Use the ref: prefix to ensure the value is dynamically linked:
<Arg name="flow" value="ref:flow"/>
Once the variable is added as shown, the issue should be resolved.
This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.