-
Bug
-
Resolution: Done
-
Major
-
7.0.2.GA
-
None
-
RHPAM 7.0.2
The correlation key shown for the task (in the task list page in RHPAM UI) differs from the correlation key of the process instance (where the task is running).
It seems that the following query - jbpmHumanTasksWithUser [1] - is incorrect:
*****************************
{
"query-name" : "jbpmHumanTasksWithUser",
"query-source" : "${org.kie.server.persistence.ds}",
"query-expression" : "select t.activationTime, t.actualOwner, t.createdBy, t.createdOn, t.deploymentId, t.description, t.dueDate, t.name, t.parentId, t.priority, t.processId, t.processInstanceId, t.processSessionId, t.status, t.taskId, t.workItemId, t.lastModificationDate, pil.correlationKey, pil.processInstanceDescription , oe.id from AuditTaskImpl t left join PeopleAssignments_PotOwners po on t.taskId=po.task_id left join OrganizationalEntity oe on po.entity_id=oe.id left join ProcessInstanceLog pil on pil.id=t.processInstanceId",
"query-target" : "FILTERED_PO_TASK"
}
*****************************
as it is doing:
*****************************
left join processinstancelog pil on pil.id=t.processinstanceid
*****************************
and it should be:
*****************************
left join processinstancelog pil on pil.processinstanceid=t.processinstanceid
*****************************
- is related to
-
JBPM-7893 Incorrect correlation key shown in the Task list
- Resolved
-
JBPM-7920 Incorrect association between ProcessInstanceLog an task data on jbpmHumanTasks and the jbpmHumanTasksWithAdmin datasets
- Resolved
-
RHPAM-1666 Incorrect association between ProcessInstanceLog an task data on jbpmHumanTasks and the jbpmHumanTasksWithAdmin datasets
- Closed