How can I get all the tasks where loggedInUser is an Assignee

Certified Senior Developer

Have a task report with an "Assigned To" column which can have multiple users based on the task type.

Using queryProcessAnalytics() in one of the task reports to get the tasks where logged in user is a part of the assignees.

Using the following query filter :
a!queryFilter(field:"c1",operator:"includes",value:loggedInUser()),

But its not working as expected. How can I get all the tasks where loggedInUser is an Assignee.

Thanks in advance.

OriginalPostID-216672

OriginalPostID-216672

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer
    Thanks sikhivahans,

    Have created the report as mentioned in your comment. Its working fine. Now the problem I am facing is : We have a requirement to filter the tasks which have not been accepted by any user. Am using following query filter for it -

    a!queryFilter(field:"c6",operator:"is null")
    where "c6" denotes the Owner of the task i.e tp!owner

    But this not working.
Reply
  • 0
    Certified Senior Developer
    Thanks sikhivahans,

    Have created the report as mentioned in your comment. Its working fine. Now the problem I am facing is : We have a requirement to filter the tasks which have not been accepted by any user. Am using following query filter for it -

    a!queryFilter(field:"c6",operator:"is null")
    where "c6" denotes the Owner of the task i.e tp!owner

    But this not working.
Children
No Data