Skip to main content
November 18, 2022
Question

Providing Process Task Link on Interface after workflow submit

  • November 18, 2022
  • 1 reply
  • 0 views

Hello Community,

I was wondering how do you capture the process property ID when the process is submitted to then use it in a link within that interface.

a!processTaskLink(
  label: "Approval Task",
  task: 1  /* pp!id */
)

Thank you.

    1 reply

    daniell
    Participating Frequently
    November 18, 2022

    pp!id is the Process ID, but a!processTaskLink links to a Task, meaning that you need to provide a Task ID. It's difficult to say how to retrieve that Task ID without understanding your use case a bit more. Could you give a bit more context on the structure of your process and your tasks? The approach will likely involve using Process Reports and a!queryProcessAnalytics, so I would recommend looking into those.