Is there any way to display Quick Task in Report?

is there any way to display Quick Task in Report(Task Report/Process Report).
If yes, how can we show that.

Thanks
in Advance...

OriginalPostID-116223

  Discussion posts and replies are publicly visible

Parents
  • Assuming you are using tempo reports.
    This can be achieved in tempo reports using a!processTaskLink() in links field of a!gridTextColumn().

    a!gridTextColumn(
    label:"Update",
    data:fn!repeat(length(local!employees.txt_firstName),"Update"),
    links:{
    a!applyComponents(function:rule!getQuickTaskLink,array:local!employees.dec_processId)

    }
    )
              
    Here, getQuickTaskLink is a rule which returns the link to Quick Task as below. Input to this is Process ID.
    "updateEmployeeDetails" is the description of the quick task for which you want to generate the link.

    =a!processTaskLink(
    label: "Update",
    task: getqtidfordescription(tointeger(ri!processId),"updateEmployeeDetails",false()))

    Let me know in case you need any help.
Reply
  • Assuming you are using tempo reports.
    This can be achieved in tempo reports using a!processTaskLink() in links field of a!gridTextColumn().

    a!gridTextColumn(
    label:"Update",
    data:fn!repeat(length(local!employees.txt_firstName),"Update"),
    links:{
    a!applyComponents(function:rule!getQuickTaskLink,array:local!employees.dec_processId)

    }
    )
              
    Here, getQuickTaskLink is a rule which returns the link to Quick Task as below. Input to this is Process ID.
    "updateEmployeeDetails" is the description of the quick task for which you want to generate the link.

    =a!processTaskLink(
    label: "Update",
    task: getqtidfordescription(tointeger(ri!processId),"updateEmployeeDetails",false()))

    Let me know in case you need any help.
Children