Hi
I want to create a filter in the TaskList application for "My Tasks" which will include results where the currentUser is within the "assignee and candidateUsers field"
How is this possible? If I add both as Criteria I am getting no results... I am guessing its using AND and not OR.
Is it possible for me to get the Criteria to be an OR? I am setting this filter up programatically in the following way:
TaskQuery query = taskService.createTaskQuery().taskAssigneeExpression(CURRENT_USER_EXPRESSION).taskCandidateUserExpression(CURRENT_USER_EXPRESSION);
Thanks in advance
Melissa