replied on January 23, 2015
Hey Blake,
The results page currently only shows the user if they completed the task. It's likely already assigned to a user, as it normally fails if nobody is assigned the task. Try running this query, but replace <Instance Id> with the specific instance id of that process (should be the last number in the URL of that page):
select s.* from cf_bp_worker_instances as wi, cf_bp_worker_instnc_to_resume as wr, cf_bp_instance_approvers as a, cf_user_snapshot as s
where wi.bp_instance_id = <Instance Id> and wi.instance_id = wr.worker_instance_id and wr.resume_id = a.resume_id and a.user_snapshot_id = s.id
You should get the user who the task is currently assigned to.